Hyprland/src/managers/input/InputManager.hpp

176 lines
5.7 KiB
C++
Raw Normal View History

2022-03-17 15:53:45 +01:00
#pragma once
2022-06-09 12:46:55 +02:00
#include "../../defines.hpp"
2022-03-18 23:25:26 +01:00
#include <list>
2022-06-09 12:46:55 +02:00
#include "../../helpers/WLClasses.hpp"
#include "../../Window.hpp"
2022-06-24 23:27:02 +02:00
#include "../../helpers/Timer.hpp"
2022-08-05 13:03:37 +02:00
#include "InputMethodRelay.hpp"
2022-03-17 15:53:45 +01:00
enum eClickBehaviorMode
{
2022-06-27 13:42:20 +02:00
CLICKMODE_DEFAULT = 0,
CLICKMODE_KILL
};
enum eMouseBindMode
{
2022-09-19 20:04:48 +02:00
MBIND_INVALID = -1,
MBIND_MOVE = 0,
2022-09-19 20:04:48 +02:00
MBIND_RESIZE
};
2022-08-07 21:17:03 +02:00
struct STouchData {
CWindow* touchFocusWindow = nullptr;
SLayerSurface* touchFocusLS = nullptr;
wlr_surface* touchFocusSurface = nullptr;
Vector2D touchSurfaceOrigin;
2022-08-07 21:17:03 +02:00
};
class CKeybindManager;
2022-03-17 15:53:45 +01:00
class CInputManager {
public:
void onMouseMoved(wlr_pointer_motion_event*);
void onMouseWarp(wlr_pointer_motion_absolute_event*);
void onMouseButton(wlr_pointer_button_event*);
void onMouseWheel(wlr_pointer_axis_event*);
void onKeyboardKey(wlr_keyboard_key_event*, SKeyboard*);
void onKeyboardMod(void*, SKeyboard*);
void newKeyboard(wlr_input_device*);
void newVirtualKeyboard(wlr_input_device*);
void newMouse(wlr_input_device*, bool virt = false);
void newTouchDevice(wlr_input_device*);
void newSwitch(wlr_input_device*);
void destroyTouchDevice(STouchDevice*);
void destroyKeyboard(SKeyboard*);
void destroyMouse(wlr_input_device*);
void destroySwitch(SSwitchDevice*);
void constrainMouse(SMouse*, wlr_pointer_constraint_v1*);
void recheckConstraint(SMouse*);
void unconstrainMouse();
SConstraint* constraintFromWlr(wlr_pointer_constraint_v1*);
std::string getActiveLayoutForKeyboard(SKeyboard*);
Vector2D getMouseCoordsInternal();
void refocus();
void setKeyboardLayout();
void setPointerConfigs();
void setTouchDeviceConfigs();
2022-12-21 16:11:39 +01:00
void setTabletConfigs();
void updateDragIcon();
void updateCapabilities();
void setClickMode(eClickBehaviorMode);
2022-06-27 13:42:20 +02:00
eClickBehaviorMode getClickMode();
void processMouseRequest(wlr_seat_pointer_request_set_cursor_event*);
2022-06-27 13:42:20 +02:00
void onTouchDown(wlr_touch_down_event*);
void onTouchUp(wlr_touch_up_event*);
void onTouchMove(wlr_touch_motion_event*);
2022-08-07 21:17:03 +02:00
void onPointerHoldBegin(wlr_pointer_hold_begin_event*);
void onPointerHoldEnd(wlr_pointer_hold_end_event*);
2022-09-22 22:14:02 +02:00
STouchData m_sTouchData;
2022-03-20 11:14:24 +01:00
// for dragging floating windows
CWindow* currentlyDraggedWindow = nullptr;
eMouseBindMode dragMode = MBIND_INVALID;
2022-03-20 11:14:24 +01:00
SDrag m_sDrag;
2022-03-31 17:25:23 +02:00
std::list<SConstraint> m_lConstraints;
std::list<SKeyboard> m_lKeyboards;
std::list<SMouse> m_lMice;
2022-06-09 12:46:55 +02:00
// tablets
std::list<STablet> m_lTablets;
std::list<STabletTool> m_lTabletTools;
std::list<STabletPad> m_lTabletPads;
2022-06-09 12:46:55 +02:00
// idle inhibitors
std::list<SIdleInhibitor> m_lIdleInhibitors;
// Touch devices
std::list<STouchDevice> m_lTouchDevices;
2022-10-04 21:07:21 +02:00
// Switches
std::list<SSwitchDevice> m_lSwitches;
void newTabletTool(wlr_input_device*);
void newTabletPad(wlr_input_device*);
void focusTablet(STablet*, wlr_tablet_tool*, bool motion = false);
void newIdleInhibitor(wlr_idle_inhibitor_v1*);
void recheckIdleInhibitorStatus();
2022-06-09 12:46:55 +02:00
void onSwipeBegin(wlr_pointer_swipe_begin_event*);
void onSwipeEnd(wlr_pointer_swipe_end_event*);
void onSwipeUpdate(wlr_pointer_swipe_update_event*);
2022-07-07 11:52:12 +02:00
SSwipeGesture m_sActiveSwipe;
2022-06-09 12:46:55 +02:00
SKeyboard* m_pActiveKeyboard = nullptr;
CTimer m_tmrLastCursorMovement;
2022-06-24 23:27:02 +02:00
CInputMethodRelay m_sIMERelay;
2022-08-05 13:03:37 +02:00
void updateKeyboardsLeds(wlr_input_device* pKeyboard);
2022-07-20 22:45:06 +02:00
// for shared mods
uint32_t accumulateModsFromAllKBs();
2022-07-20 22:45:06 +02:00
CWindow* m_pFollowOnDnDBegin = nullptr;
2022-08-06 22:26:32 +02:00
2022-11-07 23:22:13 +01:00
// for virtual keyboards: whether we should respect them as normal ones
bool shouldIgnoreVirtualKeyboard(SKeyboard*);
2022-11-07 23:22:13 +01:00
// for special cursors that we choose
void setCursorImageUntilUnset(std::string);
void unsetCursorImage();
std::string deviceNameToInternalString(std::string);
std::string getNameForNewDevice(std::string);
2022-12-03 16:56:07 +01:00
private:
bool m_bCursorImageOverriden = false;
2022-06-27 13:42:20 +02:00
// for click behavior override
eClickBehaviorMode m_ecbClickBehavior = CLICKMODE_DEFAULT;
bool m_bEmptyFocusCursorSet = false;
Vector2D m_vLastCursorPosFloored = Vector2D();
2022-06-27 13:42:20 +02:00
// for some bugs in follow mouse 0
bool m_bLastFocusOnLS = false;
void processMouseDownNormal(wlr_pointer_button_event* e);
void processMouseDownKill(wlr_pointer_button_event* e);
2022-06-27 13:42:20 +02:00
void disableAllKeyboards(bool virt = false);
uint32_t m_uiCapabilities = 0;
2022-06-09 12:46:55 +02:00
void mouseMoveUnified(uint32_t, bool refocus = false);
2022-06-09 12:46:55 +02:00
STabletTool* ensureTabletToolPresent(wlr_tablet_tool*);
void applyConfigToKeyboard(SKeyboard*);
// this will be set after a refocus()
wlr_surface* m_pFoundSurfaceToFocus = nullptr;
SLayerSurface* m_pFoundLSToFocus = nullptr;
CWindow* m_pFoundWindowToFocus = nullptr;
2022-11-03 14:34:06 +01:00
// swipe
void beginWorkspaceSwipe();
friend class CKeybindManager;
2022-03-17 15:53:45 +01:00
};
2022-09-25 20:07:48 +02:00
inline std::unique_ptr<CInputManager> g_pInputManager;