X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Fwindows%2FBrowserWindow.h;h=e62b7b29c9b338a8f96981865f24b04bb1e95cf8;hb=e5ec85accb02116b08c33b574805c132475d90bc;hp=c4e04645371d0f9f86a8f76d4d116cf4102a5bfa;hpb=3b22acd838008fd54234acc475edca434510b501;p=PrivacyBrowserPC.git diff --git a/src/windows/BrowserWindow.h b/src/windows/BrowserWindow.h index c4e0464..e62b7b2 100644 --- a/src/windows/BrowserWindow.h +++ b/src/windows/BrowserWindow.h @@ -49,6 +49,10 @@ public: // The public variables. TabWidget *tabWidgetPointer; +public Q_SLOTS: + // The public slots. + void populateBookmarksInThisWindow(); // This is public so that the bookmarks can be repopulated over D-Bus when changed by another instance of Privacy Browser. + private Q_SLOTS: // The private slots. void addOrEditDomainSettings() const; @@ -67,7 +71,7 @@ private Q_SLOTS: void incrementZoom(); void loadUrlFromLineEdit(const QString &url) const; void newWindow() const; - void populateBookmarks(); + void populateBookmarksInAllWindows() const; void refresh() const; void reloadAndBypassCache() const; void showBookmarkContextMenu(const QPoint &point); @@ -78,6 +82,7 @@ private Q_SLOTS: void showProgressBar(const int &progress) const; void showSettingsDialog(); void toggleBookmark(); + void toggleDeveloperTools() const; void toggleDomStorage() const; void toggleFindCaseSensitive() const; void toggleJavaScript() const; @@ -125,6 +130,7 @@ private: bool customSearchEngineEnabled; bool customUserAgentEnabled; double defaultZoomFactor; + QAction *developerToolsActionPointer; QAction *domStorageActionPointer; QComboBox *downloadLocationComboBoxPointer; QList *> finalBookmarkFolderMenuActionList;