2022-08-07 21:17:03 +02:00
|
|
|
#include "InputManager.hpp"
|
|
|
|
#include "../../Compositor.hpp"
|
|
|
|
|
|
|
|
void CInputManager::onTouchDown(wlr_touch_down_event* e) {
|
2022-12-16 18:17:31 +01:00
|
|
|
auto PMONITOR = g_pCompositor->getMonitorFromName(e->touch->output_name ? e->touch->output_name : "");
|
2022-10-14 13:38:44 +02:00
|
|
|
|
|
|
|
const auto PDEVIT = std::find_if(m_lTouchDevices.begin(), m_lTouchDevices.end(), [&](const STouchDevice& other) { return other.pWlrDevice == &e->touch->base; });
|
|
|
|
|
|
|
|
if (PDEVIT != m_lTouchDevices.end() && !PDEVIT->boundOutput.empty())
|
|
|
|
PMONITOR = g_pCompositor->getMonitorFromName(PDEVIT->boundOutput);
|
|
|
|
|
2022-10-06 10:26:05 +02:00
|
|
|
PMONITOR = PMONITOR ? PMONITOR : g_pCompositor->m_pLastMonitor;
|
|
|
|
|
2022-10-28 00:44:23 +02:00
|
|
|
wlr_cursor_warp(g_pCompositor->m_sWLRCursor, nullptr, PMONITOR->vecPosition.x + e->x * PMONITOR->vecSize.x, PMONITOR->vecPosition.y + e->y * PMONITOR->vecSize.y);
|
2022-08-07 21:17:03 +02:00
|
|
|
|
|
|
|
refocus();
|
|
|
|
|
2023-02-28 20:02:30 +01:00
|
|
|
if (m_ecbClickBehavior == CLICKMODE_KILL) {
|
|
|
|
wlr_pointer_button_event e;
|
|
|
|
e.state = WLR_BUTTON_PRESSED;
|
|
|
|
g_pInputManager->processMouseDownKill(&e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-01-17 11:47:39 +01:00
|
|
|
m_bLastInputTouch = true;
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
m_sTouchData.touchFocusWindow = m_pFoundWindowToFocus;
|
2022-10-14 21:46:32 +02:00
|
|
|
m_sTouchData.touchFocusSurface = m_pFoundSurfaceToFocus;
|
2022-12-16 18:17:31 +01:00
|
|
|
m_sTouchData.touchFocusLS = m_pFoundLSToFocus;
|
2022-08-07 21:17:03 +02:00
|
|
|
|
2022-10-14 21:46:32 +02:00
|
|
|
Vector2D local;
|
|
|
|
|
|
|
|
if (m_sTouchData.touchFocusWindow) {
|
|
|
|
if (m_sTouchData.touchFocusWindow->m_bIsX11) {
|
|
|
|
local = g_pInputManager->getMouseCoordsInternal() - m_sTouchData.touchFocusWindow->m_vRealPosition.goalv();
|
2022-08-17 23:23:36 +02:00
|
|
|
} else {
|
2022-10-14 21:46:32 +02:00
|
|
|
g_pCompositor->vectorWindowToSurface(g_pInputManager->getMouseCoordsInternal(), m_sTouchData.touchFocusWindow, local);
|
2022-08-17 23:23:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
m_sTouchData.touchSurfaceOrigin = g_pInputManager->getMouseCoordsInternal() - local;
|
2022-10-14 21:46:32 +02:00
|
|
|
} else if (m_sTouchData.touchFocusLS) {
|
2022-12-16 18:17:31 +01:00
|
|
|
local = g_pInputManager->getMouseCoordsInternal() - Vector2D(m_sTouchData.touchFocusLS->geometry.x, m_sTouchData.touchFocusLS->geometry.y) -
|
|
|
|
g_pCompositor->m_pLastMonitor->vecPosition;
|
2022-08-17 23:23:36 +02:00
|
|
|
|
2022-10-14 21:46:32 +02:00
|
|
|
m_sTouchData.touchSurfaceOrigin = g_pInputManager->getMouseCoordsInternal() - local;
|
|
|
|
} else {
|
|
|
|
return; // oops, nothing found.
|
2022-08-07 21:17:03 +02:00
|
|
|
}
|
2022-10-14 21:46:32 +02:00
|
|
|
|
|
|
|
wlr_seat_touch_notify_down(g_pCompositor->m_sSeat.seat, m_sTouchData.touchFocusSurface, e->time_msec, e->touch_id, local.x, local.y);
|
2022-11-12 00:40:55 +01:00
|
|
|
|
|
|
|
wlr_idle_notify_activity(g_pCompositor->m_sWLRIdle, g_pCompositor->m_sSeat.seat);
|
2022-08-07 21:17:03 +02:00
|
|
|
}
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
void CInputManager::onTouchUp(wlr_touch_up_event* e) {
|
2022-10-14 21:46:32 +02:00
|
|
|
if (m_sTouchData.touchFocusSurface) {
|
2022-08-07 21:17:03 +02:00
|
|
|
wlr_seat_touch_notify_up(g_pCompositor->m_sSeat.seat, e->time_msec, e->touch_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
void CInputManager::onTouchMove(wlr_touch_motion_event* e) {
|
2022-10-14 21:46:32 +02:00
|
|
|
if (m_sTouchData.touchFocusWindow && g_pCompositor->windowValidMapped(m_sTouchData.touchFocusWindow)) {
|
2022-08-07 21:17:03 +02:00
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(m_sTouchData.touchFocusWindow->m_iMonitorID);
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
wlr_cursor_warp(g_pCompositor->m_sWLRCursor, g_pCompositor->m_sSeat.mouse->mouse, PMONITOR->vecPosition.x + e->x * PMONITOR->vecSize.x,
|
|
|
|
PMONITOR->vecPosition.y + e->y * PMONITOR->vecSize.y);
|
2022-08-17 23:23:36 +02:00
|
|
|
|
|
|
|
const auto local = g_pInputManager->getMouseCoordsInternal() - m_sTouchData.touchSurfaceOrigin;
|
|
|
|
|
2022-10-14 21:46:32 +02:00
|
|
|
wlr_seat_touch_notify_motion(g_pCompositor->m_sSeat.seat, e->time_msec, e->touch_id, local.x, local.y);
|
2023-01-17 11:34:51 +01:00
|
|
|
wlr_seat_pointer_notify_motion(g_pCompositor->m_sSeat.seat, e->time_msec, local.x, local.y);
|
2022-10-14 21:46:32 +02:00
|
|
|
} else if (m_sTouchData.touchFocusLS) {
|
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(m_sTouchData.touchFocusLS->monitorID);
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
wlr_cursor_warp(g_pCompositor->m_sWLRCursor, g_pCompositor->m_sSeat.mouse->mouse, PMONITOR->vecPosition.x + e->x * PMONITOR->vecSize.x,
|
|
|
|
PMONITOR->vecPosition.y + e->y * PMONITOR->vecSize.y);
|
2022-10-14 21:46:32 +02:00
|
|
|
|
|
|
|
const auto local = g_pInputManager->getMouseCoordsInternal() - m_sTouchData.touchSurfaceOrigin;
|
|
|
|
|
2022-08-17 23:23:36 +02:00
|
|
|
wlr_seat_touch_notify_motion(g_pCompositor->m_sSeat.seat, e->time_msec, e->touch_id, local.x, local.y);
|
2023-01-17 11:34:51 +01:00
|
|
|
wlr_seat_pointer_notify_motion(g_pCompositor->m_sSeat.seat, e->time_msec, local.x, local.y);
|
2022-08-07 21:17:03 +02:00
|
|
|
}
|
2022-09-22 22:14:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CInputManager::onPointerHoldBegin(wlr_pointer_hold_begin_event* e) {
|
|
|
|
wlr_pointer_gestures_v1_send_hold_begin(g_pCompositor->m_sWLRPointerGestures, g_pCompositor->m_sSeat.seat, e->time_msec, e->fingers);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CInputManager::onPointerHoldEnd(wlr_pointer_hold_end_event* e) {
|
|
|
|
wlr_pointer_gestures_v1_send_hold_end(g_pCompositor->m_sWLRPointerGestures, g_pCompositor->m_sSeat.seat, e->time_msec, e->cancelled);
|
|
|
|
}
|