Struct
ClutterTouchpadSwipeEvent
Description [src]
struct ClutterTouchpadSwipeEvent {
ClutterEventType type;
guint32 time;
ClutterEventFlags flags;
ClutterStage* stage;
ClutterTouchpadGesturePhase phase;
guint n_fingers;
gfloat x;
gfloat y;
gfloat dx;
gfloat dy;
gfloat dx_unaccel;
gfloat dy_unaccel;
}
Used for touchpad swipe gesture events.
The current state of the gesture will be determined by the phase field.4
Structure members
typeEvent type.
timeEvent time.
flagsEvent flags.
stageEvent source stage.
phaseThe current phase of the gesture.
n_fingersThe number of fingers triggering the swipe.
xThe X coordinate of the pointer, relative to the stage.
yThe Y coordinate of the pointer, relative to the stage.
dxMovement delta of the swipe center point in the X axis.
dyMovement delta of the swipe center point in the Y axis.
dx_unaccelUnaccelerated movement delta of the swipe center point in the X axis.
dy_unaccelUnaccelerated movement delta of the swipe center point in the Y axis.