summaryrefslogtreecommitdiff
path: root/inputmethods/unikeyboard/unikeyboardimpl.h
Unidiff
Diffstat (limited to 'inputmethods/unikeyboard/unikeyboardimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/unikeyboard/unikeyboardimpl.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/inputmethods/unikeyboard/unikeyboardimpl.h b/inputmethods/unikeyboard/unikeyboardimpl.h
new file mode 100644
index 0000000..97b1ff6
--- a/dev/null
+++ b/inputmethods/unikeyboard/unikeyboardimpl.h
@@ -0,0 +1,49 @@
1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3**
4** This file is part of Qtopia Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20#ifndef UNIKEYBOARDIMPL_H
21#define UNIKEYBOARDIMPL_H
22
23#include <qpe/inputmethodinterface.h>
24
25class UniKeyboard;
26class QPixmap;
27
28class UniKeyboardImpl : public InputMethodInterface
29{
30public:
31 UniKeyboardImpl();
32 virtual ~UniKeyboardImpl();
33
34 QRESULT queryInterface( const QUuid&, QUnknownInterface** );
35 Q_REFCOUNT
36
37 virtual QWidget *inputMethod( QWidget *parent, Qt::WFlags f );
38 virtual void resetState();
39 virtual QPixmap *icon();
40 virtual QString name();
41 virtual void onKeyPress( QObject *receiver, const char *slot );
42
43private:
44 UniKeyboard *input;
45 QPixmap *icn;
46 ulong ref;
47};
48
49#endif