kwin/src/wayland/keyboard_interface_p.h

71 lines
1.7 KiB
C
Raw Normal View History

/*
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
2021-03-10 16:08:30 +00:00
#pragma once
#include "keyboard_interface.h"
#include <qwayland-server-wayland.h>
#include <QPointer>
#include <QHash>
class QTemporaryFile;
2020-04-29 14:56:38 +00:00
namespace KWaylandServer
{
class ClientConnection;
class KeyboardInterfacePrivate : public QtWaylandServer::wl_keyboard
{
public:
KeyboardInterfacePrivate(SeatInterface *s);
void sendKeymap(int fd, quint32 size);
void sendModifiers();
void sendModifiers(quint32 depressed, quint32 latched, quint32 locked, quint32 group, quint32 serial);
QList<Resource *> keyboardsForClient(ClientConnection *client) const;
void sendLeave(SurfaceInterface *surface, quint32 serial);
void sendEnter(SurfaceInterface *surface, quint32 serial);
static KeyboardInterfacePrivate *get(KeyboardInterface *keyboard) { return keyboard->d.data(); }
SeatInterface *seat;
SurfaceInterface *focusedSurface = nullptr;
QMetaObject::Connection destroyConnection;
QScopedPointer<QTemporaryFile> keymap;
struct {
qint32 charactersPerSecond = 0;
qint32 delay = 0;
} keyRepeat;
struct Modifiers {
quint32 depressed = 0;
quint32 latched = 0;
quint32 locked = 0;
quint32 group = 0;
quint32 serial = 0;
};
Modifiers modifiers;
enum class State {
Released,
Pressed
};
QHash<quint32, State> states;
bool updateKey(quint32 key, State state);
QVector<quint32> pressedKeys() const;
protected:
void keyboard_release(Resource *resource) override;
void keyboard_bind_resource(Resource *resource) override;
};
}