diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-05-05 15:46:28 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-05-05 15:46:28 +0200 |
commit | 1830a45a0e1ae8f257667899a6c34f32545dbd62 (patch) | |
tree | c5a94ad37b50c484c7434e6dde01b1ece43672e4 /src/mainwindow.h | |
parent | if the url of an item have the same domaine name as the typed string, it is m... (diff) | |
download | rekonq-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/mainwindow.h')
-rw-r--r-- | src/mainwindow.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index 6ca4cbfb..55e3f8cf 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -47,6 +47,7 @@ class BookmarksPanel; class WebInspectorPanel; class WebTab; class MainView; +class NetworkAnalyzerPanel; class KAction; class KPassivePopup; @@ -159,6 +160,8 @@ private slots: void setEncoding(QAction *); void populateEncodingMenu(); + void enableNetworkAnalysis(bool); + private: MainView *m_view; FindBar *m_findBar; @@ -166,7 +169,8 @@ private: HistoryPanel *m_historyPanel; BookmarksPanel *m_bookmarksPanel; WebInspectorPanel *m_webInspectorPanel; - + NetworkAnalyzerPanel *m_analyzerPanel; + KAction *m_stopReloadAction; KMenu *m_historyBackMenu; KMenu *m_encodingMenu; |