You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.8 KiB
84 lines
1.8 KiB
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2013, 2016 Martin Gräßlin <mgraesslin@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
#ifndef KWIN_KEYBOARD_INPUT_H |
|
#define KWIN_KEYBOARD_INPUT_H |
|
|
|
#include "input.h" |
|
|
|
#include <QObject> |
|
#include <QPointF> |
|
#include <QPointer> |
|
|
|
#include <KSharedConfig> |
|
|
|
class QWindow; |
|
struct xkb_context; |
|
struct xkb_keymap; |
|
struct xkb_state; |
|
struct xkb_compose_table; |
|
struct xkb_compose_state; |
|
typedef uint32_t xkb_mod_index_t; |
|
typedef uint32_t xkb_led_index_t; |
|
typedef uint32_t xkb_keysym_t; |
|
typedef uint32_t xkb_layout_index_t; |
|
|
|
namespace KWin |
|
{ |
|
|
|
class Window; |
|
class InputDevice; |
|
class InputRedirection; |
|
class KeyboardLayout; |
|
class ModifiersChangedSpy; |
|
class Xkb; |
|
|
|
class KWIN_EXPORT KeyboardInputRedirection : public QObject |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit KeyboardInputRedirection(InputRedirection *parent); |
|
~KeyboardInputRedirection() override; |
|
|
|
void init(); |
|
void reconfigure(); |
|
|
|
void update(); |
|
|
|
/** |
|
* @internal |
|
*/ |
|
void processKey(uint32_t key, InputRedirection::KeyboardKeyState state, uint32_t time, InputDevice *device = nullptr); |
|
/** |
|
* @internal |
|
*/ |
|
void processModifiers(uint32_t modsDepressed, uint32_t modsLatched, uint32_t modsLocked, uint32_t group); |
|
/** |
|
* @internal |
|
*/ |
|
void processKeymapChange(int fd, uint32_t size); |
|
|
|
Xkb *xkb() const; |
|
Qt::KeyboardModifiers modifiers() const; |
|
Qt::KeyboardModifiers modifiersRelevantForGlobalShortcuts() const; |
|
|
|
Q_SIGNALS: |
|
void ledsChanged(KWin::LEDs); |
|
|
|
private: |
|
InputRedirection *m_input; |
|
bool m_inited = false; |
|
std::unique_ptr<Xkb> m_xkb; |
|
QMetaObject::Connection m_activeWindowSurfaceChangedConnection; |
|
ModifiersChangedSpy *m_modifiersChangedSpy = nullptr; |
|
KeyboardLayout *m_keyboardLayout = nullptr; |
|
}; |
|
|
|
} |
|
|
|
#endif
|
|
|