2013-01-17 22:57:06 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 2012, One Laptop Per Child.
|
|
|
|
* 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>
|
|
|
|
*/
|
2014-04-09 16:28:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gtkgesturelongpress
|
2014-05-20 00:45:42 +00:00
|
|
|
* @Short_description: "Press and Hold" gesture
|
2014-04-09 16:28:12 +00:00
|
|
|
* @Title: GtkGestureLongPress
|
|
|
|
*
|
|
|
|
* #GtkGestureLongPress is a #GtkGesture implementation able to recognize
|
2014-04-10 11:43:41 +00:00
|
|
|
* long presses, triggering the #GtkGestureLongPress::pressed after the
|
2014-04-09 16:28:12 +00:00
|
|
|
* timeout is exceeded.
|
|
|
|
*
|
|
|
|
* If the touchpoint is lifted before the timeout passes, or if it drifts
|
|
|
|
* too far of the initial press point, the #GtkGestureLongPress::cancelled
|
|
|
|
* signal will be emitted.
|
|
|
|
*/
|
|
|
|
|
2013-01-17 22:57:06 +00:00
|
|
|
#include "config.h"
|
2014-05-06 02:40:18 +00:00
|
|
|
#include "gtkgesturelongpress.h"
|
|
|
|
#include "gtkgesturelongpressprivate.h"
|
2014-05-06 16:04:25 +00:00
|
|
|
#include "gtkgestureprivate.h"
|
2013-01-17 22:57:06 +00:00
|
|
|
#include "gtkmarshalers.h"
|
2020-01-01 18:22:29 +00:00
|
|
|
#include "gtkdragsource.h"
|
2013-01-17 22:57:06 +00:00
|
|
|
#include "gtkprivate.h"
|
|
|
|
#include "gtkintl.h"
|
2019-06-02 21:07:27 +00:00
|
|
|
#include "gtkmarshalers.h"
|
2013-01-17 22:57:06 +00:00
|
|
|
|
|
|
|
typedef struct _GtkGestureLongPressPrivate GtkGestureLongPressPrivate;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
PRESSED,
|
|
|
|
CANCELLED,
|
|
|
|
N_SIGNALS
|
|
|
|
};
|
|
|
|
|
2015-02-22 22:48:39 +00:00
|
|
|
enum {
|
|
|
|
PROP_DELAY_FACTOR = 1
|
|
|
|
};
|
|
|
|
|
2013-01-17 22:57:06 +00:00
|
|
|
struct _GtkGestureLongPressPrivate
|
|
|
|
{
|
|
|
|
gdouble initial_x;
|
|
|
|
gdouble initial_y;
|
|
|
|
|
2015-02-22 22:48:39 +00:00
|
|
|
gdouble delay_factor;
|
2013-01-17 22:57:06 +00:00
|
|
|
guint timeout_id;
|
|
|
|
guint delay;
|
|
|
|
guint cancelled : 1;
|
|
|
|
guint triggered : 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint signals[N_SIGNALS] = { 0 };
|
|
|
|
|
2014-03-21 17:57:32 +00:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkGestureLongPress, gtk_gesture_long_press, GTK_TYPE_GESTURE_SINGLE)
|
2013-01-17 22:57:06 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_gesture_long_press_init (GtkGestureLongPress *gesture)
|
|
|
|
{
|
2015-02-22 22:48:39 +00:00
|
|
|
GtkGestureLongPressPrivate *priv;
|
|
|
|
|
|
|
|
priv = gtk_gesture_long_press_get_instance_private (GTK_GESTURE_LONG_PRESS (gesture));
|
|
|
|
priv->delay_factor = 1.0;
|
2013-01-17 22:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gtk_gesture_long_press_check (GtkGesture *gesture)
|
|
|
|
{
|
|
|
|
GtkGestureLongPressPrivate *priv;
|
|
|
|
|
|
|
|
priv = gtk_gesture_long_press_get_instance_private (GTK_GESTURE_LONG_PRESS (gesture));
|
|
|
|
|
|
|
|
if (priv->cancelled)
|
|
|
|
return FALSE;
|
|
|
|
|
2014-04-08 19:11:27 +00:00
|
|
|
return GTK_GESTURE_CLASS (gtk_gesture_long_press_parent_class)->check (gesture);
|
2013-01-17 22:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_gtk_gesture_long_press_timeout (gpointer user_data)
|
|
|
|
{
|
|
|
|
GtkGestureLongPress *gesture = user_data;
|
|
|
|
GtkGestureLongPressPrivate *priv;
|
|
|
|
GdkEventSequence *sequence;
|
|
|
|
gdouble x, y;
|
|
|
|
|
|
|
|
priv = gtk_gesture_long_press_get_instance_private (gesture);
|
|
|
|
sequence = gtk_gesture_get_last_updated_sequence (GTK_GESTURE (gesture));
|
|
|
|
gtk_gesture_get_point (GTK_GESTURE (gesture), sequence, &x, &y);
|
|
|
|
|
|
|
|
priv->timeout_id = 0;
|
|
|
|
priv->triggered = TRUE;
|
|
|
|
g_signal_emit (gesture, signals[PRESSED], 0, x, y);
|
|
|
|
|
2017-11-19 13:29:37 +00:00
|
|
|
return G_SOURCE_REMOVE;
|
2013-01-17 22:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_gesture_long_press_begin (GtkGesture *gesture,
|
|
|
|
GdkEventSequence *sequence)
|
|
|
|
{
|
|
|
|
GtkGestureLongPressPrivate *priv;
|
2020-02-16 16:09:02 +00:00
|
|
|
GdkEvent *event;
|
2017-08-25 14:47:11 +00:00
|
|
|
GdkEventType event_type;
|
2014-03-31 10:27:43 +00:00
|
|
|
GtkWidget *widget;
|
|
|
|
gint delay;
|
2013-01-17 22:57:06 +00:00
|
|
|
|
|
|
|
priv = gtk_gesture_long_press_get_instance_private (GTK_GESTURE_LONG_PRESS (gesture));
|
2014-03-21 17:57:32 +00:00
|
|
|
sequence = gtk_gesture_single_get_current_sequence (GTK_GESTURE_SINGLE (gesture));
|
2013-01-17 22:57:06 +00:00
|
|
|
event = gtk_gesture_get_last_event (gesture, sequence);
|
|
|
|
|
2017-08-25 14:47:11 +00:00
|
|
|
if (!event)
|
|
|
|
return;
|
|
|
|
|
|
|
|
event_type = gdk_event_get_event_type (event);
|
|
|
|
|
|
|
|
if (event_type != GDK_BUTTON_PRESS &&
|
|
|
|
event_type != GDK_TOUCH_BEGIN)
|
2013-01-17 22:57:06 +00:00
|
|
|
return;
|
|
|
|
|
2014-03-31 10:27:43 +00:00
|
|
|
widget = gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (gesture));
|
|
|
|
g_object_get (gtk_widget_get_settings (widget),
|
2015-02-22 22:48:39 +00:00
|
|
|
"gtk-long-press-time", &delay,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
delay = (gint)(priv->delay_factor * delay);
|
2014-03-31 10:27:43 +00:00
|
|
|
|
2013-01-17 22:57:06 +00:00
|
|
|
gtk_gesture_get_point (gesture, sequence,
|
|
|
|
&priv->initial_x, &priv->initial_y);
|
2018-02-02 14:51:47 +00:00
|
|
|
priv->timeout_id = g_timeout_add (delay, _gtk_gesture_long_press_timeout, gesture);
|
2019-02-05 10:26:20 +00:00
|
|
|
g_source_set_name_by_id (priv->timeout_id, "[gtk] _gtk_gesture_long_press_timeout");
|
2013-01-17 22:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_gesture_long_press_update (GtkGesture *gesture,
|
|
|
|
GdkEventSequence *sequence)
|
|
|
|
{
|
|
|
|
GtkGestureLongPressPrivate *priv;
|
|
|
|
GtkWidget *widget;
|
|
|
|
gdouble x, y;
|
|
|
|
|
|
|
|
widget = gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (gesture));
|
|
|
|
priv = gtk_gesture_long_press_get_instance_private (GTK_GESTURE_LONG_PRESS (gesture));
|
|
|
|
gtk_gesture_get_point (gesture, sequence, &x, &y);
|
|
|
|
|
|
|
|
if (gtk_drag_check_threshold (widget, priv->initial_x, priv->initial_y, x, y))
|
|
|
|
{
|
|
|
|
if (priv->timeout_id)
|
|
|
|
{
|
|
|
|
g_source_remove (priv->timeout_id);
|
|
|
|
priv->timeout_id = 0;
|
2014-04-08 19:10:43 +00:00
|
|
|
g_signal_emit (gesture, signals[CANCELLED], 0);
|
2013-01-17 22:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
priv->cancelled = TRUE;
|
2014-05-06 16:04:25 +00:00
|
|
|
_gtk_gesture_check (gesture);
|
2013-01-17 22:57:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_gesture_long_press_end (GtkGesture *gesture,
|
|
|
|
GdkEventSequence *sequence)
|
|
|
|
{
|
|
|
|
GtkGestureLongPressPrivate *priv;
|
|
|
|
|
|
|
|
priv = gtk_gesture_long_press_get_instance_private (GTK_GESTURE_LONG_PRESS (gesture));
|
|
|
|
|
|
|
|
if (priv->timeout_id)
|
|
|
|
{
|
|
|
|
g_source_remove (priv->timeout_id);
|
|
|
|
priv->timeout_id = 0;
|
2014-04-08 19:10:43 +00:00
|
|
|
g_signal_emit (gesture, signals[CANCELLED], 0);
|
2013-01-17 22:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
priv->cancelled = priv->triggered = FALSE;
|
|
|
|
}
|
|
|
|
|
2014-06-12 23:08:16 +00:00
|
|
|
static void
|
|
|
|
gtk_gesture_long_press_cancel (GtkGesture *gesture,
|
|
|
|
GdkEventSequence *sequence)
|
|
|
|
{
|
|
|
|
gtk_gesture_long_press_end (gesture, sequence);
|
|
|
|
GTK_GESTURE_CLASS (gtk_gesture_long_press_parent_class)->cancel (gesture, sequence);
|
|
|
|
}
|
|
|
|
|
2013-01-17 22:57:06 +00:00
|
|
|
static void
|
2014-03-21 17:57:32 +00:00
|
|
|
gtk_gesture_long_press_sequence_state_changed (GtkGesture *gesture,
|
|
|
|
GdkEventSequence *sequence,
|
|
|
|
GtkEventSequenceState state)
|
2013-01-17 22:57:06 +00:00
|
|
|
{
|
2014-03-21 17:57:32 +00:00
|
|
|
if (state == GTK_EVENT_SEQUENCE_DENIED)
|
2014-04-08 19:10:43 +00:00
|
|
|
gtk_gesture_long_press_end (gesture, sequence);
|
2013-01-17 22:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-03-21 17:57:32 +00:00
|
|
|
gtk_gesture_long_press_finalize (GObject *object)
|
2013-01-17 22:57:06 +00:00
|
|
|
{
|
|
|
|
GtkGestureLongPressPrivate *priv;
|
|
|
|
|
2014-03-21 17:57:32 +00:00
|
|
|
priv = gtk_gesture_long_press_get_instance_private (GTK_GESTURE_LONG_PRESS (object));
|
2013-01-17 22:57:06 +00:00
|
|
|
|
2014-03-21 17:57:32 +00:00
|
|
|
if (priv->timeout_id)
|
|
|
|
g_source_remove (priv->timeout_id);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (gtk_gesture_long_press_parent_class)->finalize (object);
|
2013-01-17 22:57:06 +00:00
|
|
|
}
|
|
|
|
|
2015-02-22 22:48:39 +00:00
|
|
|
static void
|
|
|
|
gtk_gesture_long_press_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_DELAY_FACTOR:
|
2019-08-07 12:09:33 +00:00
|
|
|
g_value_set_double (value, gtk_gesture_long_press_get_delay_factor (GTK_GESTURE_LONG_PRESS (object)));
|
2015-02-22 22:48:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_gesture_long_press_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_DELAY_FACTOR:
|
2019-08-07 12:09:33 +00:00
|
|
|
gtk_gesture_long_press_set_delay_factor (GTK_GESTURE_LONG_PRESS (object),
|
|
|
|
g_value_get_double (value));
|
2015-02-22 22:48:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-17 22:57:06 +00:00
|
|
|
static void
|
|
|
|
gtk_gesture_long_press_class_init (GtkGestureLongPressClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GtkGestureClass *gesture_class = GTK_GESTURE_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->finalize = gtk_gesture_long_press_finalize;
|
2015-02-22 22:48:39 +00:00
|
|
|
object_class->get_property = gtk_gesture_long_press_get_property;
|
|
|
|
object_class->set_property = gtk_gesture_long_press_set_property;
|
2013-01-17 22:57:06 +00:00
|
|
|
|
|
|
|
gesture_class->check = gtk_gesture_long_press_check;
|
|
|
|
gesture_class->begin = gtk_gesture_long_press_begin;
|
|
|
|
gesture_class->update = gtk_gesture_long_press_update;
|
|
|
|
gesture_class->end = gtk_gesture_long_press_end;
|
2014-06-12 23:08:16 +00:00
|
|
|
gesture_class->cancel = gtk_gesture_long_press_cancel;
|
2015-02-22 22:48:39 +00:00
|
|
|
gesture_class->sequence_state_changed = gtk_gesture_long_press_sequence_state_changed;
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_DELAY_FACTOR,
|
|
|
|
g_param_spec_double ("delay-factor",
|
|
|
|
P_("Delay factor"),
|
|
|
|
P_("Factor by which to modify the default timeout"),
|
|
|
|
0.5, 2.0, 1.0,
|
2019-08-07 12:09:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY));
|
2013-01-17 22:57:06 +00:00
|
|
|
|
2014-04-09 16:28:12 +00:00
|
|
|
/**
|
2014-04-10 11:43:41 +00:00
|
|
|
* GtkGestureLongPress::pressed:
|
2014-04-09 16:28:12 +00:00
|
|
|
* @gesture: the object which received the signal
|
|
|
|
* @x: the X coordinate where the press happened, relative to the widget allocation
|
|
|
|
* @y: the Y coordinate where the press happened, relative to the widget allocation
|
|
|
|
*
|
|
|
|
* This signal is emitted whenever a press goes unmoved/unreleased longer than
|
|
|
|
* what the GTK+ defaults tell.
|
|
|
|
*/
|
2013-01-17 22:57:06 +00:00
|
|
|
signals[PRESSED] =
|
2015-09-12 13:13:00 +00:00
|
|
|
g_signal_new (I_("pressed"),
|
2013-01-17 22:57:06 +00:00
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GtkGestureLongPressClass, pressed),
|
2019-06-02 21:07:27 +00:00
|
|
|
NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__DOUBLE_DOUBLE,
|
2013-01-17 22:57:06 +00:00
|
|
|
G_TYPE_NONE, 2, G_TYPE_DOUBLE, G_TYPE_DOUBLE);
|
2019-06-02 21:07:27 +00:00
|
|
|
g_signal_set_va_marshaller (signals[PRESSED],
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
_gtk_marshal_VOID__DOUBLE_DOUBLEv);
|
2014-04-09 16:28:12 +00:00
|
|
|
/**
|
2014-04-10 11:43:41 +00:00
|
|
|
* GtkGestureLongPress::cancelled:
|
2014-04-09 16:28:12 +00:00
|
|
|
* @gesture: the object which received the signal
|
|
|
|
*
|
|
|
|
* This signal is emitted whenever a press moved too far, or was released
|
2016-02-08 21:49:01 +00:00
|
|
|
* before #GtkGestureLongPress::pressed happened.
|
2014-04-09 16:28:12 +00:00
|
|
|
*/
|
2013-01-17 22:57:06 +00:00
|
|
|
signals[CANCELLED] =
|
2015-09-12 13:13:00 +00:00
|
|
|
g_signal_new (I_("cancelled"),
|
2013-01-17 22:57:06 +00:00
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GtkGestureLongPressClass, cancelled),
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_gesture_long_press_new:
|
|
|
|
*
|
2014-05-20 02:16:03 +00:00
|
|
|
* Returns a newly created #GtkGesture that recognizes long presses.
|
2013-01-17 22:57:06 +00:00
|
|
|
*
|
|
|
|
* Returns: a newly created #GtkGestureLongPress
|
|
|
|
**/
|
|
|
|
GtkGesture *
|
2018-03-09 05:36:22 +00:00
|
|
|
gtk_gesture_long_press_new (void)
|
2013-01-17 22:57:06 +00:00
|
|
|
{
|
|
|
|
return g_object_new (GTK_TYPE_GESTURE_LONG_PRESS,
|
|
|
|
NULL);
|
|
|
|
}
|
2019-08-07 12:09:33 +00:00
|
|
|
|
|
|
|
/**
|
2020-04-20 02:50:35 +00:00
|
|
|
* gtk_gesture_long_press_set_delay_factor:
|
2019-08-07 12:09:33 +00:00
|
|
|
* @gesture: A #GtkGestureLongPress
|
|
|
|
* @delay_factor: The delay factor to apply
|
|
|
|
*
|
|
|
|
* Applies the given delay factor. The default long press time will be
|
2020-04-20 02:50:35 +00:00
|
|
|
* multiplied by this value. Valid values are in the range [0.5..2.0].
|
2019-08-07 12:09:33 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_gesture_long_press_set_delay_factor (GtkGestureLongPress *gesture,
|
|
|
|
double delay_factor)
|
|
|
|
{
|
|
|
|
GtkGestureLongPressPrivate *priv = gtk_gesture_long_press_get_instance_private (gesture);
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_GESTURE_LONG_PRESS (gesture));
|
|
|
|
g_return_if_fail (delay_factor >= 0.5);
|
|
|
|
g_return_if_fail (delay_factor <= 2.0);
|
|
|
|
|
|
|
|
priv->delay_factor = delay_factor;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (gesture), "delay-factor");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-04-20 02:50:35 +00:00
|
|
|
* gtk_gesture_long_press_get_delay_factor:
|
2019-08-07 12:09:33 +00:00
|
|
|
* @gesture: A #GtkGestureLongPress
|
|
|
|
*
|
|
|
|
* Returns the delay factor as set by gtk_gesture_long_press_set_delay_factor().
|
2020-04-20 02:50:35 +00:00
|
|
|
*
|
|
|
|
* Returns: the delay factor
|
2019-08-07 12:09:33 +00:00
|
|
|
*/
|
|
|
|
double
|
|
|
|
gtk_gesture_long_press_get_delay_factor (GtkGestureLongPress *gesture)
|
|
|
|
{
|
|
|
|
GtkGestureLongPressPrivate *priv = gtk_gesture_long_press_get_instance_private (gesture);
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_GESTURE_LONG_PRESS (gesture), 0);
|
|
|
|
|
|
|
|
return priv->delay_factor;
|
|
|
|
}
|