summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/efl_animation_scale.eo
blob: 7e3be30b57a55cf5086b0a87db9b0518a768c6ff (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
import efl_animation_types;

class Efl.Animation.Scale (Efl.Animation)
{
   [[Efl scale animation class]]
   data: Efl_Animation_Scale_Data;
   methods {
      @property scale {
         set {
         }
         get {
         }
         values {
            from_scale_x: double; [[Scale factor along x axis when animation starts]]
            from_scale_y: double; [[Scale factor along y axis when animation starts]]
            to_scale_x: double; [[Scale factor along x axis when animation ends]]
            to_scale_y: double; [[Scale factor along y axis when animation ends]]
            pivot: Efl.Canvas.Object; [[Pivot object for the center point. If the pivot object is NULL, then the object is scaled on itself.]]
            cx: double; [[X relative coordinate of the center point. The left end is 0.0 and the right end is 1.0 (the center is 0.5).]]
            cy: double; [[Y relative coordinate of the center point. The top end is 0.0 and the bottom end is 1.0 (the center is 0.5).]]
         }
      }
      @property scale_absolute {
         set {
         }
         get {
         }
         values {
            from_scale_x: double; [[Scale factor along x axis when animation starts]]
            from_scale_y: double; [[Scale factor along y axis when animation starts]]
            to_scale_x: double; [[Scale factor along x axis when animation ends]]
            to_scale_y: double; [[Scale factor along y axis when animation ends]]
            cx: int; [[X absolute coordinate of the center point.]]
            cy: int; [[Y absolute coordinate of the center point.]]
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Animation.duration { set; }
   }
}