]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/browserwindow.cpp
Enable setting as the default browser.
[PrivacyBrowserPC.git] / src / 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
26 // KDE Frameworks headers.
27 #include <KActionCollection>
28 #include <KConfigDialog>
29
30 // Qt framework headers.
31 #include <QStatusBar>
32
33 BrowserWindow::BrowserWindow() : KXmlGuiWindow()
34 {
35     // Instantiate the main view pointer.
36     mainViewPointer = new MainView(this);
37
38     // Set the main view as the central widget.
39     setCentralWidget(mainViewPointer);
40
41     // Get a handle for the action collectoin.
42     KActionCollection *actionCollectionPointer = this->actionCollection();
43
44     // Add the standard actions.
45     KStandardAction::openNew(this, SLOT(fileNew()), actionCollectionPointer);
46     KStandardAction::quit(qApp, SLOT(closeAllWindows()), actionCollectionPointer);
47     KStandardAction::preferences(this, SLOT(settingsConfigure()), actionCollectionPointer);
48
49     // Update the status bar with the URL when a link is hovered.
50     connect(mainViewPointer, SIGNAL(linkHovered(QString)), this, SLOT(updateStatusBar(QString)));
51
52     // Setup the GUI based on the privacybrowserui.rc file.
53     setupGUI();
54 }
55
56 void BrowserWindow::fileNew()
57 {
58     // Display a new instance of Privacy Browser.
59     (new BrowserWindow)->show();
60 }
61
62 void BrowserWindow::settingsConfigure()
63 {
64     // Check to make sure the dialog box isn't already displayed.
65     if (!KConfigDialog::exists(QStringLiteral("settings")))
66     {
67         // Create the settings widgets.
68         QWidget *privacySettingsWidgetPointer = new QWidget;
69         QWidget *generalSettingsWidgetPointer = new QWidget;
70
71         // Instantiate the settings UI.
72         Ui::PrivacySettings privacySettingsUi;
73         Ui::GeneralSettings generalSettingsUi;
74
75         // Setup the UI to display the settings widgets.
76         privacySettingsUi.setupUi(privacySettingsWidgetPointer);
77         generalSettingsUi.setupUi(generalSettingsWidgetPointer);
78
79         // Instantiate a settings config dialog from the settings.kcfg file.
80         KConfigDialog *configDialogPointer = new KConfigDialog(this, QStringLiteral("settings"), Settings::self());
81
82         // Add the settings widgets as config dialog pages.
83         configDialogPointer->addPage(privacySettingsWidgetPointer, i18nc("@title:tab", "Privacy"), QStringLiteral("privacy-browser"));
84         configDialogPointer->addPage(generalSettingsWidgetPointer, i18nc("@title:tab", "General"), QStringLiteral("breeze-settings"));
85
86         // Delete the config dialog when it is closed.
87         configDialogPointer->setAttribute(Qt::WA_DeleteOnClose);
88
89         // Make it so.
90         configDialogPointer->show();
91
92         // Apply the settings when they are updated.
93         connect(configDialogPointer, SIGNAL(settingsChanged(QString)), mainViewPointer, SLOT(applyApplicationSettings()));
94         connect(configDialogPointer, SIGNAL(settingsChanged(QString)), mainViewPointer, SLOT(applyDomainSettings()));
95     }
96 }
97
98 void BrowserWindow::updateStatusBar(const QString &statusBarMessage)
99 {
100     // Display the status bar message.
101     statusBar()->showMessage(statusBarMessage);
102 }