summaryrefslogtreecommitdiff
path: root/src/webpage.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-05-05 15:46:28 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-05-05 15:46:28 +0200
commit1830a45a0e1ae8f257667899a6c34f32545dbd62 (patch)
treec5a94ad37b50c484c7434e6dde01b1ece43672e4 /src/webpage.h
parentif the url of an item have the same domaine name as the typed string, it is m... (diff)
downloadrekonq-1830a45a0e1ae8f257667899a6c34f32545dbd62.tar.xz
This commit implements another dockwidget for rekonq, containing a
network analyzer. Its code is based on previous implementation of Web Inspector Dock and on Richmoore example about QNAM proxy. Many thanks for :)
Diffstat (limited to 'src/webpage.h')
-rw-r--r--src/webpage.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/webpage.h b/src/webpage.h
index c729a883..74695f35 100644
--- a/src/webpage.h
+++ b/src/webpage.h
@@ -60,6 +60,9 @@ public:
explicit WebPage(QWidget *parent = 0);
~WebPage();
+ bool hasNetworkAnalyzerEnabled() const;
+ void enableNetworkAnalyzer(bool);
+
public slots:
virtual void downloadRequest(const QNetworkRequest &request);
void downloadAllContentsWithKGet(QPoint);
@@ -84,6 +87,8 @@ private:
ProtocolHandler _protHandler;
WebSslInfo _sslInfo;
+
+ bool _networkAnalyzer;
};
#endif