Diffstat (limited to 'kalarmd/simplealarmdaemonapplet.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kalarmd/simplealarmdaemonapplet.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/kalarmd/simplealarmdaemonapplet.h b/kalarmd/simplealarmdaemonapplet.h new file mode 100644 index 0000000..a4cbee4 --- a/dev/null +++ b/kalarmd/simplealarmdaemonapplet.h | |||
@@ -0,0 +1,26 @@ | |||
1 | #ifndef SIMPLEALARMDAEMONAPPLET_H | ||
2 | #define SIMPLEALARMDAEMONAPPLET_H | ||
3 | |||
4 | #include <qpe/taskbarappletinterface.h> | ||
5 | |||
6 | class SimpleAlarmDaemonImpl; | ||
7 | class ScreenshotApplet; | ||
8 | |||
9 | class SimpleAlarmDaemonApplet : public TaskbarAppletInterface | ||
10 | { | ||
11 | public: | ||
12 | SimpleAlarmDaemonApplet(); | ||
13 | virtual ~SimpleAlarmDaemonApplet(); | ||
14 | |||
15 | QRESULT queryInterface( const QUuid&, QUnknownInterface** ); | ||
16 | Q_REFCOUNT | ||
17 | |||
18 | virtual QWidget *applet( QWidget *parent ); | ||
19 | virtual int position() const; | ||
20 | |||
21 | private: | ||
22 | SimpleAlarmDaemonImpl *mApplet; | ||
23 | ulong ref; | ||
24 | }; | ||
25 | |||
26 | #endif | ||