summaryrefslogtreecommitdiff
path: root/noncore/applets/notesapplet/notesappletimpl.h
authorllornkcor <llornkcor>2002-09-22 00:36:02 (UTC)
committer llornkcor <llornkcor>2002-09-22 00:36:02 (UTC)
commitaf1e2665f9d7b6ad8b10142e6a432fd1e6aa0c9d (patch) (side-by-side diff)
tree1c1f388a8b2ae4f81fc60469688e851d4509312b /noncore/applets/notesapplet/notesappletimpl.h
parentd60625b5551f26cdc35f7b2497ab538de859537d (diff)
downloadopie-af1e2665f9d7b6ad8b10142e6a432fd1e6aa0c9d.zip
opie-af1e2665f9d7b6ad8b10142e6a432fd1e6aa0c9d.tar.gz
opie-af1e2665f9d7b6ad8b10142e6a432fd1e6aa0c9d.tar.bz2
opienotes
Diffstat (limited to 'noncore/applets/notesapplet/notesappletimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/notesapplet/notesappletimpl.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/noncore/applets/notesapplet/notesappletimpl.h b/noncore/applets/notesapplet/notesappletimpl.h
new file mode 100644
index 0000000..add9865
--- a/dev/null
+++ b/noncore/applets/notesapplet/notesappletimpl.h
@@ -0,0 +1,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