/**************************************************************************** ** ** Copyright (C) 2020 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtWaylandCompositor module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL$ ** 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. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 or (at your option) any later version ** approved by the KDE Free Qt Foundation. The licenses are as published by ** the Free Software Foundation and appearing in the file LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QWAYLANDQTTEXTINPUTMETHOD_P_H #define QWAYLANDQTTEXTINPUTMETHOD_P_H #include "qwaylandqttextinputmethod.h" #include #include #include #include // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // QT_BEGIN_NAMESPACE class QWaylandCompositor; class QWaylandSurface; class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandQtTextInputMethodPrivate : public QWaylandCompositorExtensionPrivate, public QtWaylandServer::qt_text_input_method_v1 { Q_DECLARE_PUBLIC(QWaylandQtTextInputMethod) public: explicit QWaylandQtTextInputMethodPrivate(QWaylandCompositor *compositor); QWaylandCompositor *compositor; QWaylandSurface *focusedSurface = nullptr; Resource *resource = nullptr; QHash enabledSurfaces; QWaylandDestroyListener focusDestroyListener; bool inputPanelVisible = false; bool waitingForSync = false; Qt::InputMethodQueries updatingQueries; Qt::InputMethodHints hints; QString surroundingText; QString preferredLanguage; QRect cursorRectangle; int cursorPosition = 0; int anchorPosition = 0; int absolutePosition = 0; int surroundingTextOffset = 0; private: void text_input_method_v1_enable(Resource *resource, struct ::wl_resource *surface) override; void text_input_method_v1_disable(Resource *resource, struct ::wl_resource *surface) override; void text_input_method_v1_destroy(Resource *resource) override; void text_input_method_v1_reset(Resource *resource) override; void text_input_method_v1_commit(Resource *resource) override; void text_input_method_v1_show_input_panel(Resource *resource) override; void text_input_method_v1_hide_input_panel(Resource *resource) override; void text_input_method_v1_update_hints(Resource *resource, int32_t hints) override; void text_input_method_v1_update_surrounding_text(Resource *resource, const QString &surroundingText, int32_t surroundingTextOffset) override; void text_input_method_v1_update_anchor_position(Resource *resource, int32_t anchorPosition) override; void text_input_method_v1_update_cursor_position(Resource *resource, int32_t cursorPosition) override; void text_input_method_v1_update_absolute_position(Resource *resource, int32_t absolutePosition) override; void text_input_method_v1_invoke_action(Resource *resource, int32_t type, int32_t cursorPosition) override; void text_input_method_v1_update_preferred_language(Resource *resource, const QString &preferredLanguage) override; void text_input_method_v1_update_cursor_rectangle(Resource *resource, int32_t x, int32_t y, int32_t width, int32_t height) override; void text_input_method_v1_start_update(Resource *resource, int32_t queries) override; void text_input_method_v1_end_update(Resource *resource) override; void text_input_method_v1_acknowledge_input_method(Resource *resource) override; }; QT_END_NAMESPACE #endif // QWAYLANDQTTEXTINPUTMETHOD_P_H