diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-08-22 21:23:22 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-08-22 21:23:22 +0200 |
commit | 4a732b97f634399e5c4859684a25d06d4a830071 (patch) | |
tree | 2c89168052dd7235db040b5acd1b16e5ad998b70 /src/webview.h | |
parent | Merge commit 'pano/string-fixes' (diff) | |
parent | Some stupid fixes on style, spaces and some comments added (diff) | |
download | rekonq-4a732b97f634399e5c4859684a25d06d4a830071.tar.xz |
Merge branch 'OneUrlBar2'
Diffstat (limited to 'src/webview.h')
-rw-r--r-- | src/webview.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/webview.h b/src/webview.h index 5a2638b8..4f283aae 100644 --- a/src/webview.h +++ b/src/webview.h @@ -28,6 +28,7 @@ #ifndef WEBVIEW_H #define WEBVIEW_H + // KDE Includes #include <KUrl> @@ -48,6 +49,7 @@ public: WebPage *page(); KUrl url() const; QString lastStatusBarText() const; + int progress(); signals: // switching tabs @@ -67,10 +69,12 @@ protected: private slots: void setStatusBarText(const QString &string); void slotSearch(); - + void slotUpdateProgress(int progress); + void slotLoadFinished(bool); + private: WebPage *m_page; - + int m_progress; QString m_statusBarText; }; |