forked from AuroraMiddleware/gtk
4d2b39d98c
Causing a grab in the handler for ::pressed by, e.g., popping up a context menu will cause the gesture to be canceled and, subsequently, ::end and ::released to be fired, all while the button is still physically pressed. That results in no event being available to the ::released handler and garbage coordinates, given that gtk_gesture_get_point() returns FALSE. Emitting ::released can be avoided by checking the return value gtk_gesture_get_point().
520 lines
16 KiB
C
520 lines
16 KiB
C
/* GTK - The GIMP Toolkit
|
|
* Copyright (C) 2014 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Author(s): Carlos Garnacho <carlosg@gnome.org>
|
|
*/
|
|
|
|
/**
|
|
* SECTION:gtkgesturemultipress
|
|
* @Short_description: Multipress gesture
|
|
* @Title: GtkGestureMultiPress
|
|
*
|
|
* #GtkGestureMultiPress is a #GtkGesture implementation able to recognize
|
|
* multiple clicks on a nearby zone, which can be listened for through the
|
|
* #GtkGestureMultiPress::pressed signal. Whenever time or distance between
|
|
* clicks exceed the GTK+ defaults, #GtkGestureMultiPress::stopped is emitted,
|
|
* and the click counter is reset.
|
|
*
|
|
* Callers may also restrict the area that is considered valid for a >1
|
|
* touch/button press through gtk_gesture_multi_press_set_area(), so any
|
|
* click happening outside that area is considered to be a first click of
|
|
* its own.
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "gtkgestureprivate.h"
|
|
#include "gtkgesturemultipress.h"
|
|
#include "gtkgesturemultipressprivate.h"
|
|
#include "gtkprivate.h"
|
|
#include "gtkintl.h"
|
|
|
|
typedef struct _GtkGestureMultiPressPrivate GtkGestureMultiPressPrivate;
|
|
|
|
struct _GtkGestureMultiPressPrivate
|
|
{
|
|
GdkRectangle rect;
|
|
GdkDevice *current_device;
|
|
gdouble initial_press_x;
|
|
gdouble initial_press_y;
|
|
guint double_click_timeout_id;
|
|
guint n_presses;
|
|
guint n_release;
|
|
guint current_button;
|
|
guint rect_is_set : 1;
|
|
};
|
|
|
|
enum {
|
|
PRESSED,
|
|
RELEASED,
|
|
STOPPED,
|
|
UNPAIRED_RELEASE,
|
|
LAST_SIGNAL
|
|
};
|
|
|
|
static guint signals[LAST_SIGNAL] = { 0 };
|
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkGestureMultiPress, gtk_gesture_multi_press, GTK_TYPE_GESTURE_SINGLE)
|
|
|
|
static void
|
|
gtk_gesture_multi_press_finalize (GObject *object)
|
|
{
|
|
GtkGestureMultiPressPrivate *priv;
|
|
GtkGestureMultiPress *gesture;
|
|
|
|
gesture = GTK_GESTURE_MULTI_PRESS (object);
|
|
priv = gtk_gesture_multi_press_get_instance_private (gesture);
|
|
|
|
if (priv->double_click_timeout_id)
|
|
{
|
|
g_source_remove (priv->double_click_timeout_id);
|
|
priv->double_click_timeout_id = 0;
|
|
}
|
|
|
|
G_OBJECT_CLASS (gtk_gesture_multi_press_parent_class)->finalize (object);
|
|
}
|
|
|
|
static gboolean
|
|
gtk_gesture_multi_press_check (GtkGesture *gesture)
|
|
{
|
|
GtkGestureMultiPress *multi_press;
|
|
GtkGestureMultiPressPrivate *priv;
|
|
GList *sequences;
|
|
gboolean active;
|
|
|
|
multi_press = GTK_GESTURE_MULTI_PRESS (gesture);
|
|
priv = gtk_gesture_multi_press_get_instance_private (multi_press);
|
|
sequences = gtk_gesture_get_sequences (gesture);
|
|
|
|
active = g_list_length (sequences) == 1 || priv->double_click_timeout_id;
|
|
g_list_free (sequences);
|
|
|
|
return active;
|
|
}
|
|
|
|
static void
|
|
_gtk_gesture_multi_press_stop (GtkGestureMultiPress *gesture)
|
|
{
|
|
GtkGestureMultiPressPrivate *priv;
|
|
|
|
priv = gtk_gesture_multi_press_get_instance_private (gesture);
|
|
|
|
if (priv->n_presses == 0)
|
|
return;
|
|
|
|
priv->current_device = NULL;
|
|
priv->current_button = 0;
|
|
priv->n_presses = 0;
|
|
g_signal_emit (gesture, signals[STOPPED], 0);
|
|
_gtk_gesture_check (GTK_GESTURE (gesture));
|
|
}
|
|
|
|
static gboolean
|
|
_double_click_timeout_cb (gpointer user_data)
|
|
{
|
|
GtkGestureMultiPress *gesture = user_data;
|
|
GtkGestureMultiPressPrivate *priv;
|
|
|
|
priv = gtk_gesture_multi_press_get_instance_private (gesture);
|
|
priv->double_click_timeout_id = 0;
|
|
_gtk_gesture_multi_press_stop (gesture);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
_gtk_gesture_multi_press_update_timeout (GtkGestureMultiPress *gesture)
|
|
{
|
|
GtkGestureMultiPressPrivate *priv;
|
|
guint double_click_time;
|
|
GtkSettings *settings;
|
|
GtkWidget *widget;
|
|
|
|
priv = gtk_gesture_multi_press_get_instance_private (gesture);
|
|
|
|
if (priv->double_click_timeout_id)
|
|
g_source_remove (priv->double_click_timeout_id);
|
|
|
|
widget = gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (gesture));
|
|
settings = gtk_widget_get_settings (widget);
|
|
g_object_get (settings, "gtk-double-click-time", &double_click_time, NULL);
|
|
|
|
priv->double_click_timeout_id = g_timeout_add (double_click_time, _double_click_timeout_cb, gesture);
|
|
g_source_set_name_by_id (priv->double_click_timeout_id, "[gtk+] _double_click_timeout_cb");
|
|
}
|
|
|
|
static gboolean
|
|
_gtk_gesture_multi_press_check_within_threshold (GtkGestureMultiPress *gesture,
|
|
gdouble x,
|
|
gdouble y)
|
|
{
|
|
GtkGestureMultiPressPrivate *priv;
|
|
guint double_click_distance;
|
|
GtkSettings *settings;
|
|
GtkWidget *widget;
|
|
|
|
priv = gtk_gesture_multi_press_get_instance_private (gesture);
|
|
|
|
if (priv->n_presses == 0)
|
|
return TRUE;
|
|
|
|
widget = gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (gesture));
|
|
settings = gtk_widget_get_settings (widget);
|
|
g_object_get (settings,
|
|
"gtk-double-click-distance", &double_click_distance,
|
|
NULL);
|
|
|
|
if (ABS (priv->initial_press_x - x) < double_click_distance &&
|
|
ABS (priv->initial_press_y - y) < double_click_distance)
|
|
{
|
|
if (!priv->rect_is_set ||
|
|
(x >= priv->rect.x && x < priv->rect.x + priv->rect.width &&
|
|
y >= priv->rect.y && y < priv->rect.y + priv->rect.height))
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
gtk_gesture_multi_press_begin (GtkGesture *gesture,
|
|
GdkEventSequence *sequence)
|
|
{
|
|
GtkGestureMultiPress *multi_press;
|
|
GtkGestureMultiPressPrivate *priv;
|
|
guint n_presses, button = 1;
|
|
GdkEventSequence *current;
|
|
const GdkEvent *event;
|
|
GdkEventType event_type;
|
|
GdkDevice *device;
|
|
gdouble x, y;
|
|
|
|
if (!gtk_gesture_handles_sequence (gesture, sequence))
|
|
return;
|
|
|
|
multi_press = GTK_GESTURE_MULTI_PRESS (gesture);
|
|
priv = gtk_gesture_multi_press_get_instance_private (multi_press);
|
|
event = gtk_gesture_get_last_event (gesture, sequence);
|
|
current = gtk_gesture_single_get_current_sequence (GTK_GESTURE_SINGLE (gesture));
|
|
device = gdk_event_get_source_device (event);
|
|
event_type = gdk_event_get_event_type (event);
|
|
|
|
if (event_type == GDK_BUTTON_PRESS)
|
|
gdk_event_get_button (event, &button);
|
|
else if (event_type == GDK_TOUCH_BEGIN)
|
|
button = 1;
|
|
else
|
|
return;
|
|
|
|
/* Reset the gesture if the button number changes mid-recognition */
|
|
if (priv->n_presses > 0 &&
|
|
priv->current_button != button)
|
|
_gtk_gesture_multi_press_stop (multi_press);
|
|
|
|
/* Reset also if the device changed */
|
|
if (priv->current_device && priv->current_device != device)
|
|
_gtk_gesture_multi_press_stop (multi_press);
|
|
|
|
priv->current_device = device;
|
|
priv->current_button = button;
|
|
_gtk_gesture_multi_press_update_timeout (multi_press);
|
|
gtk_gesture_get_point (gesture, current, &x, &y);
|
|
|
|
if (!_gtk_gesture_multi_press_check_within_threshold (multi_press, x, y))
|
|
_gtk_gesture_multi_press_stop (multi_press);
|
|
|
|
/* Increment later the real counter, just if the gesture is
|
|
* reset on the pressed handler */
|
|
n_presses = priv->n_release = priv->n_presses + 1;
|
|
|
|
g_signal_emit (gesture, signals[PRESSED], 0, n_presses, x, y);
|
|
|
|
if (priv->n_presses == 0)
|
|
{
|
|
priv->initial_press_x = x;
|
|
priv->initial_press_y = y;
|
|
}
|
|
|
|
priv->n_presses++;
|
|
}
|
|
|
|
static void
|
|
gtk_gesture_multi_press_update (GtkGesture *gesture,
|
|
GdkEventSequence *sequence)
|
|
{
|
|
GtkGestureMultiPress *multi_press;
|
|
GdkEventSequence *current;
|
|
gdouble x, y;
|
|
|
|
multi_press = GTK_GESTURE_MULTI_PRESS (gesture);
|
|
current = gtk_gesture_single_get_current_sequence (GTK_GESTURE_SINGLE (gesture));
|
|
gtk_gesture_get_point (gesture, current, &x, &y);
|
|
|
|
if (!_gtk_gesture_multi_press_check_within_threshold (multi_press, x, y))
|
|
_gtk_gesture_multi_press_stop (multi_press);
|
|
}
|
|
|
|
static void
|
|
gtk_gesture_multi_press_end (GtkGesture *gesture,
|
|
GdkEventSequence *sequence)
|
|
{
|
|
GtkGestureMultiPress *multi_press;
|
|
GtkGestureMultiPressPrivate *priv;
|
|
GdkEventSequence *current;
|
|
gdouble x, y;
|
|
gboolean interpreted;
|
|
GtkEventSequenceState state;
|
|
|
|
multi_press = GTK_GESTURE_MULTI_PRESS (gesture);
|
|
priv = gtk_gesture_multi_press_get_instance_private (multi_press);
|
|
current = gtk_gesture_single_get_current_sequence (GTK_GESTURE_SINGLE (gesture));
|
|
interpreted = gtk_gesture_get_point (gesture, current, &x, &y);
|
|
state = gtk_gesture_get_sequence_state (gesture, current);
|
|
|
|
if (state != GTK_EVENT_SEQUENCE_DENIED && interpreted)
|
|
g_signal_emit (gesture, signals[RELEASED], 0, priv->n_release, x, y);
|
|
|
|
priv->n_release = 0;
|
|
}
|
|
|
|
static void
|
|
gtk_gesture_multi_press_cancel (GtkGesture *gesture,
|
|
GdkEventSequence *sequence)
|
|
{
|
|
_gtk_gesture_multi_press_stop (GTK_GESTURE_MULTI_PRESS (gesture));
|
|
GTK_GESTURE_CLASS (gtk_gesture_multi_press_parent_class)->cancel (gesture, sequence);
|
|
}
|
|
|
|
static void
|
|
gtk_gesture_multi_press_reset (GtkEventController *controller)
|
|
{
|
|
_gtk_gesture_multi_press_stop (GTK_GESTURE_MULTI_PRESS (controller));
|
|
GTK_EVENT_CONTROLLER_CLASS (gtk_gesture_multi_press_parent_class)->reset (controller);
|
|
}
|
|
|
|
static gboolean
|
|
gtk_gesture_multi_press_handle_event (GtkEventController *controller,
|
|
const GdkEvent *event)
|
|
{
|
|
GtkEventControllerClass *parent_controller;
|
|
GtkGestureMultiPressPrivate *priv;
|
|
GdkEventSequence *sequence;
|
|
guint button;
|
|
gdouble x, y;
|
|
|
|
priv = gtk_gesture_multi_press_get_instance_private (GTK_GESTURE_MULTI_PRESS (controller));
|
|
parent_controller = GTK_EVENT_CONTROLLER_CLASS (gtk_gesture_multi_press_parent_class);
|
|
sequence = gdk_event_get_event_sequence (event);
|
|
|
|
if (priv->n_presses == 0 &&
|
|
!gtk_gesture_handles_sequence (GTK_GESTURE (controller), sequence) &&
|
|
(gdk_event_get_event_type (event) == GDK_BUTTON_RELEASE ||
|
|
gdk_event_get_event_type (event) == GDK_TOUCH_END))
|
|
{
|
|
if (!gdk_event_get_button (event, &button))
|
|
button = 0;
|
|
gdk_event_get_coords (event, &x, &y);
|
|
g_signal_emit (controller, signals[UNPAIRED_RELEASE], 0,
|
|
x, y, button, sequence);
|
|
}
|
|
|
|
return parent_controller->handle_event (controller, event);
|
|
}
|
|
|
|
static void
|
|
gtk_gesture_multi_press_class_init (GtkGestureMultiPressClass *klass)
|
|
{
|
|
GtkEventControllerClass *controller_class = GTK_EVENT_CONTROLLER_CLASS (klass);
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
GtkGestureClass *gesture_class = GTK_GESTURE_CLASS (klass);
|
|
|
|
object_class->finalize = gtk_gesture_multi_press_finalize;
|
|
|
|
gesture_class->check = gtk_gesture_multi_press_check;
|
|
gesture_class->begin = gtk_gesture_multi_press_begin;
|
|
gesture_class->update = gtk_gesture_multi_press_update;
|
|
gesture_class->end = gtk_gesture_multi_press_end;
|
|
gesture_class->cancel = gtk_gesture_multi_press_cancel;
|
|
|
|
controller_class->reset = gtk_gesture_multi_press_reset;
|
|
controller_class->handle_event = gtk_gesture_multi_press_handle_event;
|
|
|
|
/**
|
|
* GtkGestureMultiPress::pressed:
|
|
* @gesture: the object which received the signal
|
|
* @n_press: how many touch/button presses happened with this one
|
|
* @x: The X coordinate, in widget allocation coordinates
|
|
* @y: The Y coordinate, in widget allocation coordinates
|
|
*
|
|
* This signal is emitted whenever a button or touch press happens.
|
|
*/
|
|
signals[PRESSED] =
|
|
g_signal_new (I_("pressed"),
|
|
G_TYPE_FROM_CLASS (klass),
|
|
G_SIGNAL_RUN_LAST,
|
|
G_STRUCT_OFFSET (GtkGestureMultiPressClass, pressed),
|
|
NULL, NULL, NULL,
|
|
G_TYPE_NONE, 3, G_TYPE_INT,
|
|
G_TYPE_DOUBLE, G_TYPE_DOUBLE);
|
|
|
|
/**
|
|
* GtkGestureMultiPress::released:
|
|
* @gesture: the object which received the signal
|
|
* @n_press: number of press that is paired with this release
|
|
* @x: The X coordinate, in widget allocation coordinates
|
|
* @y: The Y coordinate, in widget allocation coordinates
|
|
*
|
|
* This signal is emitted when a button or touch is released. @n_press
|
|
* will report the number of press that is paired to this event, note
|
|
* that #GtkGestureMultiPress::stopped may have been emitted between the
|
|
* press and its release, @n_press will only start over at the next press.
|
|
*/
|
|
signals[RELEASED] =
|
|
g_signal_new (I_("released"),
|
|
G_TYPE_FROM_CLASS (klass),
|
|
G_SIGNAL_RUN_LAST,
|
|
G_STRUCT_OFFSET (GtkGestureMultiPressClass, released),
|
|
NULL, NULL, NULL,
|
|
G_TYPE_NONE, 3, G_TYPE_INT,
|
|
G_TYPE_DOUBLE, G_TYPE_DOUBLE);
|
|
/**
|
|
* GtkGestureMultiPress::stopped:
|
|
* @gesture: the object which received the signal
|
|
*
|
|
* This signal is emitted whenever any time/distance threshold has
|
|
* been exceeded.
|
|
*/
|
|
signals[STOPPED] =
|
|
g_signal_new (I_("stopped"),
|
|
G_TYPE_FROM_CLASS (klass),
|
|
G_SIGNAL_RUN_LAST,
|
|
G_STRUCT_OFFSET (GtkGestureMultiPressClass, stopped),
|
|
NULL, NULL, NULL,
|
|
G_TYPE_NONE, 0);
|
|
|
|
/**
|
|
* GtkGestureMultiPress::unpaired-release
|
|
* @gesture: the object which received the signal
|
|
* @x: X coordinate of the event
|
|
* @y: Y coordinate of the event
|
|
* @button: Button being released
|
|
* @sequence: Sequence being released
|
|
*
|
|
* This signal is emitted whenever the gesture receives a release
|
|
* event that had no previous corresponding press. Due to implicit
|
|
* grabs, this can only happen on situations where input is grabbed
|
|
* elsewhere mid-press or the pressed widget voluntarily relinquishes
|
|
* its implicit grab.
|
|
*/
|
|
signals[UNPAIRED_RELEASE] =
|
|
g_signal_new (I_("unpaired-release"),
|
|
G_TYPE_FROM_CLASS (klass),
|
|
G_SIGNAL_RUN_LAST,
|
|
0, NULL, NULL, NULL,
|
|
G_TYPE_NONE, 4,
|
|
G_TYPE_DOUBLE, G_TYPE_DOUBLE,
|
|
G_TYPE_UINT, GDK_TYPE_EVENT_SEQUENCE);
|
|
}
|
|
|
|
static void
|
|
gtk_gesture_multi_press_init (GtkGestureMultiPress *gesture)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* gtk_gesture_multi_press_new:
|
|
*
|
|
* Returns a newly created #GtkGesture that recognizes single and multiple
|
|
* presses.
|
|
*
|
|
* Returns: a newly created #GtkGestureMultiPress
|
|
**/
|
|
GtkGesture *
|
|
gtk_gesture_multi_press_new (void)
|
|
{
|
|
return g_object_new (GTK_TYPE_GESTURE_MULTI_PRESS,
|
|
NULL);
|
|
}
|
|
|
|
/**
|
|
* gtk_gesture_multi_press_set_area:
|
|
* @gesture: a #GtkGestureMultiPress
|
|
* @rect: (allow-none): rectangle to receive coordinates on
|
|
*
|
|
* If @rect is non-%NULL, the press area will be checked to be
|
|
* confined within the rectangle, otherwise the button count
|
|
* will be reset so the press is seen as being the first one.
|
|
* If @rect is %NULL, the area will be reset to an unrestricted
|
|
* state.
|
|
*
|
|
* Note: The rectangle is only used to determine whether any
|
|
* non-first click falls within the expected area. This is not
|
|
* akin to an input shape.
|
|
**/
|
|
void
|
|
gtk_gesture_multi_press_set_area (GtkGestureMultiPress *gesture,
|
|
const GdkRectangle *rect)
|
|
{
|
|
GtkGestureMultiPressPrivate *priv;
|
|
|
|
g_return_if_fail (GTK_IS_GESTURE_MULTI_PRESS (gesture));
|
|
|
|
priv = gtk_gesture_multi_press_get_instance_private (gesture);
|
|
|
|
if (!rect)
|
|
priv->rect_is_set = FALSE;
|
|
else
|
|
{
|
|
priv->rect_is_set = TRUE;
|
|
priv->rect = *rect;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* gtk_gesture_multi_press_get_area:
|
|
* @gesture: a #GtkGestureMultiPress
|
|
* @rect: (out): return location for the press area
|
|
*
|
|
* If an area was set through gtk_gesture_multi_press_set_area(),
|
|
* this function will return %TRUE and fill in @rect with the
|
|
* press area. See gtk_gesture_multi_press_set_area() for more
|
|
* details on what the press area represents.
|
|
*
|
|
* Returns: %TRUE if @rect was filled with the press area
|
|
**/
|
|
gboolean
|
|
gtk_gesture_multi_press_get_area (GtkGestureMultiPress *gesture,
|
|
GdkRectangle *rect)
|
|
{
|
|
GtkGestureMultiPressPrivate *priv;
|
|
|
|
g_return_val_if_fail (GTK_IS_GESTURE_MULTI_PRESS (gesture), FALSE);
|
|
|
|
priv = gtk_gesture_multi_press_get_instance_private (gesture);
|
|
|
|
if (rect)
|
|
{
|
|
if (priv->rect_is_set)
|
|
*rect = priv->rect;
|
|
else
|
|
{
|
|
rect->x = rect->y = G_MININT;
|
|
rect->width = rect->height = G_MAXINT;
|
|
}
|
|
}
|
|
|
|
return priv->rect_is_set;
|
|
}
|