From: WooHyun Jung Date: Wed, 10 Nov 2010 01:25:19 +0000 (+0900) Subject: [Evas.h] ON_SCROLL flag is added X-Git-Tag: accepted/2.0/20130306.225542~439 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b05bd4b44629321e4acd49e6594db315ddf13bd5;p=profile%2Fivi%2Fevas.git [Evas.h] ON_SCROLL flag is added --- diff --git a/src/lib/Evas.h b/src/lib/Evas.h index 4ded8fe..f627f93 100644 --- a/src/lib/Evas.h +++ b/src/lib/Evas.h @@ -127,7 +127,8 @@ typedef enum _Evas_Button_Flags typedef enum _Evas_Event_Flags { EVAS_EVENT_FLAG_NONE = 0, /**< No fancy flags set */ - EVAS_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 */ + EVAS_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 */ + EVAS_EVENT_FLAG_ON_SCROLL = (1 << 1) /**< This event flag indicates the event occurs while scrolling; for exameple, DOWN event occurs during scrolling; the event should be used for informational purposes and maybe some indications visually, but not actually perform anything */ } Evas_Event_Flags; /**< Flags for Events */ /**