4#ifndef QWAYLANDCURSOR_H
5#define QWAYLANDCURSOR_H
18#include <qpa/qplatformcursor.h>
20#include <QtWaylandClient/qtwaylandclientglobal.h>
21#include <QtWaylandClient/private/qwayland-cursor-shape-v1.h>
22#include <QtCore/private/qglobal_p.h>
29struct wl_cursor_image;
30struct wl_cursor_theme;
34namespace QtWaylandClient {
41class Q_WAYLANDCLIENT_EXPORT QWaylandCursorTheme
44 static std::unique_ptr<QWaylandCursorTheme> create(QWaylandShm *shm,
int size,
const QString &themeName);
45 ~QWaylandCursorTheme();
46 ::wl_cursor *cursor(Qt::CursorShape shape);
50 ArrowCursor = Qt::ArrowCursor,
73 ResizeNorthCursor = Qt::CustomCursor + 1,
77 ResizeNorthWestCursor,
78 ResizeSouthEastCursor,
79 ResizeNorthEastCursor,
80 ResizeSouthWestCursor,
85 explicit QWaylandCursorTheme(
struct ::wl_cursor_theme *theme) : m_theme(theme) {}
86 struct ::wl_cursor *requestCursor(WaylandCursor shape);
87 struct ::wl_cursor_theme *m_theme =
nullptr;
88 wl_cursor *m_cursors[NumWaylandCursors] = {};
91class Q_WAYLANDCLIENT_EXPORT QWaylandCursorShape :
public QtWayland::wp_cursor_shape_device_v1
94 QWaylandCursorShape(
struct ::wp_cursor_shape_device_v1 *object);
95 ~QWaylandCursorShape();
96 void setShape(uint32_t serial, Qt::CursorShape shape);
99class Q_WAYLANDCLIENT_EXPORT QWaylandCursor :
public QPlatformCursor
102 explicit QWaylandCursor(QWaylandDisplay *display);
104 void changeCursor(QCursor *cursor, QWindow *window) override;
105 void pointerEvent(
const QMouseEvent &event) override;
106 QPoint pos()
const override;
107 void setPos(
const QPoint &pos) override;
108 void setPosFromEnterEvent(
const QPoint &pos);
110 QSize size()
const override;
112 static QSharedPointer<QWaylandBuffer> cursorBitmapBuffer(QWaylandDisplay *display,
const QCursor *cursor);
115 QWaylandDisplay *mDisplay =
nullptr;
static QtWayland::wp_cursor_shape_device_v1::shape qtCursorShapeToWaylandShape(Qt::CursorShape cursorShape)