X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fmainview.h;h=a28565e9407be77b60d0adeea1a98939684921d7;hp=8129ecaf57bdf9618ea9ad0ebb03febfe8e8810f;hb=10c141f631ec7e341e45045b574661b644c7dbe9;hpb=255215b082091aaadd5ef24cfc0880cd81e42272 diff --git a/src/mainview.h b/src/mainview.h index 8129eca..a28565e 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -32,8 +32,22 @@ 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 updateInterface(); + private: - // Declare the private variables. - Ui::MainView mainViewUi; + // Define the private variables. + QPushButton *backButtonPointer; + QPushButton *forwardButtonPointer; + KLineEdit *urlLineEditPointer; + QWebEngineHistory *webEngineHistoryPointer; + QWebEngineView *webEngineViewPointer; }; #endif