Add d-pointer to Server::PointerInterface
This commit is contained in:
parent
4b3f8ccc8d
commit
8eb325ee69
2 changed files with 151 additions and 121 deletions
|
@ -272,28 +272,87 @@ KeyboardInterface *SeatInterface::keyboard()
|
||||||
* PointerInterface
|
* PointerInterface
|
||||||
***************************************/
|
***************************************/
|
||||||
|
|
||||||
const struct wl_pointer_interface PointerInterface::s_interface = {
|
class PointerInterface::Private
|
||||||
PointerInterface::setCursorCallback,
|
{
|
||||||
PointerInterface::releaseCallback
|
public:
|
||||||
|
Private(Display *display, SeatInterface *parent);
|
||||||
|
void createInterface(wl_client *client, wl_resource *parentResource, uint32_t id);
|
||||||
|
wl_resource *pointerForSurface(SurfaceInterface *surface) const;
|
||||||
|
void surfaceDeleted();
|
||||||
|
void updateButtonSerial(quint32 button, quint32 serial);
|
||||||
|
enum class ButtonState {
|
||||||
|
Released,
|
||||||
|
Pressed
|
||||||
|
};
|
||||||
|
void updateButtonState(quint32 button, ButtonState state);
|
||||||
|
|
||||||
|
Display *display;
|
||||||
|
SeatInterface *seat;
|
||||||
|
struct ResourceData {
|
||||||
|
wl_client *client = nullptr;
|
||||||
|
wl_resource *pointer = nullptr;
|
||||||
|
};
|
||||||
|
QList<ResourceData> resources;
|
||||||
|
quint32 eventTime = 0;
|
||||||
|
QPoint globalPos;
|
||||||
|
struct FocusedSurface {
|
||||||
|
SurfaceInterface *surface = nullptr;
|
||||||
|
QPoint offset = QPoint();
|
||||||
|
wl_resource *pointer = nullptr;
|
||||||
|
quint32 serial = 0;
|
||||||
|
};
|
||||||
|
FocusedSurface focusedSurface;
|
||||||
|
QHash<quint32, quint32> buttonSerials;
|
||||||
|
QHash<quint32, ButtonState> buttonStates;
|
||||||
|
QMetaObject::Connection destroyConnection;
|
||||||
|
|
||||||
|
private:
|
||||||
|
static PointerInterface::Private *cast(wl_resource *resource) {
|
||||||
|
return reinterpret_cast<PointerInterface::Private*>(wl_resource_get_user_data(resource));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void unbind(wl_resource *resource);
|
||||||
|
// interface
|
||||||
|
static void setCursorCallback(wl_client *client, wl_resource *resource, uint32_t serial,
|
||||||
|
wl_resource *surface, int32_t hotspot_x, int32_t hotspot_y);
|
||||||
|
// since version 3
|
||||||
|
static void releaseCallback(wl_client *client, wl_resource *resource);
|
||||||
|
|
||||||
|
static const struct wl_pointer_interface s_interface;
|
||||||
|
};
|
||||||
|
|
||||||
|
PointerInterface::Private::Private(Display *display, SeatInterface *parent)
|
||||||
|
: display(display)
|
||||||
|
, seat(parent)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const struct wl_pointer_interface PointerInterface::Private::s_interface = {
|
||||||
|
setCursorCallback,
|
||||||
|
releaseCallback
|
||||||
};
|
};
|
||||||
|
|
||||||
PointerInterface::PointerInterface(Display *display, SeatInterface *parent)
|
PointerInterface::PointerInterface(Display *display, SeatInterface *parent)
|
||||||
: QObject(parent)
|
: QObject(parent)
|
||||||
, m_display(display)
|
, d(new Private(display, parent))
|
||||||
, m_seat(parent)
|
|
||||||
, m_eventTime(0)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
PointerInterface::~PointerInterface()
|
PointerInterface::~PointerInterface()
|
||||||
{
|
{
|
||||||
while (!m_resources.isEmpty()) {
|
while (!d->resources.isEmpty()) {
|
||||||
ResourceData data = m_resources.takeLast();
|
auto data = d->resources.takeLast();
|
||||||
wl_resource_destroy(data.pointer);
|
wl_resource_destroy(data.pointer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::createInterface(wl_client *client, wl_resource *parentResource, uint32_t id)
|
void PointerInterface::createInterface(wl_client *client, wl_resource *parentResource, uint32_t id)
|
||||||
|
{
|
||||||
|
d->createInterface(client, parentResource, id);
|
||||||
|
}
|
||||||
|
|
||||||
|
void PointerInterface::Private::createInterface(wl_client* client, wl_resource* parentResource, uint32_t id)
|
||||||
{
|
{
|
||||||
wl_resource *p = wl_resource_create(client, &wl_pointer_interface, wl_resource_get_version(parentResource), id);
|
wl_resource *p = wl_resource_create(client, &wl_pointer_interface, wl_resource_get_version(parentResource), id);
|
||||||
if (!p) {
|
if (!p) {
|
||||||
|
@ -303,17 +362,17 @@ void PointerInterface::createInterface(wl_client *client, wl_resource *parentRes
|
||||||
ResourceData data;
|
ResourceData data;
|
||||||
data.client = client;
|
data.client = client;
|
||||||
data.pointer = p;
|
data.pointer = p;
|
||||||
m_resources << data;
|
resources << data;
|
||||||
|
|
||||||
wl_resource_set_implementation(p, &PointerInterface::s_interface, this, PointerInterface::unbind);
|
wl_resource_set_implementation(p, &s_interface, this, unbind);
|
||||||
}
|
}
|
||||||
|
|
||||||
wl_resource *PointerInterface::pointerForSurface(SurfaceInterface *surface) const
|
wl_resource *PointerInterface::Private::pointerForSurface(SurfaceInterface *surface) const
|
||||||
{
|
{
|
||||||
if (!surface) {
|
if (!surface) {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
for (auto it = m_resources.constBegin(); it != m_resources.constEnd(); ++it) {
|
for (auto it = resources.constBegin(); it != resources.constEnd(); ++it) {
|
||||||
if ((*it).client == surface->client()) {
|
if ((*it).client == surface->client()) {
|
||||||
return (*it).pointer;
|
return (*it).pointer;
|
||||||
}
|
}
|
||||||
|
@ -323,86 +382,86 @@ wl_resource *PointerInterface::pointerForSurface(SurfaceInterface *surface) cons
|
||||||
|
|
||||||
void PointerInterface::setFocusedSurface(SurfaceInterface *surface, const QPoint &surfacePosition)
|
void PointerInterface::setFocusedSurface(SurfaceInterface *surface, const QPoint &surfacePosition)
|
||||||
{
|
{
|
||||||
const quint32 serial = m_display->nextSerial();
|
const quint32 serial = d->display->nextSerial();
|
||||||
if (m_focusedSurface.surface && m_focusedSurface.pointer) {
|
if (d->focusedSurface.surface && d->focusedSurface.pointer) {
|
||||||
wl_pointer_send_leave(m_focusedSurface.pointer, serial, m_focusedSurface.surface->surface());
|
wl_pointer_send_leave(d->focusedSurface.pointer, serial, d->focusedSurface.surface->surface());
|
||||||
disconnect(m_focusedSurface.surface, &QObject::destroyed, this, &PointerInterface::surfaceDeleted);
|
disconnect(d->destroyConnection);
|
||||||
}
|
}
|
||||||
m_focusedSurface.pointer = pointerForSurface(surface);
|
d->focusedSurface.pointer = d->pointerForSurface(surface);
|
||||||
if (!m_focusedSurface.pointer) {
|
if (!d->focusedSurface.pointer) {
|
||||||
m_focusedSurface = FocusedSurface();
|
d->focusedSurface = Private::FocusedSurface();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
m_focusedSurface.surface = surface;
|
d->focusedSurface.surface = surface;
|
||||||
m_focusedSurface.offset = surfacePosition;
|
d->focusedSurface.offset = surfacePosition;
|
||||||
m_focusedSurface.serial = serial;
|
d->focusedSurface.serial = serial;
|
||||||
connect(m_focusedSurface.surface, &QObject::destroyed, this, &PointerInterface::surfaceDeleted);
|
d->destroyConnection = connect(d->focusedSurface.surface, &QObject::destroyed, this, [this] { d->surfaceDeleted(); });
|
||||||
|
|
||||||
const QPoint pos = m_globalPos - surfacePosition;
|
const QPoint pos = d->globalPos - surfacePosition;
|
||||||
wl_pointer_send_enter(m_focusedSurface.pointer, m_focusedSurface.serial,
|
wl_pointer_send_enter(d->focusedSurface.pointer, d->focusedSurface.serial,
|
||||||
m_focusedSurface.surface->surface(),
|
d->focusedSurface.surface->surface(),
|
||||||
wl_fixed_from_int(pos.x()), wl_fixed_from_int(pos.y()));
|
wl_fixed_from_int(pos.x()), wl_fixed_from_int(pos.y()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::surfaceDeleted()
|
void PointerInterface::Private::surfaceDeleted()
|
||||||
{
|
{
|
||||||
m_focusedSurface = FocusedSurface();
|
focusedSurface = FocusedSurface();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::setFocusedSurfacePosition(const QPoint &surfacePosition)
|
void PointerInterface::setFocusedSurfacePosition(const QPoint &surfacePosition)
|
||||||
{
|
{
|
||||||
if (!m_focusedSurface.surface) {
|
if (!d->focusedSurface.surface) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
m_focusedSurface.offset = surfacePosition;
|
d->focusedSurface.offset = surfacePosition;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::setGlobalPos(const QPoint &pos)
|
void PointerInterface::setGlobalPos(const QPoint &pos)
|
||||||
{
|
{
|
||||||
if (m_globalPos == pos) {
|
if (d->globalPos == pos) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
m_globalPos = pos;
|
d->globalPos = pos;
|
||||||
if (m_focusedSurface.surface && m_focusedSurface.pointer) {
|
if (d->focusedSurface.surface && d->focusedSurface.pointer) {
|
||||||
const QPoint pos = m_globalPos - m_focusedSurface.offset;
|
const QPoint pos = d->globalPos - d->focusedSurface.offset;
|
||||||
wl_pointer_send_motion(m_focusedSurface.pointer, m_eventTime,
|
wl_pointer_send_motion(d->focusedSurface.pointer, d->eventTime,
|
||||||
wl_fixed_from_int(pos.x()), wl_fixed_from_int(pos.y()));
|
wl_fixed_from_int(pos.x()), wl_fixed_from_int(pos.y()));
|
||||||
}
|
}
|
||||||
emit globalPosChanged(m_globalPos);
|
emit globalPosChanged(d->globalPos);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::updateTimestamp(quint32 time)
|
void PointerInterface::updateTimestamp(quint32 time)
|
||||||
{
|
{
|
||||||
m_eventTime = time;
|
d->eventTime = time;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::buttonPressed(quint32 button)
|
void PointerInterface::buttonPressed(quint32 button)
|
||||||
{
|
{
|
||||||
const quint32 serial = m_display->nextSerial();
|
const quint32 serial = d->display->nextSerial();
|
||||||
updateButtonSerial(button, serial);
|
d->updateButtonSerial(button, serial);
|
||||||
updateButtonState(button, ButtonState::Pressed);
|
d->updateButtonState(button, Private::ButtonState::Pressed);
|
||||||
if (!m_focusedSurface.surface || !m_focusedSurface.pointer) {
|
if (!d->focusedSurface.surface || !d->focusedSurface.pointer) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
wl_pointer_send_button(m_focusedSurface.pointer, serial, m_eventTime, button, WL_POINTER_BUTTON_STATE_PRESSED);
|
wl_pointer_send_button(d->focusedSurface.pointer, serial, d->eventTime, button, WL_POINTER_BUTTON_STATE_PRESSED);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::buttonReleased(quint32 button)
|
void PointerInterface::buttonReleased(quint32 button)
|
||||||
{
|
{
|
||||||
const quint32 serial = m_display->nextSerial();
|
const quint32 serial = d->display->nextSerial();
|
||||||
updateButtonSerial(button, serial);
|
d->updateButtonSerial(button, serial);
|
||||||
updateButtonState(button, ButtonState::Released);
|
d->updateButtonState(button, Private::ButtonState::Released);
|
||||||
if (!m_focusedSurface.surface || !m_focusedSurface.pointer) {
|
if (!d->focusedSurface.surface || !d->focusedSurface.pointer) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
wl_pointer_send_button(m_focusedSurface.pointer, serial, m_eventTime, button, WL_POINTER_BUTTON_STATE_RELEASED);
|
wl_pointer_send_button(d->focusedSurface.pointer, serial, d->eventTime, button, WL_POINTER_BUTTON_STATE_RELEASED);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::updateButtonSerial(quint32 button, quint32 serial)
|
void PointerInterface::Private::updateButtonSerial(quint32 button, quint32 serial)
|
||||||
{
|
{
|
||||||
auto it = m_buttonSerials.find(button);
|
auto it = buttonSerials.find(button);
|
||||||
if (it == m_buttonSerials.end()) {
|
if (it == buttonSerials.end()) {
|
||||||
m_buttonSerials.insert(button, serial);
|
buttonSerials.insert(button, serial);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
it.value() = serial;
|
it.value() = serial;
|
||||||
|
@ -410,18 +469,18 @@ void PointerInterface::updateButtonSerial(quint32 button, quint32 serial)
|
||||||
|
|
||||||
quint32 PointerInterface::buttonSerial(quint32 button) const
|
quint32 PointerInterface::buttonSerial(quint32 button) const
|
||||||
{
|
{
|
||||||
auto it = m_buttonSerials.constFind(button);
|
auto it = d->buttonSerials.constFind(button);
|
||||||
if (it == m_buttonSerials.constEnd()) {
|
if (it == d->buttonSerials.constEnd()) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return it.value();
|
return it.value();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::updateButtonState(quint32 button, PointerInterface::ButtonState state)
|
void PointerInterface::Private::updateButtonState(quint32 button, ButtonState state)
|
||||||
{
|
{
|
||||||
auto it = m_buttonStates.find(button);
|
auto it = buttonStates.find(button);
|
||||||
if (it == m_buttonStates.end()) {
|
if (it == buttonStates.end()) {
|
||||||
m_buttonStates.insert(button, state);
|
buttonStates.insert(button, state);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
it.value() = state;
|
it.value() = state;
|
||||||
|
@ -429,42 +488,42 @@ void PointerInterface::updateButtonState(quint32 button, PointerInterface::Butto
|
||||||
|
|
||||||
bool PointerInterface::isButtonPressed(quint32 button) const
|
bool PointerInterface::isButtonPressed(quint32 button) const
|
||||||
{
|
{
|
||||||
auto it = m_buttonStates.constFind(button);
|
auto it = d->buttonStates.constFind(button);
|
||||||
if (it == m_buttonStates.constEnd()) {
|
if (it == d->buttonStates.constEnd()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return it.value() == ButtonState::Pressed ? true : false;
|
return it.value() == Private::ButtonState::Pressed ? true : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::axis(Qt::Orientation orientation, quint32 delta)
|
void PointerInterface::axis(Qt::Orientation orientation, quint32 delta)
|
||||||
{
|
{
|
||||||
if (!m_focusedSurface.surface || !m_focusedSurface.pointer) {
|
if (!d->focusedSurface.surface || !d->focusedSurface.pointer) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
wl_pointer_send_axis(m_focusedSurface.pointer, m_eventTime,
|
wl_pointer_send_axis(d->focusedSurface.pointer, d->eventTime,
|
||||||
(orientation == Qt::Vertical) ? WL_POINTER_AXIS_VERTICAL_SCROLL : WL_POINTER_AXIS_HORIZONTAL_SCROLL,
|
(orientation == Qt::Vertical) ? WL_POINTER_AXIS_VERTICAL_SCROLL : WL_POINTER_AXIS_HORIZONTAL_SCROLL,
|
||||||
wl_fixed_from_int(delta));
|
wl_fixed_from_int(delta));
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::unbind(wl_resource *resource)
|
void PointerInterface::Private::unbind(wl_resource *resource)
|
||||||
{
|
{
|
||||||
PointerInterface *p = PointerInterface::cast(resource);
|
auto p = cast(resource);
|
||||||
auto it = std::find_if(p->m_resources.begin(), p->m_resources.end(),
|
auto it = std::find_if(p->resources.begin(), p->resources.end(),
|
||||||
[resource](const ResourceData &data) {
|
[resource](const ResourceData &data) {
|
||||||
return data.pointer == resource;
|
return data.pointer == resource;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
if (it == p->m_resources.end()) {
|
if (it == p->resources.end()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ((*it).pointer == p->m_focusedSurface.pointer) {
|
if ((*it).pointer == p->focusedSurface.pointer) {
|
||||||
disconnect(p->m_focusedSurface.surface, &QObject::destroyed, p, &PointerInterface::surfaceDeleted);
|
QObject::disconnect(p->destroyConnection);
|
||||||
p->m_focusedSurface = FocusedSurface();
|
p->focusedSurface = FocusedSurface();
|
||||||
}
|
}
|
||||||
p->m_resources.erase(it);
|
p->resources.erase(it);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::setCursorCallback(wl_client *client, wl_resource *resource, uint32_t serial,
|
void PointerInterface::Private::setCursorCallback(wl_client *client, wl_resource *resource, uint32_t serial,
|
||||||
wl_resource *surface, int32_t hotspot_x, int32_t hotspot_y)
|
wl_resource *surface, int32_t hotspot_x, int32_t hotspot_y)
|
||||||
{
|
{
|
||||||
Q_UNUSED(client)
|
Q_UNUSED(client)
|
||||||
|
@ -476,12 +535,27 @@ void PointerInterface::setCursorCallback(wl_client *client, wl_resource *resourc
|
||||||
// TODO: implement
|
// TODO: implement
|
||||||
}
|
}
|
||||||
|
|
||||||
void PointerInterface::releaseCallback(wl_client *client, wl_resource *resource)
|
void PointerInterface::Private::releaseCallback(wl_client *client, wl_resource *resource)
|
||||||
{
|
{
|
||||||
Q_UNUSED(client)
|
Q_UNUSED(client)
|
||||||
unbind(resource);
|
unbind(resource);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QPoint PointerInterface::globalPos() const
|
||||||
|
{
|
||||||
|
return d->globalPos;
|
||||||
|
}
|
||||||
|
|
||||||
|
SurfaceInterface *PointerInterface::focusedSurface() const
|
||||||
|
{
|
||||||
|
return d->focusedSurface.surface;
|
||||||
|
}
|
||||||
|
|
||||||
|
QPoint PointerInterface::focusedSurfacePosition() const
|
||||||
|
{
|
||||||
|
return d->focusedSurface.offset;
|
||||||
|
}
|
||||||
|
|
||||||
/****************************************
|
/****************************************
|
||||||
* KeyboardInterface
|
* KeyboardInterface
|
||||||
***************************************/
|
***************************************/
|
||||||
|
|
|
@ -89,9 +89,7 @@ public:
|
||||||
|
|
||||||
void updateTimestamp(quint32 time);
|
void updateTimestamp(quint32 time);
|
||||||
void setGlobalPos(const QPoint &pos);
|
void setGlobalPos(const QPoint &pos);
|
||||||
const QPoint &globalPos() const {
|
QPoint globalPos() const;
|
||||||
return m_globalPos;
|
|
||||||
}
|
|
||||||
void buttonPressed(quint32 button);
|
void buttonPressed(quint32 button);
|
||||||
void buttonReleased(quint32 button);
|
void buttonReleased(quint32 button);
|
||||||
bool isButtonPressed(quint32 button) const;
|
bool isButtonPressed(quint32 button) const;
|
||||||
|
@ -100,12 +98,8 @@ public:
|
||||||
|
|
||||||
void setFocusedSurface(SurfaceInterface *surface, const QPoint &surfacePosition = QPoint());
|
void setFocusedSurface(SurfaceInterface *surface, const QPoint &surfacePosition = QPoint());
|
||||||
void setFocusedSurfacePosition(const QPoint &surfacePosition);
|
void setFocusedSurfacePosition(const QPoint &surfacePosition);
|
||||||
SurfaceInterface *focusedSurface() const {
|
SurfaceInterface *focusedSurface() const;
|
||||||
return m_focusedSurface.surface;
|
QPoint focusedSurfacePosition() const;
|
||||||
}
|
|
||||||
const QPoint &focusedSurfacePosition() const {
|
|
||||||
return m_focusedSurface.offset;
|
|
||||||
}
|
|
||||||
|
|
||||||
Q_SIGNALS:
|
Q_SIGNALS:
|
||||||
void globalPosChanged(const QPoint &pos);
|
void globalPosChanged(const QPoint &pos);
|
||||||
|
@ -113,46 +107,8 @@ Q_SIGNALS:
|
||||||
private:
|
private:
|
||||||
friend class SeatInterface;
|
friend class SeatInterface;
|
||||||
explicit PointerInterface(Display *display, SeatInterface *parent);
|
explicit PointerInterface(Display *display, SeatInterface *parent);
|
||||||
wl_resource *pointerForSurface(SurfaceInterface *surface) const;
|
class Private;
|
||||||
void surfaceDeleted();
|
QScopedPointer<Private> d;
|
||||||
void updateButtonSerial(quint32 button, quint32 serial);
|
|
||||||
enum class ButtonState {
|
|
||||||
Released,
|
|
||||||
Pressed
|
|
||||||
};
|
|
||||||
void updateButtonState(quint32 button, ButtonState state);
|
|
||||||
|
|
||||||
static PointerInterface *cast(wl_resource *resource) {
|
|
||||||
return reinterpret_cast<PointerInterface*>(wl_resource_get_user_data(resource));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void unbind(wl_resource *resource);
|
|
||||||
// interface
|
|
||||||
static void setCursorCallback(wl_client *client, wl_resource *resource, uint32_t serial,
|
|
||||||
wl_resource *surface, int32_t hotspot_x, int32_t hotspot_y);
|
|
||||||
// since version 3
|
|
||||||
static void releaseCallback(wl_client *client, wl_resource *resource);
|
|
||||||
|
|
||||||
Display *m_display;
|
|
||||||
SeatInterface *m_seat;
|
|
||||||
struct ResourceData {
|
|
||||||
wl_client *client = nullptr;
|
|
||||||
wl_resource *pointer = nullptr;
|
|
||||||
};
|
|
||||||
QList<ResourceData> m_resources;
|
|
||||||
quint32 m_eventTime;
|
|
||||||
QPoint m_globalPos;
|
|
||||||
struct FocusedSurface {
|
|
||||||
SurfaceInterface *surface = nullptr;
|
|
||||||
QPoint offset = QPoint();
|
|
||||||
wl_resource *pointer = nullptr;
|
|
||||||
quint32 serial = 0;
|
|
||||||
};
|
|
||||||
FocusedSurface m_focusedSurface;
|
|
||||||
QHash<quint32, quint32> m_buttonSerials;
|
|
||||||
QHash<quint32, ButtonState> m_buttonStates;
|
|
||||||
|
|
||||||
static const struct wl_pointer_interface s_interface;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class KWAYLANDSERVER_EXPORT KeyboardInterface : public QObject
|
class KWAYLANDSERVER_EXPORT KeyboardInterface : public QObject
|
||||||
|
|
Loading…
Reference in a new issue