diff options
Diffstat (limited to 'src/plugins/General/notifier/popupwidget.h')
| -rw-r--r-- | src/plugins/General/notifier/popupwidget.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/plugins/General/notifier/popupwidget.h b/src/plugins/General/notifier/popupwidget.h index cfda202a5..989b37bd7 100644 --- a/src/plugins/General/notifier/popupwidget.h +++ b/src/plugins/General/notifier/popupwidget.h @@ -23,6 +23,9 @@ #include <QWidget> #include <QFrame> +class QTimer; +class QLabel; + /** @author Ilya Kotov <forkotov02@hotmail.ru> */ @@ -47,7 +50,18 @@ public: CENTER }; -virtual void mousePressEvent (QMouseEvent *); + void showMetaData(); + void showVolume(int); + +protected: + virtual void mousePressEvent (QMouseEvent *); + +private: + void updatePosition(); + QTimer *m_timer; + QLabel *m_label1; + QLabel *m_label2; + uint m_pos; }; |
