summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/efl_canvas_animation_translate.eo
blob: 29daa144810f6b14be6e0fa13925b26defad31df (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
import efl_canvas_animation_types;

class Efl.Canvas.Animation_Translate (Efl.Canvas.Animation)
{
   [[Efl translate animation class]]
   eo_prefix: efl_animation_translate;
   data: Efl_Canvas_Animation_Translate_Data;
   methods {
      @property translate {
         [[Translate property]]
         set {
         }
         get {
         }
         values {
            from_x: int; [[Distance moved along x axis when animation starts]]
            from_y: int; [[Distance moved along y axis when animation starts]]
            to_x: int; [[Distance moved along x axis when animation ends]]
            to_y: int; [[Distance moved along y axis when animation ends]]
         }
      }
      @property translate_absolute {
         [[Translate absolute property]]
         set {
         }
         get {
         }
         values {
            from_x: int; [[X coordinate when animation starts]]
            from_y: int; [[Y coordinate when animation starts]]
            to_x: int; [[X coordinate when animation ends]]
            to_y: int; [[Y coordinate when animation ends]]
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Canvas.Animation.animation_apply;
   }
}