/**
* @brief Enumeration for events.
*/
typedef enum _Evas_Event_Flags
{
EVAS_EVENT_FLAG_NONE = 0, /**< No fancy flags set */
EVAS_EVENT_FLAG_ON_HOLD = (1 << 0), /**< The event is being delivered but should be put "on hold" until the on hold flag is unset \n
The event should be used for informational purposes and maybe for some indications visually, but should not actually perform anything. */
EVAS_EVENT_FLAG_ON_SCROLL = (1 << 1) /**< The event occurs while scrolling \n
For example, DOWN event occurs during scrolling; the event should be used for informational purposes and maybe for some indications visually, but should not actually perform anything. */
} Evas_Event_Flags; /**< Flags for Events */
I still cannot understand what return value should I set for my zoom gesture callback.
Who can explain the return value for the getsture call back function?
I’m trying to write the call back for zoom in/out getsture, but the return value puzzled me.
Let’s see the getsture example.
The following example adds callbacks for listening to the tap gesture:
The following example adds a callback for getting the tap gesture finishing notification:
Let’s see the definition for Evas_Event_Flags:
I still cannot understand what return value should I set for my zoom gesture callback.
Who can explain this?
BY
16 Apr 2025
Tizen Studio
BY
04 Nov 2024
Tizen Studio
BY
02 Apr 2024
Tizen Studio