summaryrefslogtreecommitdiff
path: root/noncore/applets/notesapplet/notesappletimpl.h
blob: add9865b7260c9f246bb2beb55a7747903c02b2b (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
28
29
30
31
32
33
34
35
36
/**********************************************************************
** Copyright (C) 2002 L.J. Potter <llornkcor@handhelds.org>
**
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
**
**********************************************************************/
#ifndef NOTESAPPLETIMPL_H
#define NOTESAPPLETIMPL_H

#include <qpe/taskbarappletinterface.h>

class NotesApplet;

class NotesAppletImpl : public TaskbarAppletInterface
{
public:
    NotesAppletImpl();
    virtual ~NotesAppletImpl();

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

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

private:
    NotesApplet *notes;
    ulong ref;
};

#endif