From 942f00ac4219040ac23c83d77240cdae796453fd Mon Sep 17 00:00:00 2001 From: zhanghang Date: Fri, 13 Jun 2025 10:07:51 +0800 Subject: [PATCH] =?UTF-8?q?grid=E7=BB=84=E4=BB=B6focusWrapMode=E5=9B=9E?= =?UTF-8?q?=E9=80=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhanghang --- arkui/ace_engine/native/native_node.h | 16 ---------------- arkui/ace_engine/native/native_type.h | 12 ------------ 2 files changed, 28 deletions(-) diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index a3daf6262e6..8f64e00dead 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -6464,22 +6464,6 @@ typedef enum { */ NODE_GRID_CACHED_COUNT, - /** - * @brief Defines the focus wrap mode for the Grid component. - * This attribute can be set, reset, and obtained as required through APIs. - * - * Format of the {@link ArkUI_AttributeItem} parameter for setting the attribute:\n - * .value[0].i32: focus wrap mode of the Grid component. - * The parameter type is {@link ArkUI_FocusWrapMode}. \n - * \n - * Format of the return value {@link ArkUI_AttributeItem}:\n - * .value[0].i32: focus wrap mode of the Grid component. - * The parameter type is {@link ArkUI_FocusWrapMode}. \n - * - * @since 20 - */ - NODE_GRID_FOCUS_WRAP_MODE, - /** * @brief Defines the column width of the text picker. * This attribute can be set, reset, and obtained as required through APIs. diff --git a/arkui/ace_engine/native/native_type.h b/arkui/ace_engine/native/native_type.h index 828ba5b7d30..d7d196d81c2 100644 --- a/arkui/ace_engine/native/native_type.h +++ b/arkui/ace_engine/native/native_type.h @@ -671,18 +671,6 @@ typedef enum { ARKUI_EFFECT_EDGE_END = 2, } ArkUI_EffectEdge; -/** - * @brief Enumerates the focus wrap mode of components. - * - * @since 20 - */ -typedef enum { - /** Default mode, where focus does not wrap when arrow keys are used. */ - ARKUI_FOCUS_WRAPMODE_DEFAULT = 0, - /** Focus wraps automatically when arrow keys are used. */ - ARKUI_FOCUS_WRAPMODE_WRAP_WITH_ARROW = 1, -} ArkUI_FocusWrapMode; - /** * @brief Enumerates the scroll directions for the component. * -- Gitee