X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Fwidgets%2FPrivacyWebEngineView.h;h=c0c47134fff55f5becabbdb5708294bf5e5668d5;hb=425fed98271cd951cddef9904e5e271f0fb76fc1;hp=152c56e84f515c5979df2e26fb8b5b6f316dc40f;hpb=8756d450d1d44dd8e840f7e3de7b1d72ca5b7d8e;p=PrivacyBrowserPC.git diff --git a/src/widgets/PrivacyWebEngineView.h b/src/widgets/PrivacyWebEngineView.h index 152c56e..c0c4713 100644 --- a/src/widgets/PrivacyWebEngineView.h +++ b/src/widgets/PrivacyWebEngineView.h @@ -21,6 +21,7 @@ #define PRIVACYWEBENGINEVIEW_H // Qt toolkit headers. +#include #include #include #include @@ -36,10 +37,13 @@ public: // The public variables. std::list *cookieListPointer = new std::list; + double defaultZoomFactor = 1.00; QString domainSettingsName = QStringLiteral(""); + QIcon favoriteIcon = QIcon::fromTheme(QStringLiteral("globe")); bool findCaseSensitive = false; QString findString = QStringLiteral(""); QWebEngineFindTextResult findTextResult = QWebEngineFindTextResult(); + bool isLoading = false; int loadProgressInt = -1; bool localStorageEnabled = false; @@ -48,6 +52,7 @@ public: signals: // The signals. + void displayHttpPingBlockedDialog(const QString &httpPingUrl) const; void updateCookiesAction(const int numberOfCookies) const; void updateUi(const PrivacyWebEngineView *privacyWebEngineViewPointer) const; @@ -59,6 +64,7 @@ public Q_SLOTS: private Q_SLOTS: // The private slots. void applyDomainSettingsWithoutReloading(const QString &hostname); + void displayHttpPingDialog(const QString &httpPingUrl) const; private: // The private variables.