summaryrefslogtreecommitdiff
path: root/src/lib/evas/gesture/efl_canvas_gesture.eo
blob: d4abd7c6714cee26098d9a8cc8043be8fe6f01ca (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
import efl_canvas_gesture_types;

abstract Efl.Canvas.Gesture(Efl.Object)
{
   [[EFL Gesture abstract class]]
   eo_prefix: efl_gesture;
   methods {
      @property type {
         [[This property holds the type of the gesture.]]
         get {
         }
         values {
            @cref type: Efl.Event_Description; [[gesture type]]
         }
      }
      @property state {
         [[This property holds the current state of the gesture.]]
         get {
         }
         set {
         }
         values {
            state: Efl.Canvas.Gesture_State; [[gesture state]]
         }
      }
      @property hotspot {
         [[This property holds the hotspot of the current gesture.]]
         get {
         }
         set {
         }
         values {
            hotspot: Eina.Vector2;[[hotspot co-ordinate]]
         }
      }
   }
}