]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/windows/BrowserWindow.cpp
e7bb620f52860a4a787bb57eb57c5f13449b27c2
[PrivacyBrowserPC.git] / src / windows / BrowserWindow.cpp
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 // Application headers.
21 #include "BrowserWindow.h"
22 #include "Settings.h"
23 #include "ui_SettingsPrivacy.h"
24 #include "ui_SettingsGeneral.h"
25 #include "helpers/SearchEngineHelper.h"
26 #include "helpers/UserAgentHelper.h"
27
28 // KDE Frameworks headers.
29 #include <KActionCollection>
30
31 // Qt toolkit headers.
32 #include <QInputDialog>
33 #include <QStatusBar>
34
35 BrowserWindow::BrowserWindow() : KXmlGuiWindow()
36 {
37     // Instantiate the main view pointer.
38     browserViewPointer = new BrowserView(this);
39
40     // Set the main view as the central widget.
41     setCentralWidget(browserViewPointer);
42
43     // Get a handle for the action collection.
44     KActionCollection *actionCollectionPointer = this->actionCollection();
45
46     // Add the standard actions.
47     KStandardAction::openNew(this, SLOT(fileNew()), actionCollectionPointer);
48     KStandardAction::quit(qApp, SLOT(closeAllWindows()), actionCollectionPointer);
49     KStandardAction::preferences(this, SLOT(settingsConfigure()), actionCollectionPointer);
50
51     // Add the custom actions.
52     userAgentPrivacyBrowserActionPointer = actionCollectionPointer->addAction(QStringLiteral("user_agent_privacy_browser"));
53     userAgentFirefoxLinuxActionPointer = actionCollectionPointer->addAction(QStringLiteral("user_agent_firefox_linux"));
54     userAgentChromiumLinuxActionPointer = actionCollectionPointer->addAction(QStringLiteral("user_agent_chromium_linux"));
55     userAgentFirefoxWindowsActionPointer = actionCollectionPointer->addAction(QStringLiteral("user_agent_firefox_windows"));
56     userAgentChromeWindowsActionPointer = actionCollectionPointer->addAction(QStringLiteral("user_agent_chrome_windows"));
57     userAgentEdgeWindowsActionPointer = actionCollectionPointer->addAction(QStringLiteral("user_agent_edge_windows"));
58     userAgentSafariMacosActionPointer = actionCollectionPointer->addAction(QStringLiteral("user_agent_safari_macos"));
59     userAgentCustomActionPointer = actionCollectionPointer->addAction(QStringLiteral("user_agent_custom"));
60     zoomFactorActionPointer = actionCollectionPointer->addAction(QStringLiteral("zoom_factor"));
61     searchEngineMojeekActionPointer = actionCollectionPointer->addAction(QStringLiteral("search_engine_mojeek"));
62     searchEngineMonoclesActionPointer = actionCollectionPointer->addAction(QStringLiteral("search_engine_monocles"));
63     searchEngineMetagerActionPointer = actionCollectionPointer->addAction(QStringLiteral("search_engine_metager"));
64     searchEngineGoogleActionPointer = actionCollectionPointer->addAction(QStringLiteral("search_engine_google"));
65     searchEngineBingActionPointer = actionCollectionPointer->addAction(QStringLiteral("search_engine_bing"));
66     searchEngineYahooActionPointer = actionCollectionPointer->addAction(QStringLiteral("search_engine_yahoo"));
67     searchEngineCustomActionPointer = actionCollectionPointer->addAction(QStringLiteral("search_engine_custom"));
68
69     // Create the action groups
70     QActionGroup *userAgentActionGroupPointer = new QActionGroup(this);
71     QActionGroup *searchEngineActionGroupPointer = new QActionGroup(this);
72
73     // Add the actions to the groups.
74     userAgentActionGroupPointer->addAction(userAgentPrivacyBrowserActionPointer);
75     userAgentActionGroupPointer->addAction(userAgentFirefoxLinuxActionPointer);
76     userAgentActionGroupPointer->addAction(userAgentChromiumLinuxActionPointer);
77     userAgentActionGroupPointer->addAction(userAgentFirefoxWindowsActionPointer);
78     userAgentActionGroupPointer->addAction(userAgentChromeWindowsActionPointer);
79     userAgentActionGroupPointer->addAction(userAgentEdgeWindowsActionPointer);
80     userAgentActionGroupPointer->addAction(userAgentSafariMacosActionPointer);
81     userAgentActionGroupPointer->addAction(userAgentCustomActionPointer);
82     searchEngineActionGroupPointer->addAction(searchEngineMojeekActionPointer);
83     searchEngineActionGroupPointer->addAction(searchEngineMonoclesActionPointer);
84     searchEngineActionGroupPointer->addAction(searchEngineMetagerActionPointer);
85     searchEngineActionGroupPointer->addAction(searchEngineGoogleActionPointer);
86     searchEngineActionGroupPointer->addAction(searchEngineBingActionPointer);
87     searchEngineActionGroupPointer->addAction(searchEngineYahooActionPointer);
88     searchEngineActionGroupPointer->addAction(searchEngineCustomActionPointer);
89
90     // Set some actions to be checkable.
91     userAgentPrivacyBrowserActionPointer->setCheckable(true);
92     userAgentFirefoxLinuxActionPointer->setCheckable(true);
93     userAgentChromiumLinuxActionPointer->setCheckable(true);
94     userAgentFirefoxWindowsActionPointer->setCheckable(true);
95     userAgentChromeWindowsActionPointer->setCheckable(true);
96     userAgentEdgeWindowsActionPointer->setCheckable(true);
97     userAgentSafariMacosActionPointer->setCheckable(true);
98     userAgentCustomActionPointer->setCheckable(true);
99     searchEngineMojeekActionPointer->setCheckable(true);
100     searchEngineMonoclesActionPointer->setCheckable(true);
101     searchEngineMetagerActionPointer->setCheckable(true);
102     searchEngineGoogleActionPointer->setCheckable(true);
103     searchEngineBingActionPointer->setCheckable(true);
104     searchEngineYahooActionPointer->setCheckable(true);
105     searchEngineCustomActionPointer->setCheckable(true);
106
107     // Set the non-mutable action text.
108     userAgentPrivacyBrowserActionPointer->setText(i18nc("@action", "Privacy Browser"));
109     userAgentFirefoxLinuxActionPointer->setText(i18nc("@action", "Firefox Linux"));
110     userAgentChromiumLinuxActionPointer->setText(i18nc("@action", "Chromium Linux"));
111     userAgentFirefoxWindowsActionPointer->setText(i18nc("@action", "Firefox Windows"));
112     userAgentChromeWindowsActionPointer->setText(i18nc("@action", "Chrome Windows"));
113     userAgentEdgeWindowsActionPointer->setText(i18nc("@action", "Edge Windows"));
114     userAgentSafariMacosActionPointer->setText(i18nc("@action", "Safari macOS"));
115     searchEngineMojeekActionPointer->setText(i18nc("@action", "Mojeek"));
116     searchEngineMonoclesActionPointer->setText(i18nc("@action", "Monocles"));
117     searchEngineMetagerActionPointer->setText(i18nc("@action", "MetaGer"));
118     searchEngineGoogleActionPointer->setText(i18nc("@action", "Google"));
119     searchEngineBingActionPointer->setText(i18nc("@action", "Bing"));
120     searchEngineYahooActionPointer->setText(i18nc("@action", "Yahoo"));
121
122     // Update the on-the-fly menus.
123     connect(browserViewPointer, SIGNAL(userAgentUpdated(QString)), this, SLOT(updateOnTheFlyUserAgent(QString)));
124     connect(browserViewPointer, SIGNAL(zoomFactorUpdated(double)), this, SLOT(updateOnTheFlyZoomFactor(double)));
125     connect(browserViewPointer, SIGNAL(searchEngineUpdated(QString)), this, SLOT(updateOnTheFlySearchEngine(QString)));
126
127     // Apply the on-the-fly settings when selected.
128     connect(userAgentActionGroupPointer, SIGNAL(triggered(QAction*)), browserViewPointer, SLOT(applyOnTheFlyUserAgent(QAction*)));
129     connect(searchEngineActionGroupPointer, SIGNAL(triggered(QAction*)), browserViewPointer, SLOT(applyOnTheFlySearchEngine(QAction*)));
130
131     // Display dialogs.
132     connect(zoomFactorActionPointer, SIGNAL(triggered()), this, SLOT(getZoomFactorFromUser()));
133
134     // Update the status bar with the URL when a link is hovered.
135     connect(browserViewPointer, SIGNAL(linkHovered(QString)), this, SLOT(updateStatusBar(QString)));
136
137     // Setup the GUI based on the browser_ui.rc file.
138     setupGUI(StandardWindowOption::Default, ("browser_ui.rc"));
139
140     // Load the initial webstie.
141     browserViewPointer->loadInitialWebsite();
142 }
143
144 void BrowserWindow::fileNew() const
145 {
146     // Display a new instance of Privacy Browser.
147     (new BrowserWindow)->show();
148 }
149
150 void BrowserWindow::getZoomFactorFromUser()
151 {
152     // Create an OK flag.
153     bool okClicked;
154
155     // Display a dialog to get the new zoom factor from the user.  Format the double to display two decimals and have a 0.25 step.
156     double newZoomFactor = QInputDialog::getDouble(this, i18nc("The tile of the on-the-fly zoom factor dialog", "On-The-Fly Zoom Factor"),
157                                                    i18nc("The instruction text of the on-the-fly zoom factor dialog", "Enter a zoom factor between 0.25 and 5.00"),
158                                                    currentZoomFactor, .025, 5.00, 2, &okClicked, Qt::WindowFlags(), 0.25);
159
160     if (okClicked)
161     {
162         // Update the current zoom factor.
163         currentZoomFactor = newZoomFactor;
164
165         // Set the new zoom factor.
166         browserViewPointer->applyOnTheFlyZoomFactor(newZoomFactor);
167
168         // Update the on-the-fly action text.
169         updateOnTheFlyZoomFactor(newZoomFactor);
170     }
171 }
172
173 void BrowserWindow::settingsConfigure()
174 {
175     // Check to make sure the dialog box isn't already displayed.
176     if (KConfigDialog::exists(QStringLiteral("settings")))
177     {
178         // Show the existing config dialog if it is hidden.
179         configDialogPointer->show();
180
181         // Raise the existing config dialog if it is below other windows.
182         configDialogPointer->raise();
183
184         // Restore the existing config dialog if it has been minimized.
185         if (configDialogPointer->isMinimized()) {
186             configDialogPointer->showNormal();
187         }
188
189         // Activate the existing config dialog, which brings its virtual desktop into focus.
190         configDialogPointer->activateWindow();
191     }
192     else
193     {
194         // Create the settings widgets.
195         QWidget *privacySettingsWidgetPointer = new QWidget;
196         QWidget *generalSettingsWidgetPointer = new QWidget;
197
198         // Instantiate the settings UI.
199         Ui::PrivacySettings privacySettingsUi;
200         Ui::GeneralSettings generalSettingsUi;
201
202         // Setup the UI to display the settings widgets.
203         privacySettingsUi.setupUi(privacySettingsWidgetPointer);
204         generalSettingsUi.setupUi(generalSettingsWidgetPointer);
205
206         // Get handles for the widgets.
207         QComboBox *userAgentComboBoxPointer = privacySettingsUi.kcfg_userAgent;
208         userAgentLabelPointer = privacySettingsUi.userAgentLabel;
209         QComboBox *searchEngineComboBoxPointer = generalSettingsUi.kcfg_searchEngine;
210         searchEngineLabelPointer = generalSettingsUi.searchEngineLabel;
211
212         // Populate the combo box labels.
213         updateUserAgentLabel(userAgentComboBoxPointer->currentText());
214         updateSearchEngineLabel(searchEngineComboBoxPointer->currentText());
215
216         // Update the labels when the combo boxes change.
217         connect(userAgentComboBoxPointer, SIGNAL(currentTextChanged(const QString)), this, SLOT(updateUserAgentLabel(const QString)));
218         connect(searchEngineComboBoxPointer, SIGNAL(currentTextChanged(const QString)), this, SLOT(updateSearchEngineLabel(const QString)));
219
220         // Instantiate a settings config dialog from the settings.kcfg file.
221         configDialogPointer = new KConfigDialog(this, QStringLiteral("settings"), Settings::self());
222
223         // Add the settings widgets as config dialog pages.
224         configDialogPointer->addPage(privacySettingsWidgetPointer, i18nc("@title:tab", "Privacy"), QStringLiteral("privacy-browser"));
225         configDialogPointer->addPage(generalSettingsWidgetPointer, i18nc("@title:tab", "General"), QStringLiteral("breeze-settings"));
226
227         // Delete the config dialog when it is closed.
228         configDialogPointer->setAttribute(Qt::WA_DeleteOnClose);
229
230         // Make it so.
231         configDialogPointer->show();
232
233         // Expand the config dialog.
234         configDialogPointer->resize(1000, 500);
235
236         // Apply the settings when they are updated.
237         connect(configDialogPointer, SIGNAL(settingsChanged(QString)), browserViewPointer, SLOT(applyApplicationSettings()));
238         connect(configDialogPointer, SIGNAL(settingsChanged(QString)), browserViewPointer, SLOT(applyDomainSettingsAndReload()));
239     }
240 }
241
242 void BrowserWindow::updateOnTheFlySearchEngine(const QString &searchEngine) const
243 {
244     // Initialize the custom search engine flag.
245     bool customSearchEngine = false;
246
247     if (searchEngine == "Mojeek")  // Mojeek.
248     {
249         searchEngineMojeekActionPointer->setChecked(true);
250     }
251     else if (searchEngine == "Monocles")  // Monocles.
252     {
253         searchEngineMonoclesActionPointer->setChecked(true);
254     }
255     else if (searchEngine == "MetaGer")  // MetaGer.
256     {
257         searchEngineMetagerActionPointer->setChecked(true);
258     }
259     else if (searchEngine == "Google")  // Google.
260     {
261         searchEngineGoogleActionPointer->setChecked(true);
262     }
263     else if (searchEngine == "Bing")  // Bing.
264     {
265         searchEngineBingActionPointer->setChecked(true);
266     }
267     else if (searchEngine == "Yahoo")  // Yahoo.
268     {
269         searchEngineYahooActionPointer->setChecked(true);
270     }
271     else  // Custom search engine.
272     {
273         // Check the user agent.
274         searchEngineCustomActionPointer->setChecked(true);
275
276         // Set the custom search engine flag.
277         customSearchEngine = true;
278     }
279
280
281     // Format the custom search engine.
282     if (customSearchEngine)
283     {
284         // Enable the custom search engine.
285         searchEngineCustomActionPointer->setEnabled(true);
286
287         // Set the custom search engine text.
288         searchEngineCustomActionPointer->setText(searchEngine);
289     }
290     else
291     {
292         // Disable the custom search engine.
293         searchEngineCustomActionPointer->setEnabled(false);
294
295         // Reset the custom search engine text.
296         searchEngineCustomActionPointer->setText(i18nc("@action", "Custom"));
297     }
298 }
299
300 void BrowserWindow::updateOnTheFlyUserAgent(const QString &userAgent) const
301 {
302     // Initialize the custom user agent flag.
303     bool customUserAgent = false;
304
305     // Check the indicated on-the-fly user agent.
306     if (userAgent == "Privacy Browser")  // Privacy Browser.
307     {
308         userAgentPrivacyBrowserActionPointer->setChecked(true);
309     }
310     else if (userAgent == "Firefox Linux")  // Firefox Linux.
311     {
312         userAgentFirefoxLinuxActionPointer->setChecked(true);
313     }
314     else if (userAgent == "Chromium Linux")  // Chromium Linux.
315     {
316         userAgentChromiumLinuxActionPointer->setChecked(true);
317     }
318     else if (userAgent == "Firefox Windows")  // Firefox Windows.
319     {
320         userAgentFirefoxWindowsActionPointer->setChecked(true);
321     }
322     else if (userAgent == "Chrome Windows")  // Chrome Windows.
323     {
324         userAgentChromeWindowsActionPointer->setChecked(true);
325     }
326     else if (userAgent == "Edge Windows")  // Edge Windows.
327     {
328         userAgentEdgeWindowsActionPointer->setChecked(true);
329     }
330     else if (userAgent == "Safari macOS")  // Safari macOS.
331     {
332         userAgentSafariMacosActionPointer->setChecked(true);
333     }
334     else  // Custom user agent.
335     {
336         // Check the user agent.
337         userAgentCustomActionPointer->setChecked(true);
338
339         // Set the custom user agent flag.
340         customUserAgent = true;
341     }
342
343
344     // Format the custom user agent.
345     if (customUserAgent)
346     {
347         // Enable the custom user agent.
348         userAgentCustomActionPointer->setEnabled(true);
349
350         // Set the custom user agent text.
351         userAgentCustomActionPointer->setText(userAgent);
352     }
353     else
354     {
355         // Disable the custom user agent.
356         userAgentCustomActionPointer->setEnabled(false);
357
358         // Reset the custom user agent text.
359         userAgentCustomActionPointer->setText(i18nc("@action", "Custom"));
360     }
361 }
362
363 void BrowserWindow::updateOnTheFlyZoomFactor(const double &zoomFactor)
364 {
365     // Set the current zoom factor.
366     currentZoomFactor = Settings::zoomFactor();
367
368     // Update the zoom factor action text, formatting the double with 2 decimal places.
369     zoomFactorActionPointer->setText(ki18nc("@action", "Zoom Factor - %1").subs(zoomFactor, 0, '0', 2).toString());
370 }
371
372 void BrowserWindow::updateSearchEngineLabel(const QString &searchEngineString) const
373 {
374     // Update the search engine label.
375     searchEngineLabelPointer->setText(SearchEngineHelper::getSearchUrl(searchEngineString));
376 }
377
378 void BrowserWindow::updateStatusBar(const QString &statusBarMessage) const
379 {
380     // Display the status bar message.
381     statusBar()->showMessage(statusBarMessage);
382 }
383
384 void BrowserWindow::updateUserAgentLabel(const QString &userAgentName) const
385 {
386     // Update the user agent label.
387     userAgentLabelPointer->setText(UserAgentHelper::getUserAgent(userAgentName));
388 }