X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fmainview.h;h=47a9f270a14c9dc07a1ef3f61cff7dc89a01525e;hp=8129ecaf57bdf9618ea9ad0ebb03febfe8e8810f;hb=8e2e267828a6fbd7ed9950204c50a100e3f413fa;hpb=255215b082091aaadd5ef24cfc0880cd81e42272 diff --git a/src/mainview.h b/src/mainview.h index 8129eca..47a9f27 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -32,8 +32,19 @@ public: // The default contructor. explicit MainView(QWidget *parent); +signals: + // Define the signals. + void linkHovered(const QString &linkUrl); + +private Q_SLOTS: + // Define the private slots. + void loadUrl(const QString &urlFromUser); + void pageLinkHovered(const QString &linkUrl); + void updateUrlLineEdit(); + private: - // Declare the private variables. - Ui::MainView mainViewUi; + // Define the private variables. + KLineEdit *urlLineEditPointer; + QWebEngineView *webEngineViewPointer; }; #endif