diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-03-22 02:46:24 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-03-22 02:46:24 +0100 |
commit | 6a34b95f02848f75057f5e913e500115643fde5d (patch) | |
tree | ad739ca5320a16b3d007760e9a71619ba810b372 /src/webpage.h | |
parent | Downloads Page (diff) | |
download | rekonq-6a34b95f02848f75057f5e913e500115643fde5d.tar.xz |
First SSL support.
checking metadata missing..
Diffstat (limited to 'src/webpage.h')
-rw-r--r-- | src/webpage.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/webpage.h b/src/webpage.h index 76927725..42d5f586 100644 --- a/src/webpage.h +++ b/src/webpage.h @@ -37,6 +37,7 @@ #include "rekonqprivate_export.h" #include "protocolhandler.h" #include "newtabpage.h" +#include "websslinfo.h" // KDE Includes #include <KWebPage> @@ -57,6 +58,8 @@ public: explicit WebPage(QWidget *parent = 0); ~WebPage(); + void showSSLInfo(); + public slots: void manageNetworkErrors(QNetworkReply *reply); virtual void downloadRequest(const QNetworkRequest &request); @@ -78,7 +81,9 @@ private slots: private: QString errorPage(QNetworkReply *); - ProtocolHandler m_protHandler; + ProtocolHandler _protHandler; + + WebSslInfo _sslInfo; }; #endif |