mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 14:45:58 +01:00
44 lines
No EOL
1.1 KiB
C++
44 lines
No EOL
1.1 KiB
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
#include <list>
|
|
#include "../helpers/WLClasses.hpp"
|
|
#include "../Window.hpp"
|
|
|
|
class CInputManager {
|
|
public:
|
|
|
|
void onMouseMoved(wlr_pointer_motion_event*);
|
|
void onMouseWarp(wlr_pointer_motion_absolute_event*);
|
|
void onMouseButton(wlr_pointer_button_event*);
|
|
void onKeyboardKey(wlr_keyboard_key_event*, SKeyboard*);
|
|
void onKeyboardMod(void*, SKeyboard*);
|
|
|
|
void newKeyboard(wlr_input_device*);
|
|
void newMouse(wlr_input_device*);
|
|
void destroyKeyboard(SKeyboard*);
|
|
void destroyMouse(wlr_input_device*);
|
|
|
|
Vector2D getMouseCoordsInternal();
|
|
void refocus();
|
|
|
|
void setKeyboardLayout();
|
|
|
|
void updateDragIcon();
|
|
|
|
|
|
// for dragging floating windows
|
|
CWindow* currentlyDraggedWindow = nullptr;
|
|
int dragButton = -1;
|
|
|
|
SDrag m_sDrag;
|
|
|
|
private:
|
|
|
|
std::list<SKeyboard> m_lKeyboards;
|
|
|
|
void mouseMoveUnified(uint32_t);
|
|
|
|
};
|
|
|
|
inline std::unique_ptr<CInputManager> g_pInputManager; |