From 41ed81836c4b728ba4ce7bd59c4409f6ac5b1988 Mon Sep 17 00:00:00 2001 From: zhanghang Date: Thu, 8 May 2025 16:43:05 +0800 Subject: [PATCH] =?UTF-8?q?Dialog=E7=BB=84=E4=BB=B6=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E8=83=8C=E6=99=AF=E6=A8=A1=E7=B3=8A?= =?UTF-8?q?=2018=E6=94=B919?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhanghang --- arkui/ace_engine/native/libace.ndk.json | 4 ++-- arkui/ace_engine/native/native_dialog.h | 8 ++++---- arkui/ace_engine/native/native_type.h | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/arkui/ace_engine/native/libace.ndk.json b/arkui/ace_engine/native/libace.ndk.json index 308b9963a..0b4f8d140 100644 --- a/arkui/ace_engine/native/libace.ndk.json +++ b/arkui/ace_engine/native/libace.ndk.json @@ -3176,11 +3176,11 @@ "name": "OH_ArkUI_CustomDialog_SetHoverModeArea" }, { - "first_introduced": "18", + "first_introduced": "19", "name": "OH_ArkUI_CustomDialog_SetBackgroundBlurStyleOptions" }, { - "first_introduced": "18", + "first_introduced": "19", "name": "OH_ArkUI_CustomDialog_SetBackgroundEffect" }, { diff --git a/arkui/ace_engine/native/native_dialog.h b/arkui/ace_engine/native/native_dialog.h index a9967b8e6..dc3d6cd19 100644 --- a/arkui/ace_engine/native/native_dialog.h +++ b/arkui/ace_engine/native/native_dialog.h @@ -662,7 +662,7 @@ typedef struct { * @return Returns the result code. * Returns {@link ARKUI_ERROR_CODE_NO_ERROR} if the operation is successful. * Returns {@link ARKUI_ERROR_CODE_PARAM_INVALID} if a parameter error occurs. - * @since 18 + * @since 19 */ int32_t (*setBackgroundBlurStyleOptions)( ArkUI_NativeDialogHandle handle, const ArkUI_AttributeItem* backgroundBlurStyleOptions); @@ -688,7 +688,7 @@ typedef struct { * @return Returns the result code. * Returns {@link ARKUI_ERROR_CODE_NO_ERROR} if the operation is successful. * Returns {@link ARKUI_ERROR_CODE_PARAM_INVALID} if a parameter error occurs. - * @since 18 + * @since 19 */ int32_t (*setBackgroundEffect)(ArkUI_NativeDialogHandle handle, const ArkUI_AttributeItem* backgroundEffect); } ArkUI_NativeDialogAPI_3; @@ -1153,7 +1153,7 @@ int32_t OH_ArkUI_CustomDialog_RegisterOnDidDisappearCallback( * @return Returns the result code. * Returns {@link ARKUI_ERROR_CODE_NO_ERROR} if the operation is successful. * Returns {@link ARKUI_ERROR_CODE_PARAM_INVALID} if a parameter error occurs. - * @since 18 + * @since 19 */ int32_t OH_ArkUI_CustomDialog_SetBackgroundBlurStyleOptions( ArkUI_CustomDialogOptions* options, const ArkUI_AttributeItem* backgroundBlurStyleOptions); @@ -1177,7 +1177,7 @@ int32_t OH_ArkUI_CustomDialog_SetBackgroundBlurStyleOptions( * @return Returns the result code. * Returns {@link ARKUI_ERROR_CODE_NO_ERROR} if the operation is successful. * Returns {@link ARKUI_ERROR_CODE_PARAM_INVALID} if a parameter error occurs. - * @since 18 + * @since 19 */ int32_t OH_ArkUI_CustomDialog_SetBackgroundEffect( ArkUI_CustomDialogOptions* options, const ArkUI_AttributeItem* backgroundEffect); diff --git a/arkui/ace_engine/native/native_type.h b/arkui/ace_engine/native/native_type.h index 2aabe73d2..4868e16bc 100644 --- a/arkui/ace_engine/native/native_type.h +++ b/arkui/ace_engine/native/native_type.h @@ -1167,7 +1167,7 @@ typedef enum { /** * @brief Enumerates the activation policies for the background blur effect. * - * @since 18 + * @since 19 */ typedef enum { /** The blur effect changes according to the window's focus state; -- Gitee