diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-08-03 15:52:32 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-12-10 02:48:04 +0100 |
commit | f6b940c5c4d76db3155bd99a2e23c6009e17309d (patch) | |
tree | 11bfd7b90851f79d15ba45458fbff053a17fa6f0 /src/webwindow/webwindow.h | |
parent | Implementing the webwindow as special widget (diff) | |
download | rekonq-f6b940c5c4d76db3155bd99a2e23c6009e17309d.tar.xz |
link hovered messages restored :)
Diffstat (limited to 'src/webwindow/webwindow.h')
-rw-r--r-- | src/webwindow/webwindow.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/webwindow/webwindow.h b/src/webwindow/webwindow.h index c727ecf0..695c7393 100644 --- a/src/webwindow/webwindow.h +++ b/src/webwindow/webwindow.h @@ -50,7 +50,9 @@ class RekonqMenu; class KMenu; class KToolBar; +class QLabel; class QPixmap; +class QTimer; class QUrl; @@ -100,6 +102,11 @@ private Q_SLOTS: void openNext(Qt::MouseButtons = Qt::LeftButton, Qt::KeyboardModifiers = Qt::NoModifier); void updateHistoryActions(); + /** + * Notifies a message in a popup + */ + void notifyMessage(const QString &msg); + Q_SIGNALS: void titleChanged(QString); @@ -125,6 +132,9 @@ private: RekonqMenu *m_rekonqMenu; + QLabel *m_popup; + QTimer *m_hidePopupTimer; + KActionCollection *_ac; }; |