diff options
author | Xan Lopez <xan@igalia.com> | 2012-01-12 02:21:23 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-01-14 04:21:46 +0800 |
commit | 042f09bcf84db2ade9aa18f881ac5064aacbf116 (patch) | |
tree | 00a2a71a94d286561b5773387e1a7a5afc79a4b6 /src/ephy-page-menu-action.c | |
parent | ade53ab2fdcec609ca42b1277be1f8889bafbaa7 (diff) | |
download | gsoc2013-epiphany-042f09bcf84db2ade9aa18f881ac5064aacbf116.tar gsoc2013-epiphany-042f09bcf84db2ade9aa18f881ac5064aacbf116.tar.gz gsoc2013-epiphany-042f09bcf84db2ade9aa18f881ac5064aacbf116.tar.bz2 gsoc2013-epiphany-042f09bcf84db2ade9aa18f881ac5064aacbf116.tar.lz gsoc2013-epiphany-042f09bcf84db2ade9aa18f881ac5064aacbf116.tar.xz gsoc2013-epiphany-042f09bcf84db2ade9aa18f881ac5064aacbf116.tar.zst gsoc2013-epiphany-042f09bcf84db2ade9aa18f881ac5064aacbf116.zip |
Drop menubar and create an actions menu button in the toolbar
Similar to Chrome's wrench menu, but used only (in the future) for
page-related actions. For now we have mechanically moved most stuff
there, now we need to start removing them one by one when appropriate.
Diffstat (limited to 'src/ephy-page-menu-action.c')
-rw-r--r-- | src/ephy-page-menu-action.c | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/src/ephy-page-menu-action.c b/src/ephy-page-menu-action.c new file mode 100644 index 000000000..d5c6592b4 --- /dev/null +++ b/src/ephy-page-menu-action.c @@ -0,0 +1,90 @@ +/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* + * Copyright © 2012 Igalia S.L. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#include "config.h" +#include "ephy-page-menu-action.h" + +G_DEFINE_TYPE (EphyPageMenuAction, ephy_page_menu_action, EPHY_TYPE_NAVIGATION_ACTION); + +static void +menu_position_func (GtkMenu *menu, + int *x, + int *y, + gboolean *push_in, + GtkMenuToolButton *button) +{ + GtkAllocation allocation; + GtkWidget *widget = GTK_WIDGET (button); + GtkRequisition menu_req; + GtkTextDirection direction; + GdkWindow *window; + + gtk_widget_get_preferred_size (GTK_WIDGET (menu), + &menu_req, NULL); + + direction = gtk_widget_get_direction (widget); + window = gtk_widget_get_window (widget); + + gtk_widget_get_allocation (widget, &allocation); + + gdk_window_get_origin (window, x, y); + *x += allocation.x; + *y += allocation.y + allocation.height; + + if (direction == GTK_TEXT_DIR_LTR) + *x += allocation.width - menu_req.width; + + *push_in = FALSE; +} + +static void +ephy_page_menu_action_activate (GtkAction *action) +{ + GtkWidget *menu; + EphyWindow *window; + GtkUIManager *manager; + GSList *list; + GtkWidget *button; + + window = _ephy_navigation_action_get_window (EPHY_NAVIGATION_ACTION (action)); + manager = GTK_UI_MANAGER (ephy_window_get_ui_manager (window)); + menu = gtk_ui_manager_get_widget (manager, "/PagePopup"); + + list = gtk_action_get_proxies (action); + if (GTK_IS_TOOL_BUTTON (list->data)) + button = GTK_WIDGET (list->data); + + gtk_menu_popup (GTK_MENU (menu), NULL, NULL, + (GtkMenuPositionFunc)menu_position_func, button, + 1, 0); +} + +static void +ephy_page_menu_action_class_init (EphyPageMenuActionClass *klass) +{ + GtkActionClass *action_class = GTK_ACTION_CLASS (klass); + + action_class->activate = ephy_page_menu_action_activate; +} + +static void +ephy_page_menu_action_init (EphyPageMenuAction *self) +{ +} |