mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 22:05:58 +01:00
Vaxry
1237732b97
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.
5 lines
107 B
C++
5 lines
107 B
C++
#include "IPointer.hpp"
|
|
|
|
uint32_t IPointer::getCapabilities() {
|
|
return HID_INPUT_CAPABILITY_POINTER;
|
|
}
|