summaryrefslogtreecommitdiff
path: root/src/webwindow/webwindow.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-07-25 17:30:52 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-12-10 02:48:04 +0100
commit197455a6044b66bdfdd479f07f4ad52649816998 (patch)
treeaac283db573bc86c5a9a1c9e8908741a7cc0c448 /src/webwindow/webwindow.h
parentSet window icon & title (diff)
downloadrekonq-197455a6044b66bdfdd479f07f4ad52649816998.tar.xz
Re-add && Re-view tab preview popup
Diffstat (limited to 'src/webwindow/webwindow.h')
-rw-r--r--src/webwindow/webwindow.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/webwindow/webwindow.h b/src/webwindow/webwindow.h
index 189f111f..fdcb0383 100644
--- a/src/webwindow/webwindow.h
+++ b/src/webwindow/webwindow.h
@@ -51,10 +51,17 @@ public:
QPixmap tabPreview(int width, int height);
+ bool isLoading();
+
+private:
+ void init();
+
private Q_SLOTS:
void checkLoadUrl();
void setUrlText(const QUrl &);
+ void checkLoadProgress(int);
+
Q_SIGNALS:
void titleChanged(QString);
@@ -65,6 +72,8 @@ Q_SIGNALS:
void pageCreated(WebPage *);
private:
+ int _progress;
+
QWebView *_view;
QLineEdit *_edit;
};