summaryrefslogtreecommitdiff
path: root/src/lib/evas/gesture/efl_gesture.eo
blob: 5fd6de991313c673ceca451ab54185fc8546aec5 (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
import efl_gesture_types;

abstract Efl.Gesture(Efl.Object)
{
   [[EFL Gesture abstract class]]
   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.Gesture.State; [[gesture state]]
         }
      }
      @property hotspot {
         [[This property holds the hotspot of the current gesture.]]
         get {
         }
         set {
         }
         values {
            hotspot: Eina.Vector2;[[hotspot co-ordinate]]
         }
      }
   }
}