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