From 0e2d316ec9edd0af4bc4c0a96aed1f8f2bed89f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=B0=B8=E5=87=AF?= Date: Mon, 23 Jun 2025 14:46:43 +0800 Subject: [PATCH] ArkUI_GestureRecognizerType add Click Drag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 刘永凯 --- arkui/ace_engine/native/native_gesture.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/arkui/ace_engine/native/native_gesture.h b/arkui/ace_engine/native/native_gesture.h index 5a4399108..0a3856276 100644 --- a/arkui/ace_engine/native/native_gesture.h +++ b/arkui/ace_engine/native/native_gesture.h @@ -209,6 +209,18 @@ typedef enum { /** A group of gestures. */ GROUP_GESTURE, + + /** Click + * + * @since 20 + */ + CLICK, + + /** Drag + * + * @since 20 + */ + DRAG, } ArkUI_GestureRecognizerType; /** -- Gitee