]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/windows/BrowserWindow.cpp
Add a download location setting.
[PrivacyBrowserPC.git] / src / windows / BrowserWindow.cpp
index 2484061633266d0e7e3d5d49ddb57c38aaed5ad1..e44357f25c042bb264ac7384baa00b6ab4b3793c 100644 (file)
@@ -33,6 +33,7 @@
 #include <KToolBar>
 
 // Qt toolkit headers.
+#include <QFileDialog>
 #include <QInputDialog>
 #include <QNetworkCookie>
 #include <QMenuBar>
@@ -66,7 +67,7 @@ BrowserWindow::BrowserWindow() : KXmlGuiWindow()
     QAction *backActionPointer = KStandardAction::back(this, SLOT(back()), actionCollectionPointer);
     QAction *forwardActionPointer = KStandardAction::forward(this, SLOT(forward()), actionCollectionPointer);
     KStandardAction::home(this, SLOT(home()), actionCollectionPointer);
-    KStandardAction::preferences(this, SLOT(settingsConfigure()), actionCollectionPointer);
+    KStandardAction::preferences(this, SLOT(showSettingsDialog()), actionCollectionPointer);
 
     // Add the custom actions.
     userAgentPrivacyBrowserActionPointer = actionCollectionPointer->addAction(QStringLiteral("user_agent_privacy_browser"));
@@ -484,6 +485,31 @@ void BrowserWindow::showCookiesDialog()
     connect(cookiesDialogPointer, SIGNAL(deleteCookie(QNetworkCookie)), browserViewPointer, SLOT(deleteCookieFromStore(QNetworkCookie)));
 }
 
+void BrowserWindow::showDownloadLocationBrowseDialog() const
+{
+    // Get the current download location.
+    QString currentDownloadLocation = downloadLocationComboBoxPointer->currentText();
+
+    // Resolve the system download directory if specified.
+    if (currentDownloadLocation == QStringLiteral("System Download Directory"))
+        currentDownloadLocation = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);
+
+    // Get the new download location.
+    QString newDownloadLocation = QFileDialog::getExistingDirectory(configDialogPointer, i18nc("Select download location dialog caption", "Select Download Location"), currentDownloadLocation);
+
+    // Populate the download location combo box according to the new download location.
+    if (newDownloadLocation == QStandardPaths::writableLocation(QStandardPaths::DownloadLocation))  // The default download location was selected.
+    {
+        // Populate the download location with the default text.
+        downloadLocationComboBoxPointer->setCurrentText("System Download Directory");
+    }
+    else if (newDownloadLocation != QStringLiteral(""))  // A different directory was selected.
+    {
+        // Populate the download location.
+        downloadLocationComboBoxPointer->setCurrentText(newDownloadLocation);
+    }
+}
+
 void BrowserWindow::showDomainSettingsDialog() const
 {
     // Remove the focus from the URL line edit.
@@ -508,85 +534,70 @@ void BrowserWindow::showProgressBar(const int &progress) const
     progressBarPointer->show();
 }
 
-QSize BrowserWindow::sizeHint() const
-{
-    // Return the default window size.
-    return QSize(1500, 1200);
-}
-
-void BrowserWindow::settingsConfigure()
+void BrowserWindow::showSettingsDialog()
 {
-    // Check to make sure the dialog box isn't already displayed.
-    if (KConfigDialog::exists(QStringLiteral("settings")))
-    {
-        // Show the existing config dialog if it is hidden.
-        configDialogPointer->show();
+    // Create the settings widgets.
+    QWidget *privacySettingsWidgetPointer = new QWidget;
+    QWidget *generalSettingsWidgetPointer = new QWidget;
 
-        // Raise the existing config dialog if it is below other windows.
-        configDialogPointer->raise();
+    // Instantiate the settings UI.
+    Ui::PrivacySettings privacySettingsUi;
+    Ui::GeneralSettings generalSettingsUi;
 
-        // Restore the existing config dialog if it has been minimized.
-        if (configDialogPointer->isMinimized()) {
-            configDialogPointer->showNormal();
-        }
-
-        // Activate the existing config dialog, which brings its virtual desktop into focus.
-        configDialogPointer->activateWindow();
-    }
-    else
-    {
-        // Create the settings widgets.
-        QWidget *privacySettingsWidgetPointer = new QWidget;
-        QWidget *generalSettingsWidgetPointer = new QWidget;
+    // Setup the UI to display the settings widgets.
+    privacySettingsUi.setupUi(privacySettingsWidgetPointer);
+    generalSettingsUi.setupUi(generalSettingsWidgetPointer);
 
-        // Instantiate the settings UI.
-        Ui::PrivacySettings privacySettingsUi;
-        Ui::GeneralSettings generalSettingsUi;
+    // Get handles for the widgets.
+    QComboBox *userAgentComboBoxPointer = privacySettingsUi.kcfg_userAgent;
+    userAgentLabelPointer = privacySettingsUi.userAgentLabel;
+    QComboBox *searchEngineComboBoxPointer = generalSettingsUi.kcfg_searchEngine;
+    searchEngineLabelPointer = generalSettingsUi.searchEngineLabel;
+    downloadLocationComboBoxPointer = generalSettingsUi.kcfg_downloadLocation;
+    QPushButton *browseButtonPointer = generalSettingsUi.browseButton;
 
-        // Setup the UI to display the settings widgets.
-        privacySettingsUi.setupUi(privacySettingsWidgetPointer);
-        generalSettingsUi.setupUi(generalSettingsWidgetPointer);
+    // Populate the combo box labels.
+    updateUserAgentLabel(userAgentComboBoxPointer->currentText());
+    updateSearchEngineLabel(searchEngineComboBoxPointer->currentText());
 
-        // Get handles for the widgets.
-        QComboBox *userAgentComboBoxPointer = privacySettingsUi.kcfg_userAgent;
-        userAgentLabelPointer = privacySettingsUi.userAgentLabel;
-        QComboBox *searchEngineComboBoxPointer = generalSettingsUi.kcfg_searchEngine;
-        searchEngineLabelPointer = generalSettingsUi.searchEngineLabel;
+    // Update the labels when the combo boxes change.
+    connect(userAgentComboBoxPointer, SIGNAL(currentTextChanged(const QString)), this, SLOT(updateUserAgentLabel(const QString)));
+    connect(searchEngineComboBoxPointer, SIGNAL(currentTextChanged(const QString)), this, SLOT(updateSearchEngineLabel(const QString)));
 
-        // Populate the combo box labels.
-        updateUserAgentLabel(userAgentComboBoxPointer->currentText());
-        updateSearchEngineLabel(searchEngineComboBoxPointer->currentText());
+    // Connect the download location directory browse button.
+    connect(browseButtonPointer, SIGNAL(clicked()), this, SLOT(showDownloadLocationBrowseDialog()));
 
-        // Update the labels when the combo boxes change.
-        connect(userAgentComboBoxPointer, SIGNAL(currentTextChanged(const QString)), this, SLOT(updateUserAgentLabel(const QString)));
-        connect(searchEngineComboBoxPointer, SIGNAL(currentTextChanged(const QString)), this, SLOT(updateSearchEngineLabel(const QString)));
+    // Instantiate a settings config dialog from the settings.kcfg file.
+    configDialogPointer = new KConfigDialog(this, QStringLiteral("settings"), Settings::self());
 
-        // Instantiate a settings config dialog from the settings.kcfg file.
-        configDialogPointer = new KConfigDialog(this, QStringLiteral("settings"), Settings::self());
+    // Add the settings widgets as config dialog pages.
+    configDialogPointer->addPage(privacySettingsWidgetPointer, i18nc("@title:tab", "Privacy"), QStringLiteral("privacy-browser"));
+    configDialogPointer->addPage(generalSettingsWidgetPointer, i18nc("@title:tab", "General"), QStringLiteral("breeze-settings"));
 
-        // Add the settings widgets as config dialog pages.
-        configDialogPointer->addPage(privacySettingsWidgetPointer, i18nc("@title:tab", "Privacy"), QStringLiteral("privacy-browser"));
-        configDialogPointer->addPage(generalSettingsWidgetPointer, i18nc("@title:tab", "General"), QStringLiteral("breeze-settings"));
+    // Prevent interaction with the parent window while the dialog is open.
+    configDialogPointer->setWindowModality(Qt::WindowModal);
 
-        // Delete the config dialog when it is closed.
-        configDialogPointer->setAttribute(Qt::WA_DeleteOnClose);
+    // Make it so.
+    configDialogPointer->show();
 
-        // Make it so.
-        configDialogPointer->show();
+    // TODO.  KConfigDialog does not respect expanding size policies.  <https://redmine.stoutner.com/issues/823>
+    //configDialogPointer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
+    //privacySettingsWidgetPointer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
+    //generalSettingsWidgetPointer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
+    //configDialogPointer->adjustSize();
 
-        // TODO.  KConfigDialog does not respect expanding size policies.  <https://redmine.stoutner.com/issues/823>
-        //configDialogPointer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
-        //privacySettingsWidgetPointer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
-        //generalSettingsWidgetPointer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
-        //configDialogPointer->adjustSize();
+    // Expand the config dialog.
+    configDialogPointer->resize(1000, 500);
 
-        // Expand the config dialog.
-        configDialogPointer->resize(1000, 500);
+    // Apply the settings when they are updated.
+    connect(configDialogPointer, SIGNAL(settingsChanged(QString)), browserViewPointer, SLOT(applyApplicationSettings()));
+    connect(configDialogPointer, SIGNAL(settingsChanged(QString)), browserViewPointer, SLOT(applyDomainSettingsAndReload()));
+}
 
-        // Apply the settings when they are updated.
-        connect(configDialogPointer, SIGNAL(settingsChanged(QString)), browserViewPointer, SLOT(applyApplicationSettings()));
-        connect(configDialogPointer, SIGNAL(settingsChanged(QString)), browserViewPointer, SLOT(applyDomainSettingsAndReload()));
-    }
+QSize BrowserWindow::sizeHint() const
+{
+    // Return the default window size.
+    return QSize(1500, 1200);
 }
 
 void BrowserWindow::toggleDomStorage() const