]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/windows/BrowserWindow.h
Partial bookmark implementation. https://redmine.stoutner.com/issues/968
[PrivacyBrowserPC.git] / src / windows / BrowserWindow.h
index 7b64a966cb53fe81ac90608d63e6e499f448615e..49cb198307f40c7e6ddc2cc6b0005834a84b1e80 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2022 Soren Stoutner <soren@stoutner.com>.
+ * Copyright 2022-2023 Soren Stoutner <soren@stoutner.com>.
  *
  * This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
  *
 #define BROWSERWINDOW_H
 
 // Application headers.
-#include "views/BrowserView.h"
+#include "widgets/TabWidget.h"
 
 // KDE Frameworks headers.
 #include <KConfigDialog>
+#include <KToggleFullScreenAction>
+#include <KToolBar>
 #include <KXmlGuiWindow>
 
 // Qt toolkit headers.
+#include <QComboBox>
 #include <QLabel>
+#include <QProgressBar>
 
 class BrowserWindow : public KXmlGuiWindow
 {
@@ -37,25 +41,106 @@ class BrowserWindow : public KXmlGuiWindow
 
 public:
     // The default constructor.
-    BrowserWindow();
+    BrowserWindow(bool firstWindow=true);
+
+    // The public functions.
+    QSize sizeHint() const override;
+
+    // The public variables.
+    TabWidget *tabWidgetPointer;
 
 private Q_SLOTS:
     // The private slots.
-    void fileNew() const;
+    void addBookmark() const;
+    void addOrEditDomainSettings() const;
+    void back() const;
+    void clearUrlLineEditFocus() const;
+    void decrementZoom();
+    void editBookmarks() const;
+    void escape() const;
+    void findNext() const;
+    void findPrevious() const;
+    void forward() const;
+    void fullScreenRequested(const bool toggleOn);
     void getZoomFactorFromUser();
-    void settingsConfigure();
-    void updateOnTheFlySearchEngine(const QString &searchEngine) const;
-    void updateOnTheFlyUserAgent(const QString &userAgent) const;
-    void updateOnTheFlyZoomFactor(const double &zoomFactor);
+    void hideFindTextActions() const;
+    void home() const;
+    void incrementZoom();
+    void loadUrlFromLineEdit(const QString &url) const;
+    void newWindow() const;
+    void populateBookmarks();
+    void refresh() const;
+    void reloadAndBypassCache() const;
+    void showCookiesDialog();
+    void showDownloadLocationBrowseDialog() const;
+    void showDomainSettingsDialog() const;
+    void showFindTextActions() const;
+    void showProgressBar(const int &progress) const;
+    void showSettingsDialog();
+    void toggleDomStorage() const;
+    void toggleFindCaseSensitive() const;
+    void toggleJavaScript() const;
+    void toggleLocalStorage() const;
+    void toggleFullScreen();
+    void toggleViewBookmarksToolBar();
+    void toggleViewSource() const;
+    void toggleViewSourceInNewTab() const;
+    void updateCookiesAction(const int numberOfCookies) const;
+    void updateDefaultZoomFactor(const double newDefaultZoomFactor);
+    void updateDomStorageAction(const bool &isEnabled) const;
+    void updateDomainSettingsIndicator(const bool status);
+    void updateFindText(const QString &text, const bool findCaseSensitive) const;
+    void updateFindTextResults(const QWebEngineFindTextResult &findTextResult) const;
+    void updateJavaScriptAction(const bool &isEnabled);
+    void updateLocalStorageAction(const bool &isEnabled);
+    void updateSearchEngineActions(const QString &searchEngine, const bool &updateCustomSearchEngineStatus);
+    void updateUserAgentActions(const QString &userAgent, const bool &updateCustomUserAgentStatus);
+    void updateZoomActions(const double &zoomFactor);
     void updateSearchEngineLabel(const QString &searchEngineString) const;
-    void updateStatusBar(const QString &statusBarMessage) const;
-    void updateUserAgentLabel(const QString &userAgentName) const;
+    void updateUrlLineEdit(const QUrl &newUrl);
+    void updateUserAgentLabel(const QString &userAgentDatabaseName) const;
+    void updateViewBookmarksToolBarCheckbox(const bool visible);
+    void updateWindowTitle(const QString &title);
+    void zoomDefault();
 
 private:
     // The private variables.
-    BrowserView *browserViewPointer;
+    QList<QAction*> bookmarksMenuCurrentActionList;
+    QMenu *bookmarksMenuPointer;
+    QList<QAction*> bookmarksToolBarCurrentActionList;
+    KToolBar *bookmarksToolBarPointer;
+    bool bookmarksToolBarIsVisible = false;
+    bool bookmarksToolBarUninitialized = true;
+    KConfigDialog *configDialogPointer;
+    QAction *cookiesActionPointer;
+    QUrl currentUrl;
+    QPushButton *currentZoomButtonPointer;
     double currentZoomFactor;
+    bool customSearchEngineEnabled;
+    bool customUserAgentEnabled;
+    double defaultZoomFactor;
+    QAction *domStorageActionPointer;
+    QComboBox *downloadLocationComboBoxPointer;
+    QAction *findCaseSensitiveActionPointer;
+    QAction *findNextActionPointer;
+    QAction *findPreviousActionPointer;
+    QAction *findTextLabelActionPointer;
+    QLabel *findTextLabelPointer;
+    QAction *findTextLineEditActionPointer;
+    KLineEdit *findTextLineEditPointer;
+    KToggleFullScreenAction *fullScreenActionPointer;
+    QAction *hideFindTextActionPointer;
+    QAction *javaScriptActionPointer;
+    bool javaScriptEnabled;
+    QAction *localStorageActionPointer;
+    bool localStorageEnabled;
+    KToolBar *navigationToolBarPointer;
+    QPalette negativeBackgroundPalette;
+    QPalette normalBackgroundPalette;
+    QPalette positiveBackgroundPalette;
+    QProgressBar *progressBarPointer;
     QLabel *searchEngineLabelPointer;
+    QAction *searchEngineMenuActionPointer;
     QAction *searchEngineMojeekActionPointer;
     QAction *searchEngineMonoclesActionPointer;
     QAction *searchEngineMetagerActionPointer;
@@ -64,7 +149,9 @@ private:
     QAction *searchEngineYahooActionPointer;
     QAction *searchEngineCustomActionPointer;
     QLabel *userAgentLabelPointer;
+    QAction *userAgentMenuActionPointer;
     QAction *userAgentPrivacyBrowserActionPointer;
+    QAction *userAgentWebEngineDefaultActionPointer;
     QAction *userAgentFirefoxLinuxActionPointer;
     QAction *userAgentChromiumLinuxActionPointer;
     QAction *userAgentFirefoxWindowsActionPointer;
@@ -72,7 +159,16 @@ private:
     QAction *userAgentEdgeWindowsActionPointer;
     QAction *userAgentSafariMacosActionPointer;
     QAction *userAgentCustomActionPointer;
+    KLineEdit *urlLineEditPointer;
+    KToolBar *urlToolBarPointer;
+    QAction *viewBookmarksToolBarActionPointer;
+    QAction *viewSourceActionPointer;
+    QAction *viewSourceInNewTabActionPointer;
+    QAction *zoomDefaultActionPointer;
     QAction *zoomFactorActionPointer;
-    KConfigDialog *configDialogPointer;
+    QAction *zoomInActionPointer;
+    QPushButton *zoomMinusButtonPointer;
+    QAction *zoomOutActionPointer;
+    QPushButton *zoomPlusButtonPointer;
 };
 #endif