mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Printing never worked, none of this was ever included in test builds. Also, now that there are official releases of QtWebKit again, this just doesn't seem worth carrying along anymore. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			979 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			979 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef USERMANUAL_H
 | |
| #define USERMANUAL_H
 | |
| 
 | |
| #include <QWebView>
 | |
| #include <QDialog>
 | |
| #include "ui_searchbar.h"
 | |
| 
 | |
| class SearchBar : public QWidget{
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	SearchBar(QWidget *parent = 0);
 | |
| signals:
 | |
| 	void searchTextChanged(const QString& s);
 | |
| 	void searchNext();
 | |
| 	void searchPrev();
 | |
| protected:
 | |
| 	void setVisible(bool visible);
 | |
| private slots:
 | |
| 	void enableButtons(const QString& s);
 | |
| private:
 | |
| 	Ui::SearchBar ui;
 | |
| };
 | |
| 
 | |
| class UserManual : public QDialog {
 | |
| 	Q_OBJECT
 | |
| 
 | |
| public:
 | |
| 	explicit UserManual(QWidget *parent = 0);
 | |
| 
 | |
| #ifdef Q_OS_MAC
 | |
| protected:
 | |
| 	void showEvent(QShowEvent *e);
 | |
| 	void hideEvent(QHideEvent *e);
 | |
| 	QAction *closeAction;
 | |
| 	QAction *filterAction;
 | |
| #endif
 | |
| 
 | |
| private
 | |
| slots:
 | |
| 	void searchTextChanged(const QString& s);
 | |
| 	void searchNext();
 | |
| 	void searchPrev();
 | |
| 	void linkClickedSlot(const QUrl& url);
 | |
| private:
 | |
| 	SearchBar *searchBar;
 | |
| 	QString mLastText;
 | |
| 	QWebView *userManual;
 | |
| 	void search(QString, QWebPage::FindFlags);
 | |
| };
 | |
| #endif // USERMANUAL_H
 |