]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/mainwindow.cpp
At the PO template (translation) framework.
[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 "mainwindow.h"
22 #include "privacybrowserpcview.h"
23 #include "privacybrowserdebug.h"
24 #include "settings.h"
25
26 // KDE Frameworks headers.
27 #include <KActionCollection>
28 #include <KConfigDialog>
29
30
31 MainWindow::MainWindow() : KXmlGuiWindow()
32 {
33     m_privacybrowserpcView = new PrivacyBrowserPCView(this);
34     setCentralWidget(m_privacybrowserpcView);
35
36     KActionCollection* actionCollection = this->actionCollection();
37     m_switchAction = actionCollection->addAction(QStringLiteral("switch_action"));
38     m_switchAction->setText(i18nc("@action", "Switch Colors"));
39     m_switchAction->setIcon(QIcon::fromTheme(QStringLiteral("fill-color")));
40     connect(m_switchAction, &QAction::triggered, m_privacybrowserpcView, &PrivacyBrowserPCView::switchColors);
41
42     KStandardAction::openNew(this, SLOT(fileNew()), actionCollection);
43     KStandardAction::quit(qApp, SLOT(closeAllWindows()), actionCollection);
44     KStandardAction::preferences(this, SLOT(settingsConfigure()), actionCollection);
45
46     setupGUI();
47 }
48
49 MainWindow::~MainWindow()
50 {
51 }
52
53 void MainWindow::fileNew()
54 {
55     qCDebug(PRIVACYBROWSER) << "PrivacyBrowserPCWindow::fileNew()";
56     (new MainWindow)->show();
57 }
58
59 void MainWindow::settingsConfigure()
60 {
61     qCDebug(PRIVACYBROWSER) << "MainWindow::settingsConfigure()";
62     // The preference dialog is derived from prefs_base.ui
63     //
64     // compare the names of the widgets in the .ui file
65     // to the names of the variables in the .kcfg file
66     //avoid to have 2 dialogs shown
67     if (KConfigDialog::showDialog(QStringLiteral("settings"))) {
68         return;
69     }
70
71     KConfigDialog *dialog = new KConfigDialog(this, QStringLiteral("settings"), Settings::self());
72     QWidget *generalSettingsPage = new QWidget;
73     m_settings.setupUi(generalSettingsPage);
74     dialog->addPage(generalSettingsPage, i18nc("@title:tab", "General"), QStringLiteral("package_setting"));
75     connect(dialog, &KConfigDialog::settingsChanged, m_privacybrowserpcView, &PrivacyBrowserPCView::handleSettingsChanged);
76     dialog->setAttribute(Qt::WA_DeleteOnClose);
77     dialog->show();
78 }