blob: 61309614c82bcab1ff35dbc5c03a77ebd4dbf894 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
|