diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-12-26 18:14:26 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-12-26 18:14:26 +0000 |
| commit | 873b67f010d427b16ce575ef77b9ef7873a6d44a (patch) | |
| tree | 4096fecceaab3f1319f74109a91e2e3df1a78da6 /src/plugins/General/notifier/popupwidget.h | |
| parent | 9880f409f19df23715793f120bfe108eb978b57a (diff) | |
| download | qmmp-873b67f010d427b16ce575ef77b9ef7873a6d44a.tar.gz qmmp-873b67f010d427b16ce575ef77b9ef7873a6d44a.tar.bz2 qmmp-873b67f010d427b16ce575ef77b9ef7873a6d44a.zip | |
notification plugin: volume change notification, transparency settings
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@712 90c681e8-e032-0410-971d-27865f9a5e38
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; }; |
