From d3a0bbdf524f160b683f5db261382c306e71c58d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tyrychtr?= Date: Wed, 5 Feb 2025 18:37:28 +0100 Subject: [PATCH] clutter: Add ClutterEventFlag to notify a11y modifier click Use a Clutter event flag to communicate the the fact that the event is an a11y modifier first click. The accessibility modifiers will require special handling in the input and main threads. Part-of: --- clutter/clutter/clutter-enums.h | 1 + 1 file changed, 1 insertion(+) diff --git a/clutter/clutter/clutter-enums.h b/clutter/clutter/clutter-enums.h index b7ced940c..afafe8471 100644 --- a/clutter/clutter/clutter-enums.h +++ b/clutter/clutter/clutter-enums.h @@ -506,6 +506,7 @@ typedef enum /*< flags prefix=CLUTTER_EVENT >*/ CLUTTER_EVENT_FLAG_RELATIVE_MOTION = 1 << 3, CLUTTER_EVENT_FLAG_GRAB_NOTIFY = 1 << 4, CLUTTER_EVENT_FLAG_POINTER_EMULATED = 1 << 5, + CLUTTER_EVENT_FLAG_A11Y_MODIFIER_FIRST_CLICK = 1 << 6, } ClutterEventFlags; /**