[gtk+/wip/garnacho/touchpad-gestures: 67/71] gtkgesturedrag: Handle touchpad swipe events



commit b0e2269c36adf7230e79fc6b1e58f47a2b5b78dc
Author: Carlos Garnacho <carlosg gnome org>
Date:   Fri Jul 24 13:05:31 2015 +0200

    gtkgesturedrag: Handle touchpad swipe events
    
    These will only trigger the gesture if it's been created with
    the same GtkGesture::n-points than n_fingers in the event.

 gtk/gtkgesturedrag.c |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtkgesturedrag.c b/gtk/gtkgesturedrag.c
index bee5596..7d80cef 100644
--- a/gtk/gtkgesturedrag.c
+++ b/gtk/gtkgesturedrag.c
@@ -56,6 +56,26 @@ static guint signals[N_SIGNALS] = { 0 };
 
 G_DEFINE_TYPE_WITH_PRIVATE (GtkGestureDrag, gtk_gesture_drag, GTK_TYPE_GESTURE_SINGLE)
 
+static gboolean
+gtk_gesture_drag_filter_event (GtkEventController *controller,
+                               const GdkEvent     *event)
+{
+  /* Let touchpad swipe events go through, only if they match n-points  */
+  if (event->type == GDK_TOUCHPAD_SWIPE)
+    {
+      guint n_points;
+
+      g_object_get (G_OBJECT (controller), "n-points", &n_points, NULL);
+
+      if (event->touchpad_swipe.n_fingers == n_points)
+        return FALSE;
+      else
+        return TRUE;
+    }
+
+  return GTK_EVENT_CONTROLLER_CLASS (gtk_gesture_drag_parent_class)->filter_event (controller, event);
+}
+
 static void
 gtk_gesture_drag_begin (GtkGesture       *gesture,
                         GdkEventSequence *sequence)
@@ -110,6 +130,9 @@ static void
 gtk_gesture_drag_class_init (GtkGestureDragClass *klass)
 {
   GtkGestureClass *gesture_class = GTK_GESTURE_CLASS (klass);
+  GtkEventControllerClass *event_controller_class = GTK_EVENT_CONTROLLER_CLASS (klass);
+
+  event_controller_class->filter_event = gtk_gesture_drag_filter_event;
 
   gesture_class->begin = gtk_gesture_drag_begin;
   gesture_class->update = gtk_gesture_drag_update;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]