aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2006-01-16 02:02:06 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2006-01-16 02:02:06 +0800
commit64ba00a2b29516a152709a612fa70d571d205c1a (patch)
treecf15b06647ea08a7711f2959c50e226f7525a287 /widgets
parentd34fc62f9f809ebfce0f8ea45ffd7c82009e05f7 (diff)
downloadgsoc2013-evolution-64ba00a2b29516a152709a612fa70d571d205c1a.tar
gsoc2013-evolution-64ba00a2b29516a152709a612fa70d571d205c1a.tar.gz
gsoc2013-evolution-64ba00a2b29516a152709a612fa70d571d205c1a.tar.bz2
gsoc2013-evolution-64ba00a2b29516a152709a612fa70d571d205c1a.tar.lz
gsoc2013-evolution-64ba00a2b29516a152709a612fa70d571d205c1a.tar.xz
gsoc2013-evolution-64ba00a2b29516a152709a612fa70d571d205c1a.tar.zst
gsoc2013-evolution-64ba00a2b29516a152709a612fa70d571d205c1a.zip
** Fixes bug #220286
2006-01-15 Srinivasa Ragavan <sragavan@novell.com> ** Fixes bug #220286 * text/e-text.c: (tooltip_ungrab), (_do_tooltip), (e_text_event): Added a ungrab for keyboard, so that it hides the tooltip. svn path=/trunk/; revision=31185
Diffstat (limited to 'widgets')
-rw-r--r--widgets/ChangeLog7
-rw-r--r--widgets/text/e-text.c28
2 files changed, 34 insertions, 1 deletions
diff --git a/widgets/ChangeLog b/widgets/ChangeLog
index 2028378081..6feca934a6 100644
--- a/widgets/ChangeLog
+++ b/widgets/ChangeLog
@@ -1,3 +1,10 @@
+2006-01-15 Srinivasa Ragavan <sragavan@novell.com>
+
+ ** Fixes bug #220286
+
+ * text/e-text.c: (tooltip_ungrab), (_do_tooltip), (e_text_event):
+ Added a ungrab for keyboard, so that it hides the tooltip.
+
2006-01-13 Srinivasa Ragavan <sragavan@novell.com>
** Fixes bug #326264
diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c
index 87197b4777..6636c78f73 100644
--- a/widgets/text/e-text.c
+++ b/widgets/text/e-text.c
@@ -1891,6 +1891,18 @@ tooltip_event(GtkWidget *tooltip, GdkEvent *event, EText *text)
return ret_val;
}
+static gboolean
+tooltip_ungrab (GtkWidget *tooltip, GdkEventKey *event, EText *text)
+{
+ gdk_keyboard_ungrab(GDK_CURRENT_TIME);
+
+ e_canvas_hide_tooltip (E_CANVAS(GNOME_CANVAS_ITEM(text)->canvas));
+
+ gtk_propagate_event (GTK_WIDGET(GNOME_CANVAS_ITEM(text)->canvas), event);
+
+ return TRUE;
+}
+
static void
tooltip_destroy(gpointer data, GObject *where_object_was)
{
@@ -2074,6 +2086,7 @@ _do_tooltip (gpointer data)
(double)tooltip_height + (text->draw_borders ? BORDER_INDENT * 2 : 0));
g_signal_connect (tooltip_window, "event",
G_CALLBACK(tooltip_event), text);
+
g_object_weak_ref (G_OBJECT (tooltip_window),
tooltip_destroy, text);
g_object_ref (text);
@@ -2082,6 +2095,10 @@ _do_tooltip (gpointer data)
tooltip_window,
pixel_origin.x - 2 + tooltip_x,
pixel_origin.y - 2 + tooltip_y);
+ gdk_keyboard_grab (tooltip_window->window, FALSE, GDK_CURRENT_TIME);
+
+ g_signal_connect (tooltip_window, "key-press-event", G_CALLBACK (tooltip_ungrab), text);
+
text->tooltip_owner = TRUE;
text->tooltip_timeout = 0;
@@ -2259,6 +2276,15 @@ e_text_event (GnomeCanvasItem *item, GdkEvent *event)
case GDK_KEY_RELEASE:
+ if (text->tooltip_count > 0)
+ text->tooltip_count --;
+ if ( text->tooltip_count == 0 && text->clip) {
+ if ( text->tooltip_timeout ) {
+ gtk_timeout_remove (text->tooltip_timeout);
+ text->tooltip_timeout = 0;
+ }
+ }
+
if (text->editing) {
GdkEventKey key;
gint ret;
@@ -2404,7 +2430,7 @@ e_text_event (GnomeCanvasItem *item, GdkEvent *event)
{
if ( text->tooltip_count == 0 && text->clip) {
if (!text->tooltip_timeout)
- text->tooltip_timeout = gtk_timeout_add (1000, _do_tooltip, text);
+ text->tooltip_timeout = gtk_timeout_add (2000, _do_tooltip, text);
}
text->tooltip_count ++;
}