blob: fdf42e2d8884d22db290f9404e75fefd0c8bcc5f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
abstract @beta Efl.Canvas.Animation_Group extends Efl.Canvas.Animation
{
[[Efl group animation abstract class]]
c_prefix: efl_animation_group;
data: Efl_Canvas_Animation_Group_Data;
methods {
animation_add {
[[Add the given animation to the animation group.]]
params {
@in animation: Efl.Canvas.Animation; [[The animation which needs to be added to the animation group]]
}
}
animation_del {
[[Delete the given animation from the animation group.]]
params {
@in animation: Efl.Canvas.Animation; [[The animation which needs to be deleted from the animation group]]
}
}
animations_get @const {
[[Get the animations of the animation group.]]
return: list<Efl.Canvas.Animation>; [[The animations of the animation group]]
}
}
implements {
Efl.Object.constructor;
Efl.Object.destructor;
Efl.Canvas.Animation.duration { set; }
Efl.Canvas.Animation.final_state_keep { set; }
Efl.Canvas.Animation.interpolator { set; }
}
}
|