summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/efl_animation_scale.eo
blob: 79e44eb307c60f8730f9662d6f9c490e50ed9d8a (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
47
48
49
50
51
52
53
54
55
import efl_animation_types;

class Efl.Animation.Scale (Efl.Animation)
{
   [[Efl scale animation class]]
   legacy_prefix: evas_object_animation;
   data: Evas_Object_Animation_Scale_Data;
   methods {
      @property scale {
         set {
         }
         get {
         }
         values {
            from_scale: double; [[Scale factor when animation starts]]
            to_scale: double; [[Scale factor when animation ends]]
         }
      }
      @property scale_x {
         set {
         }
         get {
         }
         values {
            from_x: double; [[Scale factor along x axis when animation starts]]
            to_x: double; [[Scale factor along x axis when animation ends]]
         }
      }
      @property scale_y {
         set {
         }
         get {
         }
         values {
            from_y: double; [[Scale factor along y axis when animation starts]]
            to_y: double; [[Scale factor along y axis when animation ends]]
         }
      }
      @property scale_z {
         set {
         }
         get {
         }
         values {
            from_z: double; [[Scale factor along z axis when animation starts]]
            to_z: double; [[Scale factor along z axis when animation ends]]
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Object.destructor;
      Efl.Animation.dup;
   }
}