mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 17:06:00 +01:00
27 lines
No EOL
681 B
C++
27 lines
No EOL
681 B
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
#include <deque>
|
|
#include "../helpers/WLClasses.hpp"
|
|
|
|
class CInputManager {
|
|
public:
|
|
|
|
void onMouseMoved(wlr_event_pointer_motion*);
|
|
void onMouseWarp(wlr_event_pointer_motion_absolute*);
|
|
void onKeyboardKey(wlr_event_keyboard_key*);
|
|
void onKeyboardMod(void*);
|
|
|
|
void newKeyboard(wlr_input_device*);
|
|
|
|
Vector2D getMouseCoordsInternal();
|
|
|
|
private:
|
|
Vector2D m_vMouseCoords = Vector2D(0,0);
|
|
Vector2D m_vWLRMouseCoords = Vector2D(0,0);
|
|
|
|
std::deque<SKeyboard> m_dKeyboards;
|
|
|
|
};
|
|
|
|
inline std::unique_ptr<CInputManager> g_pInputManager; |