From 54d76622efaee2116740356db29ddaf02c5a0fe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=B0=B8=E5=87=AF?= Date: Thu, 26 Jun 2025 10:19:12 +0800 Subject: [PATCH] ArkUI_GestureRecognizerType add ON_CLICK DRAG_DROP 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 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/arkui/ace_engine/native/native_gesture.h b/arkui/ace_engine/native/native_gesture.h index ffa3ba5c3ee..f7cee1c2c3d 100644 --- a/arkui/ace_engine/native/native_gesture.h +++ b/arkui/ace_engine/native/native_gesture.h @@ -209,6 +209,20 @@ typedef enum { /** A group of gestures. */ GROUP_GESTURE, + + /** + * The click gesture registed through onClick. + * + * @since 20 + */ + CLICK_GESTURE, + + /** + * Drag gesture used for drag and drop. + * + * @since 20 + */ + DRAG_DROP, } ArkUI_GestureRecognizerType; /** -- Gitee