/**************************************************************************** ** ** Copyright (C) 2021 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Virtual Keyboard module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ****************************************************************************/ #ifndef THAIINPUTMETHOD_H #define THAIINPUTMETHOD_H #ifdef QT_HUNSPELLINPUTMETHOD_LIB #include #define ThaiInputMethodBase HunspellInputMethod #else #include #define ThaiInputMethodBase QVirtualKeyboardAbstractInputMethod #endif QT_BEGIN_NAMESPACE namespace QtVirtualKeyboard { class ThaiInputMethodPrivate; class ThaiInputMethod : public ThaiInputMethodBase { Q_OBJECT Q_DECLARE_PRIVATE(ThaiInputMethod) public: explicit ThaiInputMethod(QObject *parent = nullptr); #ifndef QT_HUNSPELLINPUTMETHOD_LIB QList inputModes(const QString &locale) override; bool setInputMode(const QString &locale, QVirtualKeyboardInputEngine::InputMode inputMode) override; bool setTextCase(QVirtualKeyboardInputEngine::TextCase textCase) override; #endif bool keyEvent(Qt::Key key, const QString &text, Qt::KeyboardModifiers modifiers) override; }; } // namespace QtVirtualKeyboard QT_END_NAMESPACE #endif