efl_canvas_animation_player: improve docs

Reviewers: segfaultxavi

Reviewed By: segfaultxavi

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10250
This commit is contained in:
Marcel Hollerbach 2019-09-30 17:03:01 +02:00 committed by Xavi Artigas
parent f3199ba04b
commit f324e9fc11
1 changed files with 16 additions and 10 deletions

View File

@ -1,13 +1,19 @@
class @beta Efl.Canvas.Animation_Player extends Efl.Object implements Efl.Player, Efl.Playable
{
[[Efl animation object class]]
[[Player object for playing canvas animations.
This player object can be used to play animations on a @.target canvas object.
The type of animation depends on the @.animation object.
]]
c_prefix: efl_animation_player;
methods {
@property animation {
set {}
get {}
[[The animation to play.
This animation object will be used to change the visual state of the @.target object.
]]
values {
animation: Efl.Canvas.Animation;
animation: Efl.Canvas.Animation; [[An already-configured animation object.]]
}
}
@property auto_del {
@ -22,13 +28,13 @@ class @beta Efl.Canvas.Animation_Player extends Efl.Object implements Efl.Player
}
}
@property target {
[[Target object property]]
set {
}
get {
}
[[The canvas object to apply the effects of the @.animation object on.
The @.animation object can change several properties of the $target.
You should ensure that nothing else is trying to change them too.
]]
values {
target: Efl.Canvas.Object; [[Target object which is applied animation.]]
target: Efl.Canvas.Object; [[Canvas object to animate.]]
}
}
}