1
0
Fork 0

clutter: Add capability flags for trackpoints and trackballs

The detection of these devices is nowadays scattered around using
udev. Add these capabilities so that we can move this detection to
seats.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2617>
This commit is contained in:
Carlos Garnacho 2022-09-06 09:44:48 +02:00 committed by Marge Bot
parent d889aad7cf
commit 3ca78fa44a

View file

@ -903,6 +903,8 @@ typedef enum /*< prefix=CLUTTER_INPUT_CAPABILITY >*/
CLUTTER_INPUT_CAPABILITY_TOUCH = 1 << 3,
CLUTTER_INPUT_CAPABILITY_TABLET_TOOL = 1 << 4,
CLUTTER_INPUT_CAPABILITY_TABLET_PAD = 1 << 5,
CLUTTER_INPUT_CAPABILITY_TRACKBALL = 1 << 6,
CLUTTER_INPUT_CAPABILITY_TRACKPOINT = 1 << 7,
} ClutterInputCapabilities;
/**