]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/widgets/TabWidget.h
Add option to auto update the download directory. https://redmine.stoutner.com/issue...
[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 toggleDeveloperTools(const bool enabled) const;
66     void toggleDomStorage() const;
67     void toggleFindCaseSensitive(const QString &text);
68     void toggleJavaScript() const;
69     void toggleLocalStorage();
70
71     // The public static variables.
72     static QString webEngineDefaultUserAgent;
73
74 signals:
75     // The signals.
76     void addCookie(const QNetworkCookie &cookie) const;
77     void removeCookie(const QNetworkCookie &cookie) const;
78     void clearUrlLineEditFocus() const;
79     void fullScreenRequested(const bool toggleOn) const;
80     void hideProgressBar() const;
81     void linkHovered(const QString &linkUrl) const;
82     void showProgressBar(const int &progress) const;
83     void updateBackAction(const bool &isEnabled) const;
84     void updateCookiesAction(const int numberOfCookies) const;
85     void updateDefaultZoomFactor(const double newDefaultZoomFactor) const;
86     void updateDeveloperToolsAction(const bool &isEnabled) const;
87     void updateDomStorageAction(const bool &isEnabled) const;
88     void updateDomainSettingsIndicator(const bool status) const;
89     void updateFindText(const QString &text, const bool findCaseSensitive) const;
90     void updateFindTextResults(const QWebEngineFindTextResult &findTextResult) const;
91     void updateForwardAction(const bool &isEnabled) const;
92     void updateJavaScriptAction(const bool &isEnabled) const;
93     void updateLocalStorageAction(const bool &isEnabled) const;
94     void updateSearchEngineActions(const QString &searchEngine, const bool &updateCustomSearchEngineStatus) const;
95     void updateUrlLineEdit(const QUrl &newUrl) const;
96     void updateUserAgentActions(const QString &userAgent, const bool &updateCustomUserAgentStatus) const;
97     void updateWindowTitle(const QString &title) const;
98     void updateZoomActions(const double &zoomFactor) const;
99
100 public Q_SLOTS:
101     // The public slots.
102     void addCookieToStore(QNetworkCookie cookie, QWebEngineCookieStore *webEngineCookieStorePointer = nullptr) const;
103     PrivacyWebEngineView* addTab(const bool removeUrlLineEditFocus = false, const bool adjacent = false, const bool backgroundTab = false, const QString urlString = nullptr);
104     void applyApplicationSettings();
105     void applyDomainSettingsAndReload();
106     void applyOnTheFlySearchEngine(QAction *searchEngineActionPointer);
107     void applyOnTheFlyUserAgent(QAction *userAgentActionPointer) const;
108     void back() const;
109     void deleteAllCookies() const;
110     void deleteCookieFromStore(const QNetworkCookie &cookie) const;
111     void findText(const QString &text) const;
112     void forward() const;
113     void home() const;
114     void loadUrlFromLineEdit(QString url) const;
115     void mouseBack() const;
116     void mouseForward() const;
117     void print() const;
118     void printPreview() const;
119     void refresh() const;
120     void reloadAndBypassCache() const;
121     void saveArchive();
122     void stop() const;
123
124 private Q_SLOTS:
125     // The private slots.
126     void addFirstTab();
127     void deleteTab(const int tabIndex);
128     void findTextFinished(const QWebEngineFindTextResult &findTextResult);
129     void fullScreenRequested(QWebEngineFullScreenRequest fullScreenRequest) const;
130     void pageLinkHovered(const QString &linkUrl) const;
131     void printWebpage(QPrinter *printerPointer) const;
132     void showSaveDialog(QWebEngineDownloadItem *downloadItemPointer);
133     void stopLoadingFavoriteIconMovie() const;
134     void updateUiFromWebEngineView(const PrivacyWebEngineView *privacyWebEngineViewPointer) const;
135     void updateUiWithTabSettings();
136     void useNativeKdeDownloader(QUrl &downloadUrl, QString &suggestedFileName);
137
138 private:
139     // The private functions.
140     void updateDownloadDirectory(QString newDownloadDirectory) const;
141
142     // The private variables.
143     PrivacyWebEngineView *currentPrivacyWebEngineViewPointer;
144     QWebEngineCookieStore *currentWebEngineCookieStorePointer;
145     QWebEngineHistory *currentWebEngineHistoryPointer;
146     QWebEnginePage *currentWebEnginePagePointer;
147     QWebEngineProfile *currentWebEngineProfilePointer;
148     QWebEngineSettings *currentWebEngineSettingsPointer;
149     QIcon defaultFavoriteIcon = QIcon::fromTheme(QLatin1String("globe"), QIcon::fromTheme(QLatin1String("applications-internet")));
150     bool isRunningKde = false;
151     QMovie *loadingFavoriteIconMoviePointer;
152     QTabWidget *qTabWidgetPointer;
153     bool savingArchive;
154     QString searchEngineUrl;
155     UserAgentHelper *userAgentHelperPointer;
156     bool wipingCurrentFindTextSelection = false;
157 };
158 #endif