summaryrefslogtreecommitdiffstats
path: root/src/client/qwaylandinputdevice_p.h
diff options
context:
space:
mode:
authorGiulio Camuffo <giulio.camuffo@kdab.com>2016-11-19 08:58:17 +0100
committerGiulio Camuffo <giulio.camuffo@kdab.com>2016-11-22 09:09:17 +0000
commitfc1901b4b34d29df79be1b9b1c1d3f5a127eaa59 (patch)
tree136cc934fc114c9c65c2cbfd52e9729484a98ff3 /src/client/qwaylandinputdevice_p.h
parent7197be7c0e9d00f98551d12bcc30782503612fe9 (diff)
Don't reset the cursor at every mouse move
Change-Id: I67f9a0d171da403ebb124ab584c2510891da80fc Reviewed-by: Paul Olav Tvete <paul.tvete@qt.io>
Diffstat (limited to 'src/client/qwaylandinputdevice_p.h')
-rw-r--r--src/client/qwaylandinputdevice_p.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/client/qwaylandinputdevice_p.h b/src/client/qwaylandinputdevice_p.h
index 2f39bc547..d41bde564 100644
--- a/src/client/qwaylandinputdevice_p.h
+++ b/src/client/qwaylandinputdevice_p.h
@@ -99,7 +99,6 @@ public:
struct ::wl_seat *wl_seat() { return QtWayland::wl_seat::object(); }
- void setCursor(Qt::CursorShape cursor, QWaylandScreen *screen);
void setCursor(const QCursor &cursor, QWaylandScreen *screen);
void setCursor(struct wl_buffer *buffer, struct ::wl_cursor_image *image);
void setCursor(struct wl_buffer *buffer, const QPoint &hotSpot, const QSize &size);
@@ -129,6 +128,8 @@ public:
virtual Touch *createTouch(QWaylandInputDevice *device);
private:
+ void setCursor(Qt::CursorShape cursor, QWaylandScreen *screen);
+
QWaylandDisplay *mQDisplay;
struct wl_display *mDisplay;
@@ -249,6 +250,8 @@ public:
QPointF mSurfacePos;
QPointF mGlobalPos;
Qt::MouseButtons mButtons;
+ wl_buffer *mCursorBuffer;
+ Qt::CursorShape mCursorShape;
};
class Q_WAYLAND_CLIENT_EXPORT QWaylandInputDevice::Touch : public QtWayland::wl_touch