summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2017-11-30 11:03:49 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2017-11-30 11:03:49 +0900
commitd957e0a6e48fdf4d3277492bccd62e31ff8a4037 (patch)
tree5959b2052c88c3d480cd005428717146610fde51
parentaef05c26d6eb1636304477371a1debcb3c12bea7 (diff)
downloadefl-d957e0a6e48fdf4d3277492bccd62e31ff8a4037.tar.gz
evas: Animation is a property not method set+get
-rw-r--r--src/lib/evas/canvas/efl_canvas_object.eo20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/lib/evas/canvas/efl_canvas_object.eo b/src/lib/evas/canvas/efl_canvas_object.eo
index 29d7357852..5b46c4f148 100644
--- a/src/lib/evas/canvas/efl_canvas_object.eo
+++ b/src/lib/evas/canvas/efl_canvas_object.eo
@@ -636,23 +636,19 @@ abstract Efl.Canvas.Object (Efl.Object, Efl.Gfx, Efl.Gfx.Stack, Efl.Animator,
}
return: bool @warn_unused; [[$true if the coords are inside the object, $false otherwise]]
}
- event_animation_set {
+ @property event_animation {
[[Set the $animation which starts when the given $event_name happens to the object.]]
- params {
+ get { legacy: null; }
+ set { legacy: null; }
+ keys {
@cref event_type: Efl.Event.Description;
[[The event description for which the given $animation is set.]]
- @in animation: Efl.Animation;
- [[The animation which starts when the given $event_name happens to the object.]]
}
- legacy: null;
- }
- event_animation_get {
- [[Get the $animation which starts when the given $event happens to the object.]]
- params {
- @cref event_type: Efl.Event.Description; [[The event description for which the given $animation is set.]]
+ values {
+ animation: Efl.Animation;
+ [[The animation which starts when the given $event_name
+ happens to the object.]]
}
- legacy: null;
- return: Efl.Animation @warn_unused;
}
}
implements {