blob: a4cbee4110345b55b0bc5e7ab6815d31b0be4e92 (
plain)
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
|
#ifndef SIMPLEALARMDAEMONAPPLET_H
#define SIMPLEALARMDAEMONAPPLET_H
#include <qpe/taskbarappletinterface.h>
class SimpleAlarmDaemonImpl;
class ScreenshotApplet;
class SimpleAlarmDaemonApplet : public TaskbarAppletInterface
{
public:
SimpleAlarmDaemonApplet();
virtual ~SimpleAlarmDaemonApplet();
QRESULT queryInterface( const QUuid&, QUnknownInterface** );
Q_REFCOUNT
virtual QWidget *applet( QWidget *parent );
virtual int position() const;
private:
SimpleAlarmDaemonImpl *mApplet;
ulong ref;
};
#endif
|