]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/MainView.h
Add user agent controls.
[PrivacyBrowserPC.git] / src / MainView.h
1 /*
2  * Copyright © 2022 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
5  *
6  * Privacy Browser PC is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Browser PC is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser PC.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef MAINVIEW_H
21 #define MAINVIEW_H
22
23 // Application headers.
24 #include "UserAgentHelper.h"
25
26 // Qt framework headers.
27 #include <QPushButton>
28 #include <QWebEngineHistory>
29 #include <QWebEngineSettings>
30 #include <QWebEngineView>
31
32 // KDE Framework headers.
33 #include <KLineEdit>
34
35 class MainView : public QWidget
36 {
37     // Include the Q_OBJECT macro.
38     Q_OBJECT
39
40 public:
41     // The primary contructor.
42     explicit MainView(QWidget *parent);
43
44 signals:
45     // Define the signals.
46     void linkHovered(const QString &linkUrl);
47
48 public Q_SLOTS:
49     // Define the public slots.
50     void applyApplicationSettings();
51     void applyDomainSettingsAndReload();
52
53 private Q_SLOTS:
54     // Define the private slots.
55     void goHome();
56     void loadUrl(const QString &urlFromUser);
57     void pageLinkHovered(const QString &linkUrl);
58     void toggleJavaScript();
59     void updateInterface();
60
61 private:
62     // Define the private variables.
63     QPushButton *backButtonPointer;
64     QPushButton *forwardButtonPointer;
65     QPushButton *javaScriptButtonPointer;
66     KLineEdit *urlLineEditPointer;
67     QWebEngineHistory *webEngineHistoryPointer;
68     QWebEngineProfile *webEngineProfilePointer;
69     QWebEngineSettings *webEngineSettingsPointer;
70     QWebEngineView *webEngineViewPointer;
71     UserAgentHelper *userAgentHelperPointer;
72
73     // Define the private functions.
74     void applyDomainSettings(bool reloadWebsite);
75 };
76 #endif