xref: /OK3568_Linux_fs/app/forlinx/DWKeyboard/include/pinyininputmethod.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /****************************************************************************
2*4882a593Smuzhiyun **
3*4882a593Smuzhiyun ** Copyright (C) 2016 The Qt Company Ltd.
4*4882a593Smuzhiyun ** Contact: https://www.qt.io/licensing/
5*4882a593Smuzhiyun **
6*4882a593Smuzhiyun ** This file is part of the Qt Virtual Keyboard module of the Qt Toolkit.
7*4882a593Smuzhiyun **
8*4882a593Smuzhiyun ** $QT_BEGIN_LICENSE:GPL$
9*4882a593Smuzhiyun ** Commercial License Usage
10*4882a593Smuzhiyun ** Licensees holding valid commercial Qt licenses may use this file in
11*4882a593Smuzhiyun ** accordance with the commercial license agreement provided with the
12*4882a593Smuzhiyun ** Software or, alternatively, in accordance with the terms contained in
13*4882a593Smuzhiyun ** a written agreement between you and The Qt Company. For licensing terms
14*4882a593Smuzhiyun ** and conditions see https://www.qt.io/terms-conditions. For further
15*4882a593Smuzhiyun ** information use the contact form at https://www.qt.io/contact-us.
16*4882a593Smuzhiyun **
17*4882a593Smuzhiyun ** GNU General Public License Usage
18*4882a593Smuzhiyun ** Alternatively, this file may be used under the terms of the GNU
19*4882a593Smuzhiyun ** General Public License version 3 or (at your option) any later version
20*4882a593Smuzhiyun ** approved by the KDE Free Qt Foundation. The licenses are as published by
21*4882a593Smuzhiyun ** the Free Software Foundation and appearing in the file LICENSE.GPL3
22*4882a593Smuzhiyun ** included in the packaging of this file. Please review the following
23*4882a593Smuzhiyun ** information to ensure the GNU General Public License requirements will
24*4882a593Smuzhiyun ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
25*4882a593Smuzhiyun **
26*4882a593Smuzhiyun ** $QT_END_LICENSE$
27*4882a593Smuzhiyun **
28*4882a593Smuzhiyun ****************************************************************************/
29*4882a593Smuzhiyun 
30*4882a593Smuzhiyun #ifndef PINYININPUTMETHOD_H
31*4882a593Smuzhiyun #define PINYININPUTMETHOD_H
32*4882a593Smuzhiyun 
33*4882a593Smuzhiyun #include "abstractinputmethod.h"
34*4882a593Smuzhiyun #include "dwkeyboard_global.h"
35*4882a593Smuzhiyun 
36*4882a593Smuzhiyun namespace QtVirtualKeyboard {
37*4882a593Smuzhiyun 
38*4882a593Smuzhiyun class PinyinInputMethodPrivate;
39*4882a593Smuzhiyun 
40*4882a593Smuzhiyun class DWKEYBOARDSHARED_EXPORT PinyinInputMethod : public AbstractInputMethod
41*4882a593Smuzhiyun {
42*4882a593Smuzhiyun     Q_OBJECT
43*4882a593Smuzhiyun     Q_DECLARE_PRIVATE(PinyinInputMethod)
44*4882a593Smuzhiyun 
45*4882a593Smuzhiyun public:
46*4882a593Smuzhiyun     explicit PinyinInputMethod(QObject *parent = 0);
47*4882a593Smuzhiyun     ~PinyinInputMethod();
48*4882a593Smuzhiyun 
49*4882a593Smuzhiyun     QList<InputEngine::InputMode> inputModes(const QString &locale);
50*4882a593Smuzhiyun     bool setInputMode(const QString &locale, InputEngine::InputMode inputMode);
51*4882a593Smuzhiyun     bool setTextCase(InputEngine::TextCase textCase);
52*4882a593Smuzhiyun 
53*4882a593Smuzhiyun     bool keyEvent(Qt::Key key, const QString &text, Qt::KeyboardModifiers modifiers);
54*4882a593Smuzhiyun 
55*4882a593Smuzhiyun     QList<SelectionListModel::Type> selectionLists();
56*4882a593Smuzhiyun     int selectionListItemCount(SelectionListModel::Type type);
57*4882a593Smuzhiyun     QVariant selectionListData(SelectionListModel::Type type, int index, int role);
58*4882a593Smuzhiyun     void selectionListItemSelected(SelectionListModel::Type type, int index);
59*4882a593Smuzhiyun 
60*4882a593Smuzhiyun     void reset();
61*4882a593Smuzhiyun     void update();
62*4882a593Smuzhiyun };
63*4882a593Smuzhiyun 
64*4882a593Smuzhiyun } // namespace QtVirtualKeyboard
65*4882a593Smuzhiyun 
66*4882a593Smuzhiyun #endif // PINYININPUTMETHOD_H
67