diff options
author | Jaehyun Cho <jae_hyun.cho@samsung.com> | 2018-04-10 22:09:39 +0900 |
---|---|---|
committer | Jaehyun Cho <jae_hyun.cho@samsung.com> | 2018-04-19 23:39:32 +0900 |
commit | e3315baaa324a30595771e446e4d3cff6022fda6 (patch) | |
tree | 944a855d921661f61167e3e0ea0d6db7f92a6208 /src/lib/evas/Evas_Eo.h | |
parent | 939690a8a99b04d9e67b6b90bc80de639a7e8941 (diff) |
efl_canvas_object: Add events for state changes of object's animation
Add events to notice the state changes of canvas object's animation.
anim_started, anim_running, and anim_ended events are added.
Diffstat (limited to 'src/lib/evas/Evas_Eo.h')
-rw-r--r-- | src/lib/evas/Evas_Eo.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/evas/Evas_Eo.h b/src/lib/evas/Evas_Eo.h index 7a44a0985d..c6a6a935bb 100644 --- a/src/lib/evas/Evas_Eo.h +++ b/src/lib/evas/Evas_Eo.h | |||
@@ -136,6 +136,11 @@ struct _Efl_Canvas_Animation_Player_Event_Running | |||
136 | double progress; | 136 | double progress; |
137 | }; | 137 | }; |
138 | 138 | ||
139 | typedef struct Efl_Canvas_Object_Animation_Event_Info | ||
140 | { | ||
141 | const Efl_Event_Description *event_type; | ||
142 | } Efl_Canvas_Object_Animation_Event_Info; | ||
143 | |||
139 | /** | 144 | /** |
140 | * @ingroup Evas_Object_Rectangle | 145 | * @ingroup Evas_Object_Rectangle |
141 | * | 146 | * |