mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-09-14 23:38:22 +00: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.
5 lines
100 B
C++
5 lines
100 B
C++
#include "ITouch.hpp"
|
|
|
|
uint32_t ITouch::getCapabilities() {
|
|
return HID_INPUT_CAPABILITY_TOUCH;
|
|
} |