aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-07-04 19:28:47 +0800
committerChristian Persch <chpe@src.gnome.org>2004-07-04 19:28:47 +0800
commit1550b9761c6e78aaf7ed8b8ecca63b65a8ffef3f (patch)
treec7a85e7da1484b7f463e57276a2bd9401b28c500 /src
parent3d5210a4ca588096cd847bff8a5e89b2d9f8c28b (diff)
downloadgsoc2013-epiphany-1550b9761c6e78aaf7ed8b8ecca63b65a8ffef3f.tar
gsoc2013-epiphany-1550b9761c6e78aaf7ed8b8ecca63b65a8ffef3f.tar.gz
gsoc2013-epiphany-1550b9761c6e78aaf7ed8b8ecca63b65a8ffef3f.tar.bz2
gsoc2013-epiphany-1550b9761c6e78aaf7ed8b8ecca63b65a8ffef3f.tar.lz
gsoc2013-epiphany-1550b9761c6e78aaf7ed8b8ecca63b65a8ffef3f.tar.xz
gsoc2013-epiphany-1550b9761c6e78aaf7ed8b8ecca63b65a8ffef3f.tar.zst
gsoc2013-epiphany-1550b9761c6e78aaf7ed8b8ecca63b65a8ffef3f.zip
Show and activate the menubar with F10 when it's hidden. Fixes bug
2004-07-04 Christian Persch <chpe@cvs.gnome.org> * src/ephy-window.c: (menubar_deactivate_cb), (ephy_window_key_press_event), (ephy_window_class_init): Show and activate the menubar with F10 when it's hidden. Fixes bug #141999.
Diffstat (limited to 'src')
-rw-r--r--src/ephy-window.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 8943d7eec..01eafb2a8 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -685,6 +685,48 @@ confirm_close_with_modified_forms (EphyWindow *window)
return response == GTK_RESPONSE_OK;
}
+static void
+menubar_deactivate_cb (GtkWidget *menubar,
+ EphyWindow *window)
+{
+ g_signal_handlers_disconnect_by_func
+ (menubar, G_CALLBACK (menubar_deactivate_cb), window);
+
+ gtk_menu_shell_deselect (GTK_MENU_SHELL (menubar));
+
+ sync_chromes_visibility (window);
+}
+
+static gboolean
+ephy_window_key_press_event (GtkWidget *widget,
+ GdkEventKey *event)
+{
+ EphyWindow *window = EPHY_WINDOW (widget);
+ GtkWidget *menubar;
+ guint modifiers = gtk_accelerator_get_default_mod_mask ();
+
+ /* Show and activate the menubar on F10, if it isn't visible */
+ if (event->keyval == GDK_F10 && (event->state & modifiers) == 0)
+ {
+ menubar = gtk_ui_manager_get_widget
+ (GTK_UI_MANAGER (window->ui_merge), "/menubar");
+ g_return_val_if_fail (menubar != NULL , FALSE);
+
+ if (!GTK_WIDGET_VISIBLE (menubar))
+ {
+ g_signal_connect (menubar, "deactivate",
+ G_CALLBACK (menubar_deactivate_cb), window);
+
+ gtk_widget_show (menubar);
+ gtk_menu_shell_select_first (GTK_MENU_SHELL (menubar), FALSE);
+
+ return TRUE;
+ }
+ }
+
+ return GTK_WIDGET_CLASS (parent_class)->key_press_event (widget, event);
+}
+
static gboolean
ephy_window_delete_event_cb (GtkWidget *widget, GdkEvent *event, EphyWindow *window)
{
@@ -1931,6 +1973,7 @@ ephy_window_class_init (EphyWindowClass *klass)
gtkobject_class->destroy = ephy_window_destroy;
widget_class->show = ephy_window_show;
+ widget_class->key_press_event = ephy_window_key_press_event;
g_object_class_install_property (object_class,
PROP_ACTIVE_TAB,