X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fmainview.h;h=9affb38d933492da108a3f71008aa899af6433dc;hp=8129ecaf57bdf9618ea9ad0ebb03febfe8e8810f;hb=f3047a42fa756bb36d4840f40ab7acf83e751b48;hpb=255215b082091aaadd5ef24cfc0880cd81e42272 diff --git a/src/mainview.h b/src/mainview.h index 8129eca..9affb38 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -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