diff options
author | Povilas Kanapickas <povilas@radix.lt> | 2021-01-18 15:58:50 +0200 |
---|---|---|
committer | Povilas Kanapickas <povilas@radix.lt> | 2021-05-28 22:53:32 +0300 |
commit | 4ba3bd736e6ba1835a0b0b51d101101c39a58433 (patch) | |
tree | fe704ec2a5e43ef1a57508b1f509272e1a205239 /src/client/qwaylanddisplay_p.h | |
parent | d830d425e42d13b274d396816e07c2b450a7977e (diff) | |
download | qtwayland-4ba3bd736e6ba1835a0b0b51d101101c39a58433.tar.gz |
Implement support for pointer gestures v1
Change-Id: Ie9ee615de123e6deab5b7a5081ca9bcf53399df7
Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'src/client/qwaylanddisplay_p.h')
-rw-r--r-- | src/client/qwaylanddisplay_p.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/qwaylanddisplay_p.h b/src/client/qwaylanddisplay_p.h index 91715a14..ae80cd33 100644 --- a/src/client/qwaylanddisplay_p.h +++ b/src/client/qwaylanddisplay_p.h @@ -101,6 +101,7 @@ class QWaylandDataDeviceManager; class QWaylandPrimarySelectionDeviceManagerV1; #endif class QWaylandTabletManagerV2; +class QWaylandPointerGestures; class QWaylandTouchExtension; class QWaylandQtKeyExtension; class QWaylandWindow; @@ -172,6 +173,7 @@ public: #endif QtWayland::qt_surface_extension *windowExtension() const { return mWindowExtension.data(); } QWaylandTabletManagerV2 *tabletManager() const { return mTabletManager.data(); } + QWaylandPointerGestures *pointerGestures() const { return mPointerGestures.data(); } QWaylandTouchExtension *touchExtension() const { return mTouchExtension.data(); } QtWayland::qt_text_input_method_manager_v1 *textInputMethodManager() const { return mTextInputMethodManager.data(); } QtWayland::zwp_text_input_manager_v2 *textInputManager() const { return mTextInputManager.data(); } @@ -275,6 +277,7 @@ private: QScopedPointer<QWaylandQtKeyExtension> mQtKeyExtension; QScopedPointer<QWaylandWindowManagerIntegration> mWindowManagerIntegration; QScopedPointer<QWaylandTabletManagerV2> mTabletManager; + QScopedPointer<QWaylandPointerGestures> mPointerGestures; #if QT_CONFIG(wayland_client_primary_selection) QScopedPointer<QWaylandPrimarySelectionDeviceManagerV1> mPrimarySelectionManager; #endif |