]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/windows/BrowserWindow.h
Implement finding of text withing a page.
[PrivacyBrowserPC.git] / src / windows / BrowserWindow.h
index f880cc8f4903b2b63beea736f7614dc4fb3e4fb4..4c043d2e8f4717b13e4dba0193ba8e7225d3064c 100644 (file)
@@ -40,7 +40,7 @@ class BrowserWindow : public KXmlGuiWindow
 
 public:
     // The default constructor.
-    BrowserWindow();
+    BrowserWindow(bool firstWindow=true);
 
     // The public functions.
     QSize sizeHint() const override;
@@ -55,6 +55,9 @@ private Q_SLOTS:
     void clearUrlLineEditFocus() const;
     void escape() const;
     void fileNew() const;
+    void findNext() const;
+    void findPrevious() const;
+    void focusFindLineEdit() const;
     void forward() const;
     void fullScreenRequested(const bool toggleOn);
     void getZoomFactorFromUser();
@@ -67,12 +70,15 @@ private Q_SLOTS:
     void showProgressBar(const int &progress) const;
     void showSettingsDialog();
     void toggleDomStorage() const;
+    void toggleFindCaseSensitive() const;
     void toggleJavaScript() const;
     void toggleLocalStorage() const;
     void toggleFullScreen();
     void updateCookiesAction(const int numberOfCookies) const;
     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);
@@ -81,6 +87,7 @@ private Q_SLOTS:
     void updateSearchEngineLabel(const QString &searchEngineString) const;
     void updateUrlLineEdit(const QUrl &newUrl);
     void updateUserAgentLabel(const QString &userAgentDatabaseName) const;
+    void updateWindowTitle(const QString &title);
 
 private:
     // The private variables.
@@ -91,15 +98,19 @@ private:
     bool customSearchEngineEnabled;
     bool customUserAgentEnabled;
     QAction *domStorageActionPointer;
-    QPalette domainSettingsPalette;
     QComboBox *downloadLocationComboBoxPointer;
+    QAction *findCaseSensitiveActionPointer;
+    QLabel *findTextLabelPointer;
+    KLineEdit *findTextLineEditPointer;
     KToggleFullScreenAction *fullScreenActionPointer;
     QAction *javaScriptActionPointer;
     bool javaScriptEnabled;
     QAction *localStorageActionPointer;
     bool localStorageEnabled;
     KToolBar *navigationToolBarPointer;
-    QPalette noDomainSettingsPalette;
+    QPalette negativeBackgroundPalette;
+    QPalette normalBackgroundPalette;
+    QPalette positiveBackgroundPalette;
     QProgressBar *progressBarPointer;
     QLabel *searchEngineLabelPointer;
     QAction *searchEngineMenuActionPointer;