clutter: Add ClutterInputCapabilities flagset
This will be a truer representation of input devices in the native backend, since a single device can have multiple capabilities. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2331>
This commit is contained in:
parent
842295838f
commit
ff6f83f05e
@ -935,6 +935,29 @@ typedef enum /*< prefix=CLUTTER_FLOW >*/
|
|||||||
CLUTTER_FLOW_VERTICAL
|
CLUTTER_FLOW_VERTICAL
|
||||||
} ClutterFlowOrientation;
|
} ClutterFlowOrientation;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ClutterInputDeviceCapabilities:
|
||||||
|
* @CLUTTER_INPUT_CAPABILITY_NONE: No capabilities
|
||||||
|
* @CLUTTER_INPUT_CAPABILITY_POINTER: Pointer capability
|
||||||
|
* @CLUTTER_INPUT_CAPABILITY_KEYBOARD: Keyboard capability
|
||||||
|
* @CLUTTER_INPUT_CAPABILITY_TOUCHPAD: Touchpad gesture and scroll capability
|
||||||
|
* @CLUTTER_INPUT_CAPABILITY_TOUCH: Touch capability
|
||||||
|
* @CLUTTER_INPUT_CAPABILITY_TABLET_TOOL: Tablet tool capability
|
||||||
|
* @CLUTTER_INPUT_CAPABILITY_TABLET_PAD: Tablet pad capability
|
||||||
|
*
|
||||||
|
* Describes the capabilities of an input device.
|
||||||
|
**/
|
||||||
|
typedef enum /*< prefix=CLUTTER_INPUT_CAPABILITY >*/
|
||||||
|
{
|
||||||
|
CLUTTER_INPUT_CAPABILITY_NONE = 0,
|
||||||
|
CLUTTER_INPUT_CAPABILITY_POINTER = 1 << 0,
|
||||||
|
CLUTTER_INPUT_CAPABILITY_KEYBOARD = 1 << 1,
|
||||||
|
CLUTTER_INPUT_CAPABILITY_TOUCHPAD = 1 << 2,
|
||||||
|
CLUTTER_INPUT_CAPABILITY_TOUCH = 1 << 3,
|
||||||
|
CLUTTER_INPUT_CAPABILITY_TABLET_TOOL = 1 << 4,
|
||||||
|
CLUTTER_INPUT_CAPABILITY_TABLET_PAD = 1 << 5,
|
||||||
|
} ClutterInputCapabilities;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ClutterInputDeviceType:
|
* ClutterInputDeviceType:
|
||||||
* @CLUTTER_POINTER_DEVICE: A pointer device
|
* @CLUTTER_POINTER_DEVICE: A pointer device
|
||||||
|
Loading…
Reference in New Issue
Block a user