summaryrefslogtreecommitdiff
path: root/core/applets/multikeyapplet/multikeyappletimpl.h
Unidiff
Diffstat (limited to 'core/applets/multikeyapplet/multikeyappletimpl.h') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/multikeyapplet/multikeyappletimpl.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/core/applets/multikeyapplet/multikeyappletimpl.h b/core/applets/multikeyapplet/multikeyappletimpl.h
new file mode 100644
index 0000000..c77e347
--- a/dev/null
+++ b/core/applets/multikeyapplet/multikeyappletimpl.h
@@ -0,0 +1,40 @@
1/**********************************************************************
2** Copyright (C) 2004 Anton Kachalov mouse@altlinux.ru
3** All rights reserved.
4**
5** This file may be distributed and/or modified under the terms of the
6** GNU General Public License version 2 as published by the Free Software
7** Foundation and appearing in the file LICENSE.GPL included in the
8** packaging of this file.
9**
10** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
11** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
12**
13**********************************************************************/
14#ifndef __MULTIKEYAPPLETIMPL_H__
15#define __MULTIKEYAPPLETIMPL_H__
16
17#include <qpe/taskbarappletinterface.h>
18
19class Multikey;
20
21class MultikeyAppletImpl : public TaskbarAppletInterface
22{
23public:
24 MultikeyAppletImpl();
25 virtual ~MultikeyAppletImpl();
26
27#ifndef QT_NO_COMPONENT
28 QRESULT queryInterface( const QUuid&, QUnknownInterface** );
29 Q_REFCOUNT
30#endif
31
32 virtual QWidget *applet( QWidget *parent );
33 virtual int position() const;
34
35private:
36 Multikey *kbd;
37 ulong ref;
38};
39
40#endif /* __MULTIKEYAPPLETIMPL_H__ */