mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-05-19 08:30:22 -07:00
Implements an intermediary HID class for mice, keyboards and touch devices, removing the old structs from WLClasses.hpp Yes, virtual ones are duplicated a bit, but will likely be de-duped once wlr_input_device is not used anymore.
6 lines
107 B
C++
6 lines
107 B
C++
#include "IPointer.hpp"
|
|
|
|
uint32_t IPointer::getCapabilities() {
|
|
return HID_INPUT_CAPABILITY_POINTER;
|
|
}
|