2020-03-15 15:19:28 +00:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
2016-04-06 09:27:42 +00:00
|
|
|
|
2020-03-15 15:19:28 +00:00
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
|
|
*/
|
2016-04-06 09:27:42 +00:00
|
|
|
#ifndef WAYLAND_SERVER_POINTER_INTERFACE_P_H
|
|
|
|
#define WAYLAND_SERVER_POINTER_INTERFACE_P_H
|
|
|
|
#include "pointer_interface.h"
|
|
|
|
#include "resource_p.h"
|
|
|
|
|
|
|
|
#include <QPointer>
|
2016-10-11 06:05:15 +00:00
|
|
|
#include <QVector>
|
2016-04-06 09:27:42 +00:00
|
|
|
|
2020-04-29 14:56:38 +00:00
|
|
|
namespace KWaylandServer
|
2016-04-06 09:27:42 +00:00
|
|
|
{
|
2016-10-26 08:27:14 +00:00
|
|
|
class PointerPinchGestureInterface;
|
|
|
|
class PointerSwipeGestureInterface;
|
2020-11-03 16:24:03 +00:00
|
|
|
class RelativePointerV1Interface;
|
2016-04-06 09:27:42 +00:00
|
|
|
|
|
|
|
class PointerInterface::Private : public Resource::Private
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Private(SeatInterface *parent, wl_resource *parentResource, PointerInterface *q);
|
|
|
|
|
|
|
|
SeatInterface *seat;
|
|
|
|
SurfaceInterface *focusedSurface = nullptr;
|
|
|
|
QPointer<SurfaceInterface> focusedChildSurface;
|
|
|
|
QMetaObject::Connection destroyConnection;
|
|
|
|
Cursor *cursor = nullptr;
|
2020-11-03 16:24:03 +00:00
|
|
|
QVector<RelativePointerV1Interface *> relativePointersV1;
|
2016-10-26 08:27:14 +00:00
|
|
|
QVector<PointerSwipeGestureInterface*> swipeGestures;
|
|
|
|
QVector<PointerPinchGestureInterface*> pinchGestures;
|
2016-04-06 09:27:42 +00:00
|
|
|
|
|
|
|
void sendLeave(SurfaceInterface *surface, quint32 serial);
|
|
|
|
void sendEnter(SurfaceInterface *surface, const QPointF &parentSurfacePosition, quint32 serial);
|
2018-02-01 16:46:53 +00:00
|
|
|
void sendFrame();
|
2016-04-06 09:27:42 +00:00
|
|
|
|
2020-11-03 16:24:03 +00:00
|
|
|
void registerRelativePointerV1(RelativePointerV1Interface *relativePointer);
|
2016-10-26 08:27:14 +00:00
|
|
|
void registerSwipeGesture(PointerSwipeGestureInterface *gesture);
|
|
|
|
void registerPinchGesture(PointerPinchGestureInterface *gesture);
|
|
|
|
|
2020-11-03 16:24:03 +00:00
|
|
|
void unregisterRelativePointerV1(RelativePointerV1Interface *relativePointer);
|
|
|
|
|
2016-10-26 08:27:14 +00:00
|
|
|
void startSwipeGesture(quint32 serial, quint32 fingerCount);
|
|
|
|
void updateSwipeGesture(const QSizeF &delta);
|
|
|
|
void endSwipeGesture(quint32 serial);
|
|
|
|
void cancelSwipeGesture(quint32 serial);
|
|
|
|
|
|
|
|
void startPinchGesture(quint32 serial, quint32 fingerCount);
|
|
|
|
void updatePinchGesture(const QSizeF &delta, qreal scale, qreal rotation);
|
|
|
|
void endPinchGesture(quint32 serial);
|
|
|
|
void cancelPinchGesture(quint32 serial);
|
2016-10-07 07:07:34 +00:00
|
|
|
|
2016-04-06 09:27:42 +00:00
|
|
|
private:
|
|
|
|
PointerInterface *q_func() {
|
|
|
|
return reinterpret_cast<PointerInterface *>(q);
|
|
|
|
}
|
|
|
|
void setCursor(quint32 serial, SurfaceInterface *surface, const QPoint &hotspot);
|
|
|
|
// interface
|
|
|
|
static void setCursorCallback(wl_client *client, wl_resource *resource, uint32_t serial,
|
|
|
|
wl_resource *surface, int32_t hotspot_x, int32_t hotspot_y);
|
|
|
|
|
|
|
|
static const struct wl_pointer_interface s_interface;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|