]> 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 a131a4484e02f52d5d20e0669e7780b01e212124..4c043d2e8f4717b13e4dba0193ba8e7225d3064c 100644 (file)
@@ -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);
@@ -92,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;