diff options
Diffstat (limited to 'src/plugins/General/kdenotify/kdenotify.h')
| -rw-r--r-- | src/plugins/General/kdenotify/kdenotify.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/plugins/General/kdenotify/kdenotify.h b/src/plugins/General/kdenotify/kdenotify.h new file mode 100644 index 000000000..61309614c --- /dev/null +++ b/src/plugins/General/kdenotify/kdenotify.h @@ -0,0 +1,27 @@ +#ifndef KDENOTIFY_H +#define KDENOTIFY_H + +#include "qmmpui/general.h" +#include "qmmp/qmmp.h" + +class QDBusInterface; + +class KdeNotify : public General +{ + Q_OBJECT; +public: + KdeNotify(QObject *parent = 0); + ~KdeNotify(); + +private: + QDBusInterface *notifier; + int m_NotifyDelay; + +private slots: + void showMetaData(); + QString totalTimeString(); + + +}; + +#endif // KDENOTIFY_H |
