efl/src/lib/evas/gesture/efl_canvas_gesture.eo

38 lines
862 B
Plaintext

import efl_canvas_gesture_types;
abstract @beta Efl.Canvas.Gesture extends Efl.Object
{
[[EFL Gesture abstract class]]
c_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]]
}
}
}
}