summaryrefslogtreecommitdiff
path: root/noncore/applets/zkbapplet/zkbapplet.h
Side-by-side diff
Diffstat (limited to 'noncore/applets/zkbapplet/zkbapplet.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/applets/zkbapplet/zkbapplet.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/noncore/applets/zkbapplet/zkbapplet.h b/noncore/applets/zkbapplet/zkbapplet.h
new file mode 100644
index 0000000..fcf03b5
--- a/dev/null
+++ b/noncore/applets/zkbapplet/zkbapplet.h
@@ -0,0 +1,23 @@
+#include "qpe/taskbarappletinterface.h"
+
+#ifndef ZKBAPPLET_H
+#define ZKBAPPLET_H
+
+class ZkbWidget;
+
+class ZkbApplet : public TaskbarAppletInterface {
+public:
+ ZkbApplet();
+ virtual ~ZkbApplet();
+
+ QRESULT queryInterface(const QUuid&, QUnknownInterface**);
+ Q_REFCOUNT
+
+ virtual QWidget* applet(QWidget*);
+ virtual int position() const;
+
+protected:
+ ZkbWidget* app;
+};
+
+#endif