[gimp/gtk3-port: 243/249] app: gimp_print_event(): add the device to the event debug output.
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 243/249] app: gimp_print_event(): add the device to the event debug output.
- Date: Mon, 21 Mar 2011 20:57:41 +0000 (UTC)
commit 09a7ee6e525a826bdf1d49df8cbb08d5ed291ef6
Author: Michael Natterer <mitch gimp org>
Date: Sun Feb 27 15:59:07 2011 +0100
app: gimp_print_event(): add the device to the event debug output.
app/widgets/gimpwidgets-utils.c | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
---
diff --git a/app/widgets/gimpwidgets-utils.c b/app/widgets/gimpwidgets-utils.c
index 116dad5..2708a2d 100644
--- a/app/widgets/gimpwidgets-utils.c
+++ b/app/widgets/gimpwidgets-utils.c
@@ -1183,15 +1183,18 @@ const gchar *
gimp_print_event (const GdkEvent *event)
{
gchar *str;
+ gchar *tmp;
switch (event->type)
{
case GDK_ENTER_NOTIFY:
- str = g_strdup ("ENTER_NOTIFY");
+ str = g_strdup_printf ("ENTER_NOTIFY (mode %d)",
+ event->crossing.mode);
break;
case GDK_LEAVE_NOTIFY:
- str = g_strdup ("LEAVE_NOTIFY");
+ str = g_strdup_printf ("LEAVE_NOTIFY (mode %d)",
+ event->crossing.mode);
break;
case GDK_PROXIMITY_IN:
@@ -1269,6 +1272,13 @@ gimp_print_event (const GdkEvent *event)
break;
}
+ tmp = g_strdup_printf ("%s (device '%s', source device '%s')",
+ str,
+ gdk_device_get_name (gdk_event_get_device (event)),
+ gdk_device_get_name (gdk_event_get_source_device (event)));
+ g_free (str);
+ str = tmp;
+
g_idle_add (gimp_print_event_free, str);
return str;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]