summaryrefslogtreecommitdiff
path: root/noncore/net/mail/taskbarapplet/mailappletimpl.h
blob: 4f27eb3a097f6fdafe2d4179a87a3b686b8c6731 (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
27
#ifndef MAILAPPLETIMPL_H
#define MAILAPPLETIMPL_H

#include <qpe/taskbarappletinterface.h>

class MailApplet;

class MailAppletImpl : public TaskbarAppletInterface {

public:
	MailAppletImpl();
	virtual ~MailAppletImpl();

	QRESULT queryInterface( const QUuid &uuid, QUnknownInterface **iface );
	Q_REFCOUNT

	virtual QWidget *applet( QWidget *parent );
	virtual int position() const;

private:
	MailApplet *m_mailApplet;
	ulong ref;

};

#endif