]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/mainview.h
Add forward and back buttons.
[PrivacyBrowserPC.git] / src / mainview.h
index 47a9f270a14c9dc07a1ef3f61cff7dc89a01525e..a28565e9407be77b60d0adeea1a98939684921d7 100644 (file)
@@ -40,11 +40,14 @@ private Q_SLOTS:
     // Define the private slots.
     void loadUrl(const QString &urlFromUser);
     void pageLinkHovered(const QString &linkUrl);
-    void updateUrlLineEdit();
+    void updateInterface();
 
 private:
     // Define the private variables.
+    QPushButton *backButtonPointer;
+    QPushButton *forwardButtonPointer;
     KLineEdit *urlLineEditPointer;
+    QWebEngineHistory *webEngineHistoryPointer;
     QWebEngineView *webEngineViewPointer;
 };
 #endif