X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fwindows%2FBrowserWindow.h;h=f86c1b2f11f7bfdd58ba3fa76ab106b229db6a82;hp=7b64a966cb53fe81ac90608d63e6e499f448615e;hb=5daa7af456c7daa05b1a055932b5156ed1f88b00;hpb=0a7bcc3ab2d2a1015f29293fc9c527c1448a86cf diff --git a/src/windows/BrowserWindow.h b/src/windows/BrowserWindow.h index 7b64a96..f86c1b2 100644 --- a/src/windows/BrowserWindow.h +++ b/src/windows/BrowserWindow.h @@ -41,20 +41,32 @@ public: private Q_SLOTS: // The private slots. + void back() const; void fileNew() const; + void forward() const; void getZoomFactorFromUser(); + void home() const; + void loadUrlFromLineEdit(const QString &url) const; + void refresh() const; void settingsConfigure(); + void updateDomainSettingsIndicator(const bool status) const; void updateOnTheFlySearchEngine(const QString &searchEngine) const; void updateOnTheFlyUserAgent(const QString &userAgent) const; void updateOnTheFlyZoomFactor(const double &zoomFactor); void updateSearchEngineLabel(const QString &searchEngineString) const; - void updateStatusBar(const QString &statusBarMessage) const; - void updateUserAgentLabel(const QString &userAgentName) const; + void updateUrlLineEdit(const QString &newUrl) const; + void updateUserAgentLabel(const QString &userAgentDatabaseName) const; private: // The private variables. + QAction *backActionPointer; BrowserView *browserViewPointer; + KConfigDialog *configDialogPointer; + QPalette domainSettingsPalette; double currentZoomFactor; + QAction *forwardActionPointer; + QAction *homeActionPointer; + QPalette noDomainSettingsPalette; QLabel *searchEngineLabelPointer; QAction *searchEngineMojeekActionPointer; QAction *searchEngineMonoclesActionPointer; @@ -63,6 +75,7 @@ private: QAction *searchEngineBingActionPointer; QAction *searchEngineYahooActionPointer; QAction *searchEngineCustomActionPointer; + QAction *refreshActionPointer; QLabel *userAgentLabelPointer; QAction *userAgentPrivacyBrowserActionPointer; QAction *userAgentFirefoxLinuxActionPointer; @@ -72,7 +85,7 @@ private: QAction *userAgentEdgeWindowsActionPointer; QAction *userAgentSafariMacosActionPointer; QAction *userAgentCustomActionPointer; + KLineEdit *urlLineEditPointer; QAction *zoomFactorActionPointer; - KConfigDialog *configDialogPointer; }; #endif