mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 07:26:00 +01:00
215 lines
No EOL
8.1 KiB
C++
215 lines
No EOL
8.1 KiB
C++
#include "Events.hpp"
|
|
|
|
#include "../Compositor.hpp"
|
|
#include "../helpers/WLClasses.hpp"
|
|
#include "../managers/input/InputManager.hpp"
|
|
#include "../render/Renderer.hpp"
|
|
|
|
// ---------------------------------------------------- //
|
|
// _____ ________ _______ _____ ______ _____ //
|
|
// | __ \| ____\ \ / /_ _/ ____| ____|/ ____| //
|
|
// | | | | |__ \ \ / / | || | | |__ | (___ //
|
|
// | | | | __| \ \/ / | || | | __| \___ \ //
|
|
// | |__| | |____ \ / _| || |____| |____ ____) | //
|
|
// |_____/|______| \/ |_____\_____|______|_____/ //
|
|
// //
|
|
// ---------------------------------------------------- //
|
|
|
|
void Events::listener_keyboardDestroy(void* owner, void* data) {
|
|
SKeyboard* PKEYBOARD = (SKeyboard*)owner;
|
|
g_pInputManager->destroyKeyboard(PKEYBOARD);
|
|
|
|
Debug::log(LOG, "Destroyed keyboard {:x}", (uintptr_t)PKEYBOARD);
|
|
}
|
|
|
|
void Events::listener_keyboardKey(void* owner, void* data) {
|
|
SKeyboard* PKEYBOARD = (SKeyboard*)owner;
|
|
g_pInputManager->onKeyboardKey((wlr_keyboard_key_event*)data, PKEYBOARD);
|
|
}
|
|
|
|
void Events::listener_keyboardMod(void* owner, void* data) {
|
|
SKeyboard* PKEYBOARD = (SKeyboard*)owner;
|
|
g_pInputManager->onKeyboardMod(data, PKEYBOARD);
|
|
}
|
|
|
|
void Events::listener_mouseFrame(wl_listener* listener, void* data) {
|
|
wlr_seat_pointer_notify_frame(g_pCompositor->m_sSeat.seat);
|
|
}
|
|
|
|
void Events::listener_mouseMove(wl_listener* listener, void* data) {
|
|
g_pInputManager->onMouseMoved((wlr_pointer_motion_event*)data);
|
|
}
|
|
|
|
void Events::listener_mouseMoveAbsolute(wl_listener* listener, void* data) {
|
|
g_pInputManager->onMouseWarp((wlr_pointer_motion_absolute_event*)data);
|
|
}
|
|
|
|
void Events::listener_mouseButton(wl_listener* listener, void* data) {
|
|
g_pInputManager->onMouseButton((wlr_pointer_button_event*)data);
|
|
}
|
|
|
|
void Events::listener_mouseAxis(wl_listener* listener, void* data) {
|
|
g_pInputManager->onMouseWheel((wlr_pointer_axis_event*)data);
|
|
}
|
|
|
|
void Events::listener_requestMouse(wl_listener* listener, void* data) {
|
|
const auto EVENT = (wlr_seat_pointer_request_set_cursor_event*)data;
|
|
|
|
g_pInputManager->processMouseRequest(EVENT);
|
|
}
|
|
|
|
void Events::listener_newInput(wl_listener* listener, void* data) {
|
|
const auto DEVICE = (wlr_input_device*)data;
|
|
|
|
switch (DEVICE->type) {
|
|
case WLR_INPUT_DEVICE_KEYBOARD:
|
|
Debug::log(LOG, "Attached a keyboard with name {}", DEVICE->name);
|
|
g_pInputManager->newKeyboard(DEVICE);
|
|
break;
|
|
case WLR_INPUT_DEVICE_POINTER:
|
|
Debug::log(LOG, "Attached a mouse with name {}", DEVICE->name);
|
|
g_pInputManager->newMouse(DEVICE);
|
|
break;
|
|
case WLR_INPUT_DEVICE_TOUCH:
|
|
Debug::log(LOG, "Attached a touch device with name {}", DEVICE->name);
|
|
g_pInputManager->newTouchDevice(DEVICE);
|
|
break;
|
|
case WLR_INPUT_DEVICE_TABLET_TOOL:
|
|
Debug::log(LOG, "Attached a tablet tool with name {}", DEVICE->name);
|
|
g_pInputManager->newTabletTool(DEVICE);
|
|
break;
|
|
case WLR_INPUT_DEVICE_TABLET_PAD:
|
|
Debug::log(LOG, "Attached a tablet pad with name {}", DEVICE->name);
|
|
g_pInputManager->newTabletPad(DEVICE);
|
|
break;
|
|
case WLR_INPUT_DEVICE_SWITCH:
|
|
Debug::log(LOG, "Attached a switch device with name {}", DEVICE->name);
|
|
g_pInputManager->newSwitch(DEVICE);
|
|
break;
|
|
default: Debug::log(WARN, "Unrecognized input device plugged in: {}", DEVICE->name); break;
|
|
}
|
|
|
|
g_pInputManager->updateCapabilities();
|
|
}
|
|
|
|
void Events::listener_newConstraint(wl_listener* listener, void* data) {
|
|
const auto PCONSTRAINT = (wlr_pointer_constraint_v1*)data;
|
|
|
|
Debug::log(LOG, "New mouse constraint at {:x}", (uintptr_t)PCONSTRAINT);
|
|
|
|
g_pInputManager->m_lConstraints.emplace_back();
|
|
const auto CONSTRAINT = &g_pInputManager->m_lConstraints.back();
|
|
|
|
CONSTRAINT->pMouse = g_pCompositor->m_sSeat.mouse;
|
|
CONSTRAINT->constraint = PCONSTRAINT;
|
|
|
|
CONSTRAINT->hyprListener_destroyConstraint.initCallback(&PCONSTRAINT->events.destroy, &Events::listener_destroyConstraint, CONSTRAINT, "Constraint");
|
|
CONSTRAINT->hyprListener_setConstraintRegion.initCallback(&PCONSTRAINT->events.set_region, &Events::listener_setConstraintRegion, CONSTRAINT, "Constraint");
|
|
|
|
if (g_pCompositor->m_pLastFocus == PCONSTRAINT->surface) {
|
|
g_pInputManager->constrainMouse(CONSTRAINT->pMouse, PCONSTRAINT);
|
|
|
|
if (!CONSTRAINT->hintSet)
|
|
CONSTRAINT->positionHint = Vector2D{-1, -1};
|
|
}
|
|
}
|
|
|
|
void Events::listener_destroyConstraint(void* owner, void* data) {
|
|
const auto PCONSTRAINT = (SConstraint*)owner;
|
|
|
|
if (PCONSTRAINT->pMouse->currentConstraint == PCONSTRAINT->constraint) {
|
|
PCONSTRAINT->pMouse->hyprListener_commitConstraint.removeCallback();
|
|
|
|
const auto PWINDOW = g_pCompositor->getConstraintWindow(g_pCompositor->m_sSeat.mouse);
|
|
|
|
if (PWINDOW && PCONSTRAINT->active && PCONSTRAINT->constraint->type == WLR_POINTER_CONSTRAINT_V1_LOCKED)
|
|
g_pInputManager->warpMouseToConstraintMiddle(PCONSTRAINT);
|
|
|
|
PCONSTRAINT->pMouse->currentConstraint = nullptr;
|
|
}
|
|
|
|
Debug::log(LOG, "Unconstrained mouse from {:x}", (uintptr_t)PCONSTRAINT->constraint);
|
|
|
|
g_pInputManager->m_lConstraints.remove(*PCONSTRAINT);
|
|
}
|
|
|
|
void Events::listener_setConstraintRegion(void* owner, void* data) {
|
|
// no
|
|
}
|
|
|
|
void Events::listener_newVirtPtr(wl_listener* listener, void* data) {
|
|
const auto EV = (wlr_virtual_pointer_v1_new_pointer_event*)data;
|
|
const auto POINTER = EV->new_pointer;
|
|
const auto DEVICE = &POINTER->pointer.base;
|
|
|
|
g_pInputManager->newMouse(DEVICE, true);
|
|
}
|
|
|
|
void Events::listener_destroyMouse(void* owner, void* data) {
|
|
const auto PMOUSE = (SMouse*)owner;
|
|
|
|
g_pInputManager->destroyMouse(PMOUSE->mouse);
|
|
}
|
|
|
|
void Events::listener_swipeBegin(wl_listener* listener, void* data) {
|
|
const auto EVENT = (wlr_pointer_swipe_begin_event*)data;
|
|
|
|
g_pInputManager->onSwipeBegin(EVENT);
|
|
}
|
|
|
|
void Events::listener_swipeUpdate(wl_listener* listener, void* data) {
|
|
const auto EVENT = (wlr_pointer_swipe_update_event*)data;
|
|
|
|
g_pInputManager->onSwipeUpdate(EVENT);
|
|
}
|
|
|
|
void Events::listener_swipeEnd(wl_listener* listener, void* data) {
|
|
const auto EVENT = (wlr_pointer_swipe_end_event*)data;
|
|
|
|
g_pInputManager->onSwipeEnd(EVENT);
|
|
}
|
|
|
|
void Events::listener_pinchBegin(wl_listener* listener, void* data) {
|
|
const auto EV = (wlr_pointer_pinch_begin_event*)data;
|
|
wlr_pointer_gestures_v1_send_pinch_begin(g_pCompositor->m_sWLRPointerGestures, g_pCompositor->m_sSeat.seat, EV->time_msec, EV->fingers);
|
|
}
|
|
|
|
void Events::listener_pinchUpdate(wl_listener* listener, void* data) {
|
|
const auto EV = (wlr_pointer_pinch_update_event*)data;
|
|
wlr_pointer_gestures_v1_send_pinch_update(g_pCompositor->m_sWLRPointerGestures, g_pCompositor->m_sSeat.seat, EV->time_msec, EV->dx, EV->dy, EV->scale, EV->rotation);
|
|
}
|
|
|
|
void Events::listener_pinchEnd(wl_listener* listener, void* data) {
|
|
const auto EV = (wlr_pointer_pinch_end_event*)data;
|
|
wlr_pointer_gestures_v1_send_pinch_end(g_pCompositor->m_sWLRPointerGestures, g_pCompositor->m_sSeat.seat, EV->time_msec, EV->cancelled);
|
|
}
|
|
|
|
void Events::listener_newVirtualKeyboard(wl_listener* listener, void* data) {
|
|
const auto WLRKB = (wlr_virtual_keyboard_v1*)data;
|
|
|
|
g_pInputManager->newVirtualKeyboard(&WLRKB->keyboard.base);
|
|
}
|
|
|
|
void Events::listener_touchBegin(wl_listener* listener, void* data) {
|
|
g_pInputManager->onTouchDown((wlr_touch_down_event*)data);
|
|
}
|
|
|
|
void Events::listener_touchEnd(wl_listener* listener, void* data) {
|
|
g_pInputManager->onTouchUp((wlr_touch_up_event*)data);
|
|
}
|
|
|
|
void Events::listener_touchUpdate(wl_listener* listener, void* data) {
|
|
g_pInputManager->onTouchMove((wlr_touch_motion_event*)data);
|
|
}
|
|
|
|
void Events::listener_touchFrame(wl_listener* listener, void* data) {
|
|
wlr_seat_touch_notify_frame(g_pCompositor->m_sSeat.seat);
|
|
}
|
|
|
|
void Events::listener_holdBegin(wl_listener* listener, void* data) {
|
|
g_pInputManager->onPointerHoldBegin((wlr_pointer_hold_begin_event*)data);
|
|
}
|
|
|
|
void Events::listener_holdEnd(wl_listener* listener, void* data) {
|
|
g_pInputManager->onPointerHoldEnd((wlr_pointer_hold_end_event*)data);
|
|
} |