blob: e6ce21d3414b7d177a895b17ca5e5ee719a85d88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QWAYLANDINPUTCONTEXT_H
#define QWAYLANDINPUTCONTEXT_H
//
// 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.
//
#include <qpa/qplatforminputcontext.h>
#include <QPointer>
#include "qwaylandtextinputinterface_p.h"
#include <qtwaylandclientglobal_p.h>
#if QT_CONFIG(xkbcommon)
#include <xkbcommon/xkbcommon-compose.h>
#endif
struct wl_callback;
struct wl_callback_listener;
QT_BEGIN_NAMESPACE
namespace QtWaylandClient {
class QWaylandDisplay;
class QWaylandInputContext : public QPlatformInputContext
{
Q_OBJECT
public:
explicit QWaylandInputContext(QWaylandDisplay *display);
~QWaylandInputContext() override;
bool isValid() const override;
void reset() override;
void commit() override;
void update(Qt::InputMethodQueries) override;
void invokeAction(QInputMethod::Action, int cursorPosition) override;
void showInputPanel() override;
void hideInputPanel() override;
bool isInputPanelVisible() const override;
QRectF keyboardRect() const override;
QLocale locale() const override;
Qt::LayoutDirection inputDirection() const override;
void setFocusObject(QObject *object) override;
#if QT_CONFIG(xkbcommon)
bool filterEvent(const QEvent *event) override;
// This invokable is called from QXkbCommon::setXkbContext().
Q_INVOKABLE void setXkbContext(struct xkb_context *context) { m_XkbContext = context; }
#endif
private:
QWaylandTextInputInterface *textInput() const;
QWaylandDisplay *mDisplay = nullptr;
QPointer<QWindow> mCurrentWindow;
#if QT_CONFIG(xkbcommon)
void ensureInitialized();
bool m_initialized = false;
QObject *m_focusObject = nullptr;
xkb_compose_table *m_composeTable = nullptr;
xkb_compose_state *m_composeState = nullptr;
struct xkb_context *m_XkbContext = nullptr;
#endif
};
}
QT_END_NAMESPACE
#endif // QWAYLANDINPUTCONTEXT_H
|