aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/usermanual.h
blob: c9ae6632301adec1e54d77b79cd1505d098a8d35 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// SPDX-License-Identifier: GPL-2.0
#ifndef USERMANUAL_H
#define USERMANUAL_H

#ifdef USE_WEBENGINE
#include <QWebEngineView>
#include <QWebEnginePage>
#else
#include <QWebView>
#endif
#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;
};

#ifdef USE_WEBENGINE
class MyQWebEnginePage : public QWebEnginePage
{
	Q_OBJECT

public:
	MyQWebEnginePage(QObject* parent = 0);
	bool acceptNavigationRequest(const QUrl & url, QWebEnginePage::NavigationType type, bool);
};

class MyQWebEngineView : public QWebEngineView
{
	Q_OBJECT

public:
	MyQWebEngineView(QWidget* parent = 0);
	MyQWebEnginePage* page() const;
};
#endif


class UserManual : public QWidget {
	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();
#ifndef USE_WEBENGINE
	void linkClickedSlot(const QUrl& url);
#endif
private:
	SearchBar *searchBar;
	QString mLastText;
#ifdef USE_WEBENGINE
	QWebEngineView *userManual;
	void search(QString, QWebEnginePage::FindFlags);
#else
	QWebView *userManual;
	void search(QString, QWebPage::FindFlags);
#endif
};
#endif // USERMANUAL_H