]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/widgets/TabWidget.h
Additional fix for notifications on Xfce. https://redmine.stoutner.com/issues/1017
[PrivacyBrowserPC.git] / src / widgets / TabWidget.h
1 /*
2  * Copyright 2022-2023 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 TABWIDGET_H
21 #define TABWIDGET_H
22
23 // Application headers.
24 #include "PrivacyWebEngineView.h"
25 #include "helpers/UserAgentHelper.h"
26
27 // KDE Framework headers.
28 #include <KLineEdit>
29
30 // Qt toolkit headers.
31 #include <QMovie>
32 #include <QPushButton>
33 #include <QTabWidget>
34 #include <QWebEngineCookieStore>
35 #include <QWebEngineFullScreenRequest>
36 #include <QWebEngineHistory>
37 #include <QWebEngineProfile>
38 #include <QWebEngineSettings>
39 #include <QWebEngineView>
40
41 class TabWidget : public QWidget
42 {
43     // Include the Q_OBJECT macro.
44     Q_OBJECT
45
46 public:
47     // The primary contructor.
48     explicit TabWidget(QWidget *windowPointer);
49
50     // The destructor.
51     ~TabWidget();
52
53     // The public functions.
54     void applyOnTheFlyZoomFactor(const double &zoomFactor) const;
55     void applySpellCheckLanguages() const;
56     PrivacyWebEngineView* loadBlankInitialWebsite();
57     void loadInitialWebsite();
58     void findPrevious(const QString &text) const;
59     std::list<QNetworkCookie>* getCookieList() const;
60     QIcon getCurrentTabFavoritIcon() const;
61     QString getCurrentTabTitle() const;
62     QString getCurrentTabUrl() const;
63     QString& getDomainSettingsName() const;
64     void setTabBarVisible(const bool visible) const;
65     void toggleDomStorage() const;
66     void toggleFindCaseSensitive(const QString &text);
67     void toggleJavaScript() const;
68     void toggleLocalStorage();
69
70     // The public static variables.
71     static QString webEngineDefaultUserAgent;
72
73 signals:
74     // The signals.
75     void addCookie(const QNetworkCookie &cookie) const;
76     void removeCookie(const QNetworkCookie &cookie) const;
77     void clearUrlLineEditFocus() const;
78     void fullScreenRequested(const bool toggleOn) const;
79     void hideProgressBar() const;
80     void linkHovered(const QString &linkUrl) const;
81     void showProgressBar(const int &progress) const;
82     void updateBackAction(const bool &isEnabled) const;
83     void updateCookiesAction(const int numberOfCookies) const;
84     void updateDefaultZoomFactor(const double newDefaultZoomFactor) const;
85     void updateDomStorageAction(const bool &isEnabled) const;
86     void updateDomainSettingsIndicator(const bool status) const;
87     void updateFindText(const QString &text, const bool findCaseSensitive) const;
88     void updateFindTextResults(const QWebEngineFindTextResult &findTextResult) const;
89     void updateForwardAction(const bool &isEnabled) const;
90     void updateJavaScriptAction(const bool &isEnabled) const;
91     void updateLocalStorageAction(const bool &isEnabled) const;
92     void updateSearchEngineActions(const QString &searchEngine, const bool &updateCustomSearchEngineStatus) const;
93     void updateUrlLineEdit(const QUrl &newUrl) const;
94     void updateUserAgentActions(const QString &userAgent, const bool &updateCustomUserAgentStatus) const;
95     void updateWindowTitle(const QString &title) const;
96     void updateZoomActions(const double &zoomFactor) const;
97
98 public Q_SLOTS:
99     // The public slots.
100     void addCookieToStore(QNetworkCookie cookie, QWebEngineCookieStore *webEngineCookieStorePointer = nullptr) const;
101     PrivacyWebEngineView* addTab(const bool removeUrlLineEditFocus = false, const bool backgroundTab = false, const QString urlString = nullptr);
102     void applyApplicationSettings();
103     void applyDomainSettingsAndReload();
104     void applyOnTheFlySearchEngine(QAction *searchEngineActionPointer);
105     void applyOnTheFlyUserAgent(QAction *userAgentActionPointer) const;
106     void back() const;
107     void deleteAllCookies() const;
108     void deleteCookieFromStore(const QNetworkCookie &cookie) const;
109     void findText(const QString &text) const;
110     void forward() const;
111     void home() const;
112     void loadUrlFromLineEdit(QString url) const;
113     void mouseBack() const;
114     void mouseForward() const;
115     void print() const;
116     void printPreview() const;
117     void refresh() const;
118     void reloadAndBypassCache() const;
119
120 private Q_SLOTS:
121     // The private slots.
122     void addFirstTab();
123     void deleteTab(const int tabIndex);
124     void findTextFinished(const QWebEngineFindTextResult &findTextResult);
125     void fullScreenRequested(QWebEngineFullScreenRequest fullScreenRequest) const;
126     void pageLinkHovered(const QString &linkUrl) const;
127     void printWebpage(QPrinter *printerPointer) const;
128     void showSaveDialog(QWebEngineDownloadItem *downloadItemPointer);
129     void stopLoadingFavoriteIconMovie() const;
130     void updateUiFromWebEngineView(const PrivacyWebEngineView *privacyWebEngineViewPointer) const;
131     void updateUiWithTabSettings();
132     void useNativeKdeDownloader(QUrl &downloadUrl, QString &suggestedFileName);
133
134 private:
135     // The private variables.
136     PrivacyWebEngineView *currentPrivacyWebEngineViewPointer;
137     QWebEngineCookieStore *currentWebEngineCookieStorePointer;
138     QWebEngineHistory *currentWebEngineHistoryPointer;
139     QWebEnginePage *currentWebEnginePagePointer;
140     QWebEngineProfile *currentWebEngineProfilePointer;
141     QWebEngineSettings *currentWebEngineSettingsPointer;
142     QIcon defaultFavoriteIcon = QIcon::fromTheme(QLatin1String("globe"), QIcon::fromTheme(QLatin1String("applications-internet")));
143     bool isRunningKde = false;
144     QMovie *loadingFavoriteIconMoviePointer;
145     QString searchEngineUrl;
146     QTabWidget *qTabWidgetPointer;
147     UserAgentHelper *userAgentHelperPointer;
148     bool wipingCurrentFindTextSelection = false;
149 };
150 #endif