]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/mainwindow.cpp
Add a web engine view.
[PrivacyBrowserPC.git] / src / mainwindow.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 "mainview.h"
22 #include "mainwindow.h"
23 #include "settings.h"
24 #include "ui_settings.h"
25
26 // KDE Frameworks headers.
27 #include <KActionCollection>
28 #include <KConfigDialog>
29
30 MainWindow::MainWindow() : KXmlGuiWindow()
31 {
32     // Instantiate the main view pointer.
33     MainView *mainViewPointer = new MainView(this);
34
35     // Set the main view as the central widget.
36     setCentralWidget(mainViewPointer);
37
38     // Get a handle for the action collectoin.
39     KActionCollection *actionCollectionPointer = this->actionCollection();
40
41     // Create a switch colorsaction pointer.
42     QAction *switchColorsActionPointer;
43
44     // Populate the switch colors action pointer.
45     switchColorsActionPointer = actionCollectionPointer->addAction(QStringLiteral("switch_action"));
46     switchColorsActionPointer->setText(i18nc("@action", "Switch Colors"));
47     switchColorsActionPointer->setIcon(QIcon::fromTheme(QStringLiteral("fill-color")));
48
49     // Connect the signals to the slots.
50     connect(switchColorsActionPointer, &QAction::triggered, mainViewPointer, &MainView::switchColors);
51
52     // Add the standard actions.
53     KStandardAction::openNew(this, SLOT(fileNew()), actionCollectionPointer);
54     KStandardAction::quit(qApp, SLOT(closeAllWindows()), actionCollectionPointer);
55     KStandardAction::preferences(this, SLOT(settingsConfigure()), actionCollectionPointer);
56
57     // Setup the GUI based on the privacybrowserui.rc file.
58     setupGUI();
59 }
60
61 void MainWindow::fileNew()
62 {
63     // Display a new instance of Privacy Browser.
64     (new MainWindow)->show();
65 }
66
67 void MainWindow::settingsConfigure()
68 {
69     // Check to make sure the dialog box isn't already displayed.
70     if (!KConfigDialog::exists(QStringLiteral("settings")))
71     {
72         // Create a general settings page.
73         QWidget *generalSettingsWidgetPointer = new QWidget;
74
75         // Instantiate the settings UI.
76         Ui::Settings settingsUi;
77
78         // Setup the UI to display the general settings widget.
79         settingsUi.setupUi(generalSettingsWidgetPointer);
80
81         // Instantiate a settings config dialog from the settings.kcfg file.
82         KConfigDialog *configDialogPointer = new KConfigDialog(this, QStringLiteral("settings"), Settings::self());
83
84         // Add the general settings widget page.
85         configDialogPointer->addPage(generalSettingsWidgetPointer, i18nc("@title:tab", "General"), QStringLiteral("package_setting"));
86
87         // Delete the config dialog when it is closed.
88         configDialogPointer->setAttribute(Qt::WA_DeleteOnClose);
89
90         // Make it so.
91         configDialogPointer->show();
92     }
93 }