1 | // Copyright (C) 2020 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #ifndef QWAYLANDQTTEXTINPUTMETHODMANAGER_H |
5 | #define QWAYLANDQTTEXTINPUTMETHODMANAGER_H |
6 | |
7 | #include <QtWaylandCompositor/QWaylandCompositorExtension> |
8 | |
9 | #include <QtCore/QSize> |
10 | |
11 | QT_BEGIN_NAMESPACE |
12 | |
13 | class QWaylandQtTextInputMethodManagerPrivate; |
14 | |
15 | class Q_WAYLANDCOMPOSITOR_EXPORT QWaylandQtTextInputMethodManager : public QWaylandCompositorExtensionTemplate<QWaylandQtTextInputMethodManager> |
16 | { |
17 | Q_OBJECT |
18 | Q_DECLARE_PRIVATE(QWaylandQtTextInputMethodManager) |
19 | public: |
20 | QWaylandQtTextInputMethodManager(); |
21 | QWaylandQtTextInputMethodManager(QWaylandCompositor *compositor); |
22 | |
23 | void initialize() override; |
24 | |
25 | static const struct wl_interface *interface(); |
26 | static QByteArray interfaceName(); |
27 | }; |
28 | |
29 | QT_END_NAMESPACE |
30 | |
31 | #endif // QWAYLANDQTTEXTINPUTMETHODMANAGER_H |
32 | |