From 2ec35e9bd1c3996a46b0a91cd9f5d10f54efdd5c Mon Sep 17 00:00:00 2001 From: jykeon Date: Tue, 13 Jun 2023 16:57:04 +0900 Subject: [PATCH] Modify and Added comments. Change-Id: I6c19d88c1c8eccc428bc32e927834a8a4a82b017 Signed-off-by: jykeon --- src/lib/ecore/Ecore_Common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/ecore/Ecore_Common.h b/src/lib/ecore/Ecore_Common.h index 1e03d90..dac5651 100644 --- a/src/lib/ecore/Ecore_Common.h +++ b/src/lib/ecore/Ecore_Common.h @@ -3475,7 +3475,7 @@ EAPI Ecore_Device_Subclass ecore_device_subclass_get(const Ecore_Device *dev); /** * @brief Flags for Events * - * @since_tizen 7.5 + * @since_tizen 5.5 */ typedef enum _Ecore_Event_Flags { @@ -3483,6 +3483,7 @@ typedef enum _Ecore_Event_Flags ECORE_EVENT_FLAG_ON_HOLD = (1 << 0), /**< This event is being delivered but should be put "on hold" until the on hold flag is unset. The event should be used for informational purposes and maybe some indications visually, but not actually perform anything */ ECORE_EVENT_FLAG_ON_SCROLL = (1 << 1), /**< This event flag indicates the event occurs while scrolling; for example, DOWN event occurs during scrolling; the event should be used for informational purposes and maybe some indications visually, but not actually perform anything */ ECORE_EVENT_FLAG_CANCEL = (1 << 2), /**< This event flag indicates the event is canceled. The event should be used for informational purposes and maybe some indications visually, but not actually perform anything.*/ + //TIZEN_ONLY(20230419) ECORE_EVENT_FLAG_REPEAT = (1 << 3) /**< This event flag indicates the event is repeated. The event should be used for informational purposes and maybe some indications visually, but not actually perform anything.*/ } Ecore_Event_Flags; -- 2.7.4