1 /*
2 
3   Copyright (c) 2004-2005 Kazuki Ohta <mover@hct.zaq.ne.jp>
4   Copyright (c) 2005-2013 uim Project https://github.com/uim/uim
5 
6   All rights reserved.
7 
8   Redistribution and use in source and binary forms, with or without
9   modification, are permitted provided that the following conditions
10   are met:
11 
12   1. Redistributions of source code must retain the above copyright
13      notice, this list of conditions and the following disclaimer.
14   2. Redistributions in binary form must reproduce the above copyright
15      notice, this list of conditions and the following disclaimer in the
16      documentation and/or other materials provided with the distribution.
17   3. Neither the name of authors nor the names of its contributors
18      may be used to endorse or promote products derived from this software
19      without specific prior written permission.
20 
21   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
22   ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24   ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
25   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27   OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29   LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30   OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31   SUCH DAMAGE.
32 
33 */
34 #ifndef UIM_QT4_IMMODULE_PLUGIN_H
35 #define UIM_QT4_IMMODULE_PLUGIN_H
36 
37 #include <QtCore/QtGlobal>
38 #if QT_VERSION < 0x050000
39 # include <QtGui/QInputContextPlugin>
40 #else
41 # include <qpa/qplatforminputcontextplugin_p.h>
42 #endif
43 
44 class QStringList;
45 
46 class QUimInfoManager;
47 
48 #if QT_VERSION < 0x050000
49 class UimInputContextPlugin : public QInputContextPlugin
50 #else
51 class UimInputContextPlugin : public QPlatformInputContextPlugin
52 #endif
53 {
54     Q_OBJECT
55 #if QT_VERSION >= 0x050000
56     Q_PLUGIN_METADATA(IID
57         QPlatformInputContextFactoryInterface_iid
58         FILE "../../qt5/immodule/uim.json")
59 #endif
60 public:
61     UimInputContextPlugin();
62     ~UimInputContextPlugin();
63 
64     QStringList keys() const;
65 #if QT_VERSION < 0x050000
66     QInputContext *create( const QString &key );
67     QStringList languages( const QString &key );
68     QString displayName( const QString &key );
69     QString description( const QString &key );
70 #else
71     QPlatformInputContext *create( const QString &key,
72                                    const QStringList &paramList );
73 #endif
74 
75     static QUimInfoManager *getQUimInfoManager();
76 
77 protected:
78     void uimInit();
79     void uimQuit();
80 
81     QStringList createImList() const;
82 #if QT_VERSION < 0x050000
83     QStringList createLanguageList( const QString &key ) const;
84 #endif
85 
86     static QUimInfoManager *infoManager;
87     bool uimReady;
88 };
89 
90 #endif /* Not def: UIM_QT4_IMMODULE_PLUGIN_H */
91