KGuiAddons

kmodifierkeyinfoprovider_wayland.cpp
1/*
2 SPDX-FileCopyrightText: 2019 Aleix Pol Gonzalez <aleixpol@kde.org>
3 SPDX-FileCopyrightText: 2022 Nicolas Fella <nicolas.fella@gmx.de>
4
5 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
6*/
7
8#include "kmodifierkeyinfoprovider_wayland.h"
9#include <QDebug>
10#include <QGuiApplication>
11
12#include <QWaylandClientExtensionTemplate>
13#include <wayland-client-core.h>
14
15#include "qwayland-keystate.h"
16
17class KeyState : public QWaylandClientExtensionTemplate<KeyState>, public QtWayland::org_kde_kwin_keystate
18{
19 Q_OBJECT
20public:
21 KeyState()
22 : QWaylandClientExtensionTemplate<KeyState>(4)
23 {
24 }
25
26 ~KeyState()
27 {
28 if (isInitialized() && qGuiApp) {
29 if (QtWayland::org_kde_kwin_keystate::version() >= ORG_KDE_KWIN_KEYSTATE_DESTROY_SINCE_VERSION) {
30 destroy();
31 } else {
32 wl_proxy_destroy(reinterpret_cast<struct wl_proxy *>(object()));
33 }
34 }
35 }
36
37 void org_kde_kwin_keystate_stateChanged(uint32_t key, uint32_t state) override
38 {
39 Q_EMIT stateChanged(toKey(static_cast<KeyState::key>(key)), toState(static_cast<KeyState::state>(state)));
40 }
41
42 KModifierKeyInfoProvider::ModifierState toState(KeyState::state state)
43 {
44 switch (state) {
45 case KeyState::state::state_unlocked:
46 return KModifierKeyInfoProvider::Nothing;
47 case KeyState::state::state_locked:
48 return KModifierKeyInfoProvider::Locked;
49 case KeyState::state::state_latched:
50 return KModifierKeyInfoProvider::Latched;
51 }
52 Q_UNREACHABLE();
53 return KModifierKeyInfoProvider::Nothing;
54 }
55
56 Qt::Key toKey(KeyState::key key)
57 {
58 switch (key) {
59 case KeyState::key::key_capslock:
60 return Qt::Key_CapsLock;
61 case KeyState::key::key_numlock:
62 return Qt::Key_NumLock;
63 case KeyState::key::key_scrolllock:
64 return Qt::Key_ScrollLock;
65 }
66 Q_UNREACHABLE();
67 return {};
68 }
69
70 Q_SIGNAL void stateChanged(Qt::Key key, KModifierKeyInfoProvider::ModifierState state);
71};
72
73KModifierKeyInfoProviderWayland::KModifierKeyInfoProviderWayland()
74{
75 m_keystate = new KeyState;
76
77 QObject::connect(m_keystate, &KeyState::activeChanged, this, [this]() {
78 if (m_keystate->isActive()) {
79 m_keystate->fetchStates();
80 }
81 });
82
83 connect(m_keystate, &KeyState::stateChanged, this, &KModifierKeyInfoProviderWayland::stateUpdated);
84
85 stateUpdated(Qt::Key_CapsLock, KModifierKeyInfoProvider::Nothing);
86 stateUpdated(Qt::Key_NumLock, KModifierKeyInfoProvider::Nothing);
87 stateUpdated(Qt::Key_ScrollLock, KModifierKeyInfoProvider::Nothing);
88}
89
90KModifierKeyInfoProviderWayland::~KModifierKeyInfoProviderWayland()
91{
92 delete m_keystate;
93}
94
95bool KModifierKeyInfoProviderWayland::setKeyLatched(Qt::Key /*key*/, bool /*latched*/)
96{
97 return false;
98}
99
100bool KModifierKeyInfoProviderWayland::setKeyLocked(Qt::Key /*key*/, bool /*locked*/)
101{
102 return false;
103}
104
105#include "kmodifierkeyinfoprovider_wayland.moc"
106#include "moc_kmodifierkeyinfoprovider_wayland.cpp"
QMetaObject::Connection connect(const QObject *sender, PointerToMemberFunction signal, Functor functor)
QFuture< ArgsType< Signal > > connect(Sender *sender, Signal signal)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:40 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.