Diffstat (limited to 'library/inputmethodinterface.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | library/inputmethodinterface.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/library/inputmethodinterface.h b/library/inputmethodinterface.h new file mode 100644 index 0000000..ae14218 --- a/dev/null +++ b/library/inputmethodinterface.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 | |||
21 | #ifndef INPUTMETHODINTERFACE_H | ||
22 | #define INPUTMETHODINTERFACE_H | ||
23 | |||
24 | #include <qpe/qcom.h> | ||
25 | |||
26 | #include <qnamespace.h> | ||
27 | #include <qstring.h> | ||
28 | |||
29 | #ifndef QT_NO_COMPONENT | ||
30 | // {637A8A14-AF98-41DA-969A-2BD16ECDA8C7} | ||
31 | # ifndef IID_InputMethod | ||
32 | # define IID_InputMethod QUuid( 0x637a8a14, 0xaf98, 0x41da, 0x96, 0x9a, 0x2b, 0xd1, 0x6e, 0xcd, 0xa8, 0xc7) | ||
33 | # endif | ||
34 | #endif | ||
35 | |||
36 | class QWidget; | ||
37 | class QPixmap; | ||
38 | class QObject; | ||
39 | |||
40 | struct InputMethodInterface : public QUnknownInterface | ||
41 | { | ||
42 | virtual QWidget *inputMethod( QWidget *parent, Qt::WFlags f ) = 0; | ||
43 | virtual void resetState() = 0; | ||
44 | virtual QPixmap *icon() = 0; | ||
45 | virtual QString name() = 0; | ||
46 | virtual void onKeyPress( QObject *receiver, const char *slot ) = 0; | ||
47 | }; | ||
48 | |||
49 | #endif | ||