]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/browserwindow.cpp
Display hovered link URLs in the status bar.
[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 "mainview.h"
23 #include "settings.h"
24 #include "ui_settings.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     MainView *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 a general settings page.
68         QWidget *generalSettingsWidgetPointer = new QWidget;
69
70         // Instantiate the settings UI.
71         Ui::Settings settingsUi;
72
73         // Setup the UI to display the general settings widget.
74         settingsUi.setupUi(generalSettingsWidgetPointer);
75
76         // Instantiate a settings config dialog from the settings.kcfg file.
77         KConfigDialog *configDialogPointer = new KConfigDialog(this, QStringLiteral("settings"), Settings::self());
78
79         // Add the general settings widget page.
80         configDialogPointer->addPage(generalSettingsWidgetPointer, i18nc("@title:tab", "General"), QStringLiteral("breeze-settings"));
81
82         // Delete the config dialog when it is closed.
83         configDialogPointer->setAttribute(Qt::WA_DeleteOnClose);
84
85         // Make it so.
86         configDialogPointer->show();
87     }
88 }
89
90 void BrowserWindow::updateStatusBar(const QString &statusBarMessage)
91 {
92     // Display the status bar message.
93     statusBar()->showMessage(statusBarMessage);
94 }