summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/efl_animation_object.eo
blob: 2543982fa1ce360e88020f24e93d3cccf6a414e2 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import efl_animation_types;

class Efl.Animation.Object (Efl.Object)
{
   [[Efl animation object class]]
   data: Efl_Animation_Object_Data;
   methods {
      @property auto_del {
         [[Auto delete property]]
         set {
         }
         get {
         }
         values {
            auto_del: bool; [[$true to delete animation object automatically when animation is finished or animation is cancelled, $false otherwise.]]
         }
      }
      start {
         [[Start animation.]]
      }
      cancel {
         [[Cancel animation.]]
      }
      pause {
         [[Pause animation.]]
      }
      resume {
         [[Resume animation.]]
      }
      progress_set @protected {
         [[Display the moment of animation according to the given progress.]]
         params {
            @in progress: double; [[The value between 0.0 and 1.0 which indicates the progress of the animation]]
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Object.destructor;
   }
   events {
      started; [[Animation is started.]]
      running; [[Animation is running.]]
      ended; [[Animation is ended.]]
   }
}