X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Fwindows%2FBrowserWindow.h;h=a131a4484e02f52d5d20e0669e7780b01e212124;hb=6acd73c4148bac2a8c2f637e70080a43b12fd14e;hp=39b8e8f5ea7e0caffacf2aa67a8706f77f7768f7;hpb=0d23ee5e9b43b247cdda0a4cbb73f8b1a70f4500;p=PrivacyBrowserPC.git diff --git a/src/windows/BrowserWindow.h b/src/windows/BrowserWindow.h index 39b8e8f..a131a44 100644 --- a/src/windows/BrowserWindow.h +++ b/src/windows/BrowserWindow.h @@ -40,11 +40,14 @@ class BrowserWindow : public KXmlGuiWindow public: // The default constructor. - BrowserWindow(); + BrowserWindow(bool firstWindow=true); // The public functions. QSize sizeHint() const override; + // The public variables. + TabWidget *tabWidgetPointer; + private Q_SLOTS: // The private slots. void addOrEditDomainSettings() const; @@ -78,6 +81,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. @@ -107,7 +111,6 @@ private: QAction *searchEngineBingActionPointer; QAction *searchEngineYahooActionPointer; QAction *searchEngineCustomActionPointer; - TabWidget *tabWidgetPointer; QLabel *userAgentLabelPointer; QAction *userAgentMenuActionPointer; QAction *userAgentPrivacyBrowserActionPointer;