summaryrefslogtreecommitdiffabout
path: root/kalarmd/simplealarmdaemonapplet.h
authorzautrix <zautrix>2004-06-26 19:01:18 (UTC)
committer zautrix <zautrix>2004-06-26 19:01:18 (UTC)
commitb9aad1f15dc600e4dbe4c62d3fcced6363188ba3 (patch) (unidiff)
tree2c3d4004fb21c72cba65793859f9bcd8ffd3a49c /kalarmd/simplealarmdaemonapplet.h
downloadkdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.zip
kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.gz
kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.bz2
Initial revision
Diffstat (limited to 'kalarmd/simplealarmdaemonapplet.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kalarmd/simplealarmdaemonapplet.h26
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
6class SimpleAlarmDaemonImpl;
7class ScreenshotApplet;
8
9class 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