]> git.tdb.fi Git - libs/gui.git/blobdiff - source/input/gesturedetector.h
Combine swipe gestures into a single drag gesture
[libs/gui.git] / source / input / gesturedetector.h
index b2d0d4fdd36139411c3fb61e8b1062e575ea3ba4..fdd083de0372feb7cb4cde113881f6175d1e27cb 100644 (file)
@@ -11,17 +11,14 @@ class Touchscreen;
 enum Gesture
 {
        GESTURE_NONE,
-       GESTURE_SWIPE_DOWN,
-       GESTURE_SWIPE_UP,
-       GESTURE_SWIPE_LEFT,
-       GESTURE_SWIPE_RIGHT,
+       GESTURE_DRAG,
        GESTURE_PINCH
 };
 
 /**
 Interprets events from a Touchscreen as high-level gestures.  One button is
 provided for each type of gesture.  Axes 0 and 1 indicate the starting position
-of the gesture; axis 2 tracks its progress.  The progress axis may exhibit
+of the gesture; axes 2 and 3 track its progress.  The progress axis may exhibit
 absolute values greater than one.
 */
 class GestureDetector: public Device