summaryrefslogtreecommitdiff
path: root/noncore/applets/zkbapplet/zkbapplet.h
blob: fcf03b59e272a6e80dae74012b345308ffd75602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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