[evolution-patches] Patch for bug 45631, seeking review (re-sending)



Hi,

This little patch fixes bug 45631, "shift+f10 in composer's to/cc/bcc
should be able to activate the popup menu."

The reason of this bug is that currently e-text never concerns S-F10 key
binding, so the patch is actually for gal/e-text.

Please review, thanks.

--
Best Regards
Maxx

Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/gal/ChangeLog,v
retrieving revision 1.793
diff -u -r1.793 ChangeLog
--- ChangeLog	9 Jul 2003 15:40:22 -0000	1.793
+++ ChangeLog	16 Jul 2003 12:15:44 -0000
@@ -1,3 +1,13 @@
+2003-07-16  Maxx Cao  <maxx cao sun com>
+
+	** for #45631, makes S-F10 key binding work
+	
+	* gal/e-text/e-text.c (e_text_event): filter S-F10 key binding, and
+	show popup menu.
+	(popup_menu_placement_cb): function added to adjust popup menu position.
+	(popup_targets_received): show popup menu in different ways, according
+	to whether it's invoked by mouse click or key binding.
+
 2003-07-09  Mike Kestner  <mkestner ximian com>
 
 	* gal/util/e-util.c (e_utf8_strftime): check null after conversions.
Index: gal/e-text/e-text.c
===================================================================
RCS file: /cvs/gnome/gal/gal/e-text/e-text.c,v
retrieving revision 1.145
diff -u -r1.145 e-text.c
--- gal/e-text/e-text.c	14 May 2003 00:42:36 -0000	1.145
+++ gal/e-text/e-text.c	16 Jul 2003 12:15:45 -0000
@@ -43,6 +43,7 @@
 #include <string.h>
 #include <glib-object.h>
 #include <gdk/gdkx.h> /* for BlackPixel */
+#include <gdk/gdkkeysyms.h>
 #include <gtk/gtkclipboard.h>
 #include <gtk/gtkmain.h>
 #include <gtk/gtkselection.h>
@@ -2148,6 +2149,27 @@
 		break;
 	case GDK_KEY_PRESS: /* Fall Through */
 	case GDK_KEY_RELEASE:
+
+		/* Handle S-F10 key binding here. */
+
+		if (event->type == GDK_KEY_PRESS 
+		    && event->key.keyval == GDK_F10 
+		    && (event->key.state&GDK_SHIFT_MASK)){
+
+			/* Simulate a GdkEventButton here, so that we can call e_text_do_popup directly */
+
+			GdkEventButton *button = g_new0 (GdkEventButton, 1);
+			button->type = GDK_BUTTON_PRESS;
+			button->time = GDK_CURRENT_TIME;
+			button->button = 0;
+			
+			if (text->handle_popup) {
+				e_text_do_popup (text, button, 0);
+				return TRUE;
+			}
+			
+		}
+
 		if (text->editing) {
 			GdkEventKey key;
 			gint ret;
@@ -2517,6 +2539,22 @@
 }
 
 static void
+popup_menu_placement_cb (GtkMenu *menu, gint *x, gint *y, gboolean *push_in, gpointer user_data)
+{
+	EText *text = E_TEXT(user_data);
+	GnomeCanvasItem *item = &text->item;
+	GnomeCanvas *parent = item->canvas;
+
+	if (parent){
+		gdk_window_get_origin (((GtkWidget*) parent)->window, x, y);
+		*x += item->x1 + text->width/2;
+		*y += item->y1 + text->height/2;
+	}
+
+	return;
+}
+
+static void
 popup_targets_received (GtkClipboard     *clipboard,
 			GtkSelectionData *data,
 			gpointer          user_data)
@@ -2587,9 +2625,17 @@
 		     button, position,
 		     popup_menu);
 
-      gtk_menu_popup (GTK_MENU (popup_menu), NULL, NULL,
-		      NULL, NULL,
-		      button->button, GDK_CURRENT_TIME);
+      /* If invoked by S-F10 key binding, button will be 0. */
+      if (button->button == 0){
+      	      gtk_menu_popup (GTK_MENU (popup_menu), NULL, NULL,
+			      popup_menu_placement_cb, (gpointer)text,
+			      button->button, GDK_CURRENT_TIME);
+	      g_free (button);
+      } else {
+	      gtk_menu_popup (GTK_MENU (popup_menu), NULL, NULL,
+			      NULL, NULL,
+			      button->button, GDK_CURRENT_TIME);
+      }
 
       g_object_unref (text);
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]