X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fwindows%2FBrowserWindow.h;h=6995efc026a6b270c285ac6b64f5cddfea0b0c35;hp=e4eee69a012b28324069c4c72f4a0f1649b9f0ec;hb=8933c941521c591a962034ecf3486c9143bf1f80;hpb=cca335d6b9751fbf0e87daa5f122a1b8770488c8 diff --git a/src/windows/BrowserWindow.h b/src/windows/BrowserWindow.h index e4eee69..6995efc 100644 --- a/src/windows/BrowserWindow.h +++ b/src/windows/BrowserWindow.h @@ -45,13 +45,16 @@ public: private Q_SLOTS: // The private slots. + void addCookie(const QNetworkCookie &newCookie) const; void addOrEditDomainSettings() const; void back() const; + void clearUrlLineEditFocus() const; void fileNew() const; void forward() const; void getZoomFactorFromUser(); void home() const; void loadUrlFromLineEdit(const QString &url) const; + void openCookiesDialog(); void openDomainSettings() const; void refresh() const; void settingsConfigure(); @@ -72,10 +75,10 @@ private: // The private variables. BrowserView *browserViewPointer; KConfigDialog *configDialogPointer; + QList *cookieListPointer; QString currentDomainSettingsDomain; QUrl currentUrl; double currentZoomFactor; - QAction *domainSettingsActionPointer; QPalette domainSettingsPalette; QAction *javaScriptActionPointer; QAction *localStorageActionPointer; @@ -91,6 +94,7 @@ private: QAction *searchEngineCustomActionPointer; QLabel *userAgentLabelPointer; QAction *userAgentPrivacyBrowserActionPointer; + QAction *userAgentWebEngineDefaultActionPointer; QAction *userAgentFirefoxLinuxActionPointer; QAction *userAgentChromiumLinuxActionPointer; QAction *userAgentFirefoxWindowsActionPointer;