aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/usermanual.h
blob: c36226027553a830d098049e894fb77817faeba2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef USERMANUAL_H
#define USERMANUAL_H

#include <QWebView>

#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 QWidget {
	Q_OBJECT

public:
	explicit UserManual(QWidget *parent = 0);
private
slots:
	void searchTextChanged(const QString& s);
	void searchNext();
	void searchPrev();
	void linkClickedSlot(const QUrl& url);
private:
	QWebView *userManual;
	SearchBar *searchBar;
	QString mLastText;
	void search(QString, QWebPage::FindFlags);
};
#endif // USERMANUAL_H