2017-12-11 23:29:33 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 2017, 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): Matthias Clasen <mclasen@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gtkeventcontrollermotion
|
|
|
|
* @Short_description: Event controller for motion events
|
|
|
|
* @Title: GtkEventControllerMotion
|
|
|
|
* @See_also: #GtkEventController
|
|
|
|
*
|
|
|
|
* #GtkEventControllerMotion is an event controller meant for situations
|
|
|
|
* where you need to track the position of the pointer.
|
|
|
|
**/
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "gtkintl.h"
|
2019-03-17 03:44:55 +00:00
|
|
|
#include "gtkprivate.h"
|
|
|
|
#include "gtkwidgetprivate.h"
|
2019-06-02 21:07:27 +00:00
|
|
|
#include "gtkmarshalers.h"
|
2017-12-11 23:29:33 +00:00
|
|
|
#include "gtkeventcontrollerprivate.h"
|
|
|
|
#include "gtkeventcontrollermotion.h"
|
|
|
|
#include "gtktypebuiltins.h"
|
|
|
|
#include "gtkmarshalers.h"
|
|
|
|
|
|
|
|
struct _GtkEventControllerMotion
|
|
|
|
{
|
|
|
|
GtkEventController parent_instance;
|
2019-03-17 03:29:48 +00:00
|
|
|
|
2019-03-17 03:44:55 +00:00
|
|
|
const GdkEvent *current_event;
|
2020-02-16 01:47:23 +00:00
|
|
|
const GtkCrossingData *current_crossing;
|
2019-03-17 03:44:55 +00:00
|
|
|
|
2019-12-15 19:25:42 +00:00
|
|
|
guint is_pointer : 1;
|
|
|
|
guint contains_pointer : 1;
|
2017-12-11 23:29:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkEventControllerMotionClass
|
|
|
|
{
|
|
|
|
GtkEventControllerClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
MOTION,
|
2020-02-16 01:47:23 +00:00
|
|
|
POINTER_CHANGE,
|
2017-12-11 23:29:33 +00:00
|
|
|
N_SIGNALS
|
|
|
|
};
|
|
|
|
|
2019-03-17 03:29:48 +00:00
|
|
|
enum {
|
2019-12-15 19:25:42 +00:00
|
|
|
PROP_IS_POINTER = 1,
|
|
|
|
PROP_CONTAINS_POINTER,
|
2019-03-17 03:29:48 +00:00
|
|
|
NUM_PROPERTIES
|
|
|
|
};
|
|
|
|
|
|
|
|
static GParamSpec *props[NUM_PROPERTIES] = { NULL, };
|
|
|
|
|
2017-12-11 23:29:33 +00:00
|
|
|
static guint signals[N_SIGNALS] = { 0 };
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GtkEventControllerMotion, gtk_event_controller_motion, GTK_TYPE_EVENT_CONTROLLER)
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_event_controller_motion_handle_event (GtkEventController *controller,
|
|
|
|
const GdkEvent *event,
|
|
|
|
double x,
|
|
|
|
double y)
|
|
|
|
{
|
|
|
|
GtkEventControllerClass *parent_class;
|
|
|
|
GdkEventType type;
|
|
|
|
|
|
|
|
type = gdk_event_get_event_type (event);
|
|
|
|
if (type == GDK_MOTION_NOTIFY)
|
|
|
|
g_signal_emit (controller, signals[MOTION], 0, x, y);
|
|
|
|
|
|
|
|
parent_class = GTK_EVENT_CONTROLLER_CLASS (gtk_event_controller_motion_parent_class);
|
|
|
|
|
|
|
|
return parent_class->handle_event (controller, event, x, y);
|
|
|
|
}
|
|
|
|
|
2019-03-17 03:29:48 +00:00
|
|
|
static void
|
2020-02-16 01:47:23 +00:00
|
|
|
update_pointer_focus (GtkEventController *controller,
|
|
|
|
const GtkCrossingData *crossing)
|
2019-03-17 03:29:48 +00:00
|
|
|
{
|
2020-02-16 01:47:23 +00:00
|
|
|
GtkEventControllerMotion *motion = GTK_EVENT_CONTROLLER_MOTION (controller);
|
|
|
|
GtkWidget *widget = gtk_event_controller_get_widget (controller);
|
|
|
|
gboolean is_pointer = FALSE;
|
|
|
|
gboolean contains_pointer = FALSE;
|
2019-03-17 03:29:48 +00:00
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
if (crossing->direction == GTK_CROSSING_IN)
|
2019-03-17 03:29:48 +00:00
|
|
|
{
|
2020-02-16 01:47:23 +00:00
|
|
|
if (crossing->new_target == widget)
|
|
|
|
is_pointer = TRUE;
|
|
|
|
if (crossing->new_target != NULL)
|
|
|
|
contains_pointer = TRUE;
|
2019-03-17 03:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (motion));
|
2019-12-15 19:25:42 +00:00
|
|
|
if (motion->is_pointer != is_pointer)
|
2019-03-17 03:29:48 +00:00
|
|
|
{
|
2019-12-15 19:25:42 +00:00
|
|
|
motion->is_pointer = is_pointer;
|
|
|
|
g_object_notify (G_OBJECT (motion), "is-pointer");
|
2019-03-17 03:29:48 +00:00
|
|
|
}
|
2019-12-15 19:25:42 +00:00
|
|
|
if (motion->contains_pointer != contains_pointer)
|
2019-03-17 03:29:48 +00:00
|
|
|
{
|
2019-12-15 19:25:42 +00:00
|
|
|
motion->contains_pointer = contains_pointer;
|
|
|
|
g_object_notify (G_OBJECT (motion), "contains-pointer");
|
2019-03-17 03:29:48 +00:00
|
|
|
}
|
|
|
|
g_object_thaw_notify (G_OBJECT (motion));
|
|
|
|
}
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
static void
|
|
|
|
gtk_event_controller_motion_handle_crossing (GtkEventController *controller,
|
|
|
|
const GtkCrossingData *crossing,
|
|
|
|
double x,
|
|
|
|
double y)
|
2017-12-11 23:29:33 +00:00
|
|
|
{
|
2019-03-17 03:29:48 +00:00
|
|
|
GtkEventControllerMotion *motion = GTK_EVENT_CONTROLLER_MOTION (controller);
|
2019-03-06 19:56:46 +00:00
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
if (crossing->type != GTK_CROSSING_POINTER)
|
|
|
|
return;
|
2019-03-17 03:29:48 +00:00
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
motion->current_crossing = crossing;
|
2019-03-17 03:29:48 +00:00
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
update_pointer_focus (controller, crossing);
|
2019-03-17 03:44:55 +00:00
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
g_signal_emit (controller, signals[POINTER_CHANGE], 0,
|
|
|
|
crossing->direction,
|
|
|
|
x,
|
|
|
|
y,
|
|
|
|
crossing->mode);
|
2019-03-17 03:44:55 +00:00
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
motion->current_crossing = NULL;
|
2017-12-11 23:29:33 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 03:29:48 +00:00
|
|
|
static void
|
|
|
|
gtk_event_controller_motion_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkEventControllerMotion *controller = GTK_EVENT_CONTROLLER_MOTION (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2019-12-15 19:25:42 +00:00
|
|
|
case PROP_IS_POINTER:
|
|
|
|
g_value_set_boolean (value, controller->is_pointer);
|
2019-03-17 03:29:48 +00:00
|
|
|
break;
|
|
|
|
|
2019-12-15 19:25:42 +00:00
|
|
|
case PROP_CONTAINS_POINTER:
|
|
|
|
g_value_set_boolean (value, controller->contains_pointer);
|
2019-03-17 03:29:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-11 23:29:33 +00:00
|
|
|
static void
|
|
|
|
gtk_event_controller_motion_class_init (GtkEventControllerMotionClass *klass)
|
|
|
|
{
|
2019-03-17 03:29:48 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2017-12-11 23:29:33 +00:00
|
|
|
GtkEventControllerClass *controller_class = GTK_EVENT_CONTROLLER_CLASS (klass);
|
|
|
|
|
2019-03-17 03:29:48 +00:00
|
|
|
object_class->get_property = gtk_event_controller_motion_get_property;
|
|
|
|
|
2017-12-11 23:29:33 +00:00
|
|
|
controller_class->handle_event = gtk_event_controller_motion_handle_event;
|
2020-02-16 01:47:23 +00:00
|
|
|
controller_class->handle_crossing = gtk_event_controller_motion_handle_crossing;
|
2017-12-11 23:29:33 +00:00
|
|
|
|
2019-03-17 03:29:48 +00:00
|
|
|
/**
|
2019-12-15 19:25:42 +00:00
|
|
|
* GtkEventControllerMotion:is-pointer:
|
2019-03-17 03:29:48 +00:00
|
|
|
*
|
|
|
|
* Whether the pointer is in the controllers widget itself,
|
2019-12-15 19:25:42 +00:00
|
|
|
* as opposed to in a descendent widget. See also
|
|
|
|
* #GtkEventControllerMotion:contains-pointer.
|
2019-03-17 03:29:48 +00:00
|
|
|
*
|
|
|
|
* When handling crossing events, this property is updated
|
|
|
|
* before #GtkEventControllerMotion::enter or
|
|
|
|
* #GtkEventControllerMotion::leave are emitted.
|
|
|
|
*/
|
2019-12-15 19:25:42 +00:00
|
|
|
props[PROP_IS_POINTER] =
|
|
|
|
g_param_spec_boolean ("is-pointer",
|
|
|
|
P_("Is Pointer"),
|
2019-03-17 03:29:48 +00:00
|
|
|
P_("Whether the pointer is in the controllers widget"),
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_READABLE);
|
|
|
|
|
|
|
|
/**
|
2019-12-15 19:25:42 +00:00
|
|
|
* GtkEventControllerMotion:contains-pointer:
|
2019-03-17 03:29:48 +00:00
|
|
|
*
|
2019-12-15 19:25:42 +00:00
|
|
|
* Whether the pointer is in the controllers widget or a descendant.
|
|
|
|
* See also #GtkEventControllerMotion:is-pointer.
|
2019-03-17 03:29:48 +00:00
|
|
|
*
|
|
|
|
* When handling crossing events, this property is updated
|
|
|
|
* before #GtkEventControllerMotion::enter or
|
|
|
|
* #GtkEventControllerMotion::leave are emitted.
|
|
|
|
*/
|
2019-12-15 19:25:42 +00:00
|
|
|
props[PROP_CONTAINS_POINTER] =
|
|
|
|
g_param_spec_boolean ("contains-pointer",
|
|
|
|
P_("Contains Pointer"),
|
|
|
|
P_("Whether the pointer is inthe controllers widget or a descendant"),
|
2019-03-17 03:29:48 +00:00
|
|
|
FALSE,
|
|
|
|
G_PARAM_READABLE);
|
|
|
|
|
2019-03-18 12:44:02 +00:00
|
|
|
g_object_class_install_properties (object_class, NUM_PROPERTIES, props);
|
|
|
|
|
2017-12-11 23:29:33 +00:00
|
|
|
/**
|
2020-02-16 01:47:23 +00:00
|
|
|
* GtkEventControllerMotion::pointer-change:
|
|
|
|
* @controller: the object which received the signal
|
|
|
|
* @direction: the direction of this crossing event
|
|
|
|
* @x: coordinates of pointer location
|
|
|
|
* @y: coordinates of pointer location
|
|
|
|
* @mode: crossing mode
|
|
|
|
*
|
|
|
|
* This signal is emitted whenever the pointer focus changes
|
|
|
|
* from or to a widget that is a descendant of the widget to
|
|
|
|
* which @controller is attached.
|
2017-12-11 23:29:33 +00:00
|
|
|
*
|
2020-02-16 01:47:23 +00:00
|
|
|
* Handlers for this signal can use
|
|
|
|
* gtk_event_controller_motion_get_pointer_origin() and
|
|
|
|
* gtk_event_controller_motion_get_pointer_target() to find
|
|
|
|
* the old and new pointer locations.
|
2017-12-11 23:29:33 +00:00
|
|
|
*/
|
2020-02-16 01:47:23 +00:00
|
|
|
signals[POINTER_CHANGE] =
|
|
|
|
g_signal_new (I_("pointer-change"),
|
2017-12-11 23:29:33 +00:00
|
|
|
GTK_TYPE_EVENT_CONTROLLER_MOTION,
|
2020-02-16 01:47:23 +00:00
|
|
|
G_SIGNAL_RUN_LAST,
|
2017-12-11 23:29:33 +00:00
|
|
|
0, NULL, NULL,
|
2020-02-16 01:47:23 +00:00
|
|
|
NULL,
|
|
|
|
G_TYPE_NONE, 4,
|
|
|
|
GTK_TYPE_CROSSING_DIRECTION,
|
2019-03-06 19:56:46 +00:00
|
|
|
G_TYPE_DOUBLE,
|
|
|
|
G_TYPE_DOUBLE,
|
2020-02-16 01:47:23 +00:00
|
|
|
GDK_TYPE_CROSSING_MODE);
|
2017-12-11 23:29:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkEventControllerMotion::motion:
|
|
|
|
* @controller: The object that received the signal
|
|
|
|
* @x: the x coordinate
|
|
|
|
* @y: the y coordinate
|
|
|
|
*
|
|
|
|
* Emitted when the pointer moves inside the widget.
|
|
|
|
*/
|
|
|
|
signals[MOTION] =
|
|
|
|
g_signal_new (I_("motion"),
|
|
|
|
GTK_TYPE_EVENT_CONTROLLER_MOTION,
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
0, NULL, NULL,
|
2019-06-02 21:07:27 +00:00
|
|
|
_gtk_marshal_VOID__DOUBLE_DOUBLE,
|
2017-12-11 23:29:33 +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[MOTION],
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
_gtk_marshal_VOID__DOUBLE_DOUBLEv);
|
2017-12-11 23:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_event_controller_motion_init (GtkEventControllerMotion *motion)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_event_controller_motion_new:
|
|
|
|
*
|
2018-03-10 17:45:23 +00:00
|
|
|
* Creates a new event controller that will handle motion events.
|
2017-12-11 23:29:33 +00:00
|
|
|
*
|
|
|
|
* Returns: a new #GtkEventControllerMotion
|
|
|
|
**/
|
|
|
|
GtkEventController *
|
2018-03-10 17:45:23 +00:00
|
|
|
gtk_event_controller_motion_new (void)
|
2017-12-11 23:29:33 +00:00
|
|
|
{
|
|
|
|
return g_object_new (GTK_TYPE_EVENT_CONTROLLER_MOTION,
|
|
|
|
NULL);
|
|
|
|
}
|
2019-03-17 03:44:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_event_controller_motion_get_pointer_origin:
|
|
|
|
* @controller: a #GtkEventControllerMotion
|
|
|
|
*
|
|
|
|
* Returns the widget that contained the pointer before.
|
|
|
|
*
|
|
|
|
* This function can only be used in handlers for the
|
2020-02-16 01:47:23 +00:00
|
|
|
* #GtkEventControllerMotion::pointer-change signal.
|
2019-03-17 03:44:55 +00:00
|
|
|
*
|
|
|
|
* Returns: (transfer none): the previous pointer focus
|
|
|
|
*/
|
|
|
|
GtkWidget *
|
|
|
|
gtk_event_controller_motion_get_pointer_origin (GtkEventControllerMotion *controller)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_EVENT_CONTROLLER_MOTION (controller), NULL);
|
2020-02-16 01:47:23 +00:00
|
|
|
g_return_val_if_fail (controller->current_crossing != NULL, NULL);
|
2019-03-17 03:44:55 +00:00
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
return controller->current_crossing->old_target;
|
2019-03-17 03:44:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_event_controller_motion_get_pointer_target:
|
|
|
|
* @controller: a #GtkEventControllerMotion
|
|
|
|
*
|
|
|
|
* Returns the widget that will contain the pointer afterwards.
|
|
|
|
*
|
|
|
|
* This function can only be used in handlers for the
|
2020-02-16 01:47:23 +00:00
|
|
|
* #GtkEventControllerMotion::pointer-change signal.
|
2019-03-17 03:44:55 +00:00
|
|
|
*
|
|
|
|
* Returns: (transfer none): the next pointer focus
|
|
|
|
*/
|
|
|
|
GtkWidget *
|
|
|
|
gtk_event_controller_motion_get_pointer_target (GtkEventControllerMotion *controller)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_EVENT_CONTROLLER_MOTION (controller), NULL);
|
2020-02-16 01:47:23 +00:00
|
|
|
g_return_val_if_fail (controller->current_crossing != NULL, NULL);
|
2019-03-17 03:44:55 +00:00
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
return controller->current_crossing->new_target;
|
2019-03-17 03:44:55 +00:00
|
|
|
}
|
|
|
|
|
2019-12-15 19:25:42 +00:00
|
|
|
/**
|
|
|
|
* gtk_event_controller_motion_contains_pointer:
|
|
|
|
* @self: a #GtkEventControllerMotion
|
|
|
|
*
|
|
|
|
* Returns the value of the GtkEventControllerMotion:contains-pointer property.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if a pointer is within @self or one of its children
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gtk_event_controller_motion_contains_pointer (GtkEventControllerMotion *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_EVENT_CONTROLLER_MOTION (self), FALSE);
|
|
|
|
|
|
|
|
return self->contains_pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_event_controller_motion_is_pointer:
|
|
|
|
* @self: a #GtkEventControllerKey
|
|
|
|
*
|
|
|
|
* Returns the value of the GtkEventControllerMotion:is-pointer property.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if a pointer is within @self but not one of its children
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gtk_event_controller_motion_is_pointer (GtkEventControllerMotion *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_EVENT_CONTROLLER_MOTION (self), FALSE);
|
|
|
|
|
|
|
|
return self->is_pointer;
|
|
|
|
}
|