From b8f872510be288ce33add51f24f054c374d7a5a5 Mon Sep 17 00:00:00 2001 From: panyongchao Date: Wed, 20 Aug 2025 10:29:46 +0800 Subject: [PATCH] add icon enum Signed-off-by: panyongchao Change-Id: I1c2b8fe6048759031a1f388d426cb51a750c73a0 --- interfaces/inner_api/security_component/include/paste_button.h | 1 + interfaces/inner_api/security_component/include/save_button.h | 1 + 2 files changed, 2 insertions(+) diff --git a/interfaces/inner_api/security_component/include/paste_button.h b/interfaces/inner_api/security_component/include/paste_button.h index cc3f4ef..e666913 100644 --- a/interfaces/inner_api/security_component/include/paste_button.h +++ b/interfaces/inner_api/security_component/include/paste_button.h @@ -30,6 +30,7 @@ enum class PasteDesc : int32_t { enum class PasteIcon : int32_t { FILLED_ICON = 0, LINE_ICON = 1, + SYMBOL_ICON = 3, MAX_ICON_TYPE }; diff --git a/interfaces/inner_api/security_component/include/save_button.h b/interfaces/inner_api/security_component/include/save_button.h index ef9d039..5ca696a 100644 --- a/interfaces/inner_api/security_component/include/save_button.h +++ b/interfaces/inner_api/security_component/include/save_button.h @@ -44,6 +44,7 @@ enum class SaveIcon : int32_t { FILLED_ICON = 0, LINE_ICON = 1, PICTURE_ICON = 2, + SYMBOL_ICON = 3, MAX_ICON_TYPE }; -- Gitee