[anjuta] anjuta: bgo#567689 - Shortcuts grabbed all components of anjuta



commit b358e12cc0670ff7f2a29e1ddc1588ff98e6c5cb
Author: Johannes Schmid <jhs gnome org>
Date:   Tue Feb 23 17:20:06 2010 +0100

    anjuta: bgo#567689 -  Shortcuts grabbed all components of anjuta
    
    This makes lots of things work:
    - Ctrl-C in Terminal
    - Copy with Ctrl-C in git log windows
    (...)

 src/anjuta-app.c |   37 +++++++++++++++++++++++++++++++++++++
 1 files changed, 37 insertions(+), 0 deletions(-)
---
diff --git a/src/anjuta-app.c b/src/anjuta-app.c
index 1144f59..60540c3 100644
--- a/src/anjuta-app.c
+++ b/src/anjuta-app.c
@@ -569,6 +569,40 @@ anjuta_app_instance_init (AnjutaApp *app)
 	app->save_count = 0;
 }
 
+/*
+ * GtkWindow catches keybindings for the menu items _before_ passing them to
+ * the focused widget. This is unfortunate and means that pressing ctrl+V
+ * in an entry on a panel ends up pasting text in the TextView.
+ * Here we override GtkWindow's handler to do the same things that it
+ * does, but in the opposite order and then we chain up to the grand
+ * parent handler, skipping gtk_window_key_press_event.
+ */
+static gboolean
+anjuta_app_key_press_event (GtkWidget   *widget,
+                            GdkEventKey *event)
+{
+	static gpointer grand_parent_class = NULL;
+	GtkWindow *window = GTK_WINDOW (widget);
+	gboolean handled = FALSE;
+
+	if (grand_parent_class == NULL)
+		grand_parent_class = g_type_class_peek_parent (parent_class);
+
+	/* handle focus widget key events */
+	if (!handled)
+		handled = gtk_window_propagate_key_event (window, event);
+
+	/* handle mnemonics and accelerators */
+	if (!handled)
+		handled = gtk_window_activate_key (window, event);
+
+	/* Chain up, invokes binding set */
+	if (!handled)
+		handled = GTK_WIDGET_CLASS (grand_parent_class)->key_press_event (widget, event);
+
+	return handled;
+}
+
 static void
 anjuta_app_class_init (AnjutaAppClass *class)
 {
@@ -578,8 +612,11 @@ anjuta_app_class_init (AnjutaAppClass *class)
 	parent_class = g_type_class_peek_parent (class);
 	object_class = (GObjectClass*) class;
 	widget_class = (GtkWidgetClass*) class;
+	
 	object_class->finalize = anjuta_app_finalize;
 	object_class->dispose = anjuta_app_dispose;
+
+	widget_class->key_press_event = anjuta_app_key_press_event;
 }
 
 GtkWidget *



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