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:
parent
d889aad7cf
commit
3ca78fa44a
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue