From d88d5898807bf6f2462cecfb977b7624dafbf52e Mon Sep 17 00:00:00 2001 From: Vaxry Date: Wed, 3 Apr 2024 19:20:47 +0100 Subject: [PATCH] swipe: add events --- src/managers/input/Swipe.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/managers/input/Swipe.cpp b/src/managers/input/Swipe.cpp index 47a6f5bd..ba91394e 100644 --- a/src/managers/input/Swipe.cpp +++ b/src/managers/input/Swipe.cpp @@ -7,6 +7,8 @@ void CInputManager::onSwipeBegin(wlr_pointer_swipe_begin_event* e) { static auto PSWIPEFINGERS = CConfigValue("gestures:workspace_swipe_fingers"); static auto PSWIPENEW = CConfigValue("gestures:workspace_swipe_create_new"); + EMIT_HOOK_EVENT_CANCELLABLE("swipeBegin", e); + if (e->fingers != *PSWIPEFINGERS || *PSWIPE == 0 || g_pSessionLockManager->isSessionLocked()) return; @@ -42,6 +44,8 @@ void CInputManager::beginWorkspaceSwipe() { } void CInputManager::onSwipeEnd(wlr_pointer_swipe_end_event* e) { + EMIT_HOOK_EVENT_CANCELLABLE("swipeEnd", e); + if (!m_sActiveSwipe.pWorkspaceBegin) return; // no valid swipe endWorkspaceSwipe(); @@ -195,6 +199,8 @@ void CInputManager::endWorkspaceSwipe() { } void CInputManager::onSwipeUpdate(wlr_pointer_swipe_update_event* e) { + EMIT_HOOK_EVENT_CANCELLABLE("swipeUpdate", e); + if (!m_sActiveSwipe.pWorkspaceBegin) return; static auto PSWIPEINVR = CConfigValue("gestures:workspace_swipe_invert");