]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/BrowserWindow.h
Reapply domain settings when the host changes.
[PrivacyBrowserPC.git] / src / BrowserWindow.h
index 31ac5109a161a18275ab8628c4dfa8bbd98d1230..a8679ad4eab8a9eb04c14e65f1573abd48832fb5 100644 (file)
@@ -22,7 +22,6 @@
 
 // Application headers.
 #include "MainView.h"
-#include "UserAgentHelper.h"
 
 // Qt framework headers.
 #include <QLabel>
@@ -40,16 +39,17 @@ public:
     BrowserWindow();
 
 private Q_SLOTS:
-    // Define the private slots.
-    void fileNew();
+    // The private slots.
+    void fileNew() const;
     void settingsConfigure();
-    void updateStatusBar(const QString &statusBarMessage);
-    void updateUserAgentLabel(const QString &userAgentName);
+    void updateSearchEngineLabel(const QString &searchEngineString) const;
+    void updateStatusBar(const QString &statusBarMessage) const;
+    void updateUserAgentLabel(const QString &userAgentName) const;
 
 private:
-    // Define the private variables.
+    // The private variables.
     MainView *mainViewPointer;
+    QLabel *searchEngineLabelPointer;
     QLabel *userAgentLabelPointer;
-    UserAgentHelper *userAgentHelperPointer;
 };
 #endif