summaryrefslogtreecommitdiff
path: root/noncore/net/mail/taskbarapplet/mailappletimpl.h
blob: 480905313771dd17b927976b120a140fcb57273e (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