]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/mainview.h
Add the URL line edit.
[PrivacyBrowserPC.git] / src / mainview.h
index 8129ecaf57bdf9618ea9ad0ebb03febfe8e8810f..9affb38d933492da108a3f71008aa899af6433dc 100644 (file)
@@ -32,8 +32,14 @@ public:
     // The default contructor.
     explicit MainView(QWidget *parent);
 
+private Q_SLOTS:
+    // Define the private slots.
+    void loadUrl(const QString &urlFromUser);
+    void updateUrlLineEdit();
+
 private:
-    // Declare the private variables.
-    Ui::MainView mainViewUi;
+    // Define the private variables.
+    KLineEdit *urlLineEditPointer;
+    QWebEngineView *webEngineViewPointer;
 };
 #endif