From 6afec98b2cc4c33cd4128d045035a0ec7d43629c Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Tue, 31 Dec 2002 13:52:44 +0000 Subject: Resync with galeon. 2002-12-31 Marco Pesenti Gritti * embed/mozilla/FilePicker.cpp: * embed/mozilla/FilePicker.h: * embed/mozilla/mozilla-embed-shell.cpp: Resync with galeon. * data/epiphany.schemas.in: * lib/ephy-bonobo-extensions.c: (ephy_bonobo_add_numbered_widget): * lib/ephy-bonobo-extensions.h: * lib/toolbar/Makefile.am: * lib/toolbar/ephy-tbi-std-toolitem.c: (ephy_tbi_std_toolitem_init), (ephy_tbi_std_toolitem_get_icon_impl), (ephy_tbi_std_toolitem_get_name_human_impl), (ephy_tbi_std_toolitem_to_string_impl), (ephy_tbi_std_toolitem_add_to_bonobo_tb_impl), (ephy_tbi_std_toolitem_parse_properties_impl), (ephy_tbi_std_toolitem_set_item): * lib/toolbar/ephy-tbi-std-toolitem.h: * lib/toolbar/ephy-toolbar-item-factory.c: (ephy_tb_item_factory_init), (ephy_toolbar_item_create_from_string), (ephy_toolbar_item_register_type): * lib/toolbar/ephy-toolbar-item-factory.h: * src/Makefile.am: * src/toolbar.c: (toolbar_class_init), (toolbar_set_property), (toolbar_get_widgets), (toolbar_init), (toolbar_finalize), (toolbar_navigation_button_set_sensitive), (toolbar_button_set_sensitive): * src/window-commands.c: Resync with galeon. Now we use a widget for navigation buttons. --- lib/ephy-bonobo-extensions.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'lib/ephy-bonobo-extensions.c') diff --git a/lib/ephy-bonobo-extensions.c b/lib/ephy-bonobo-extensions.c index e40b377cd..efc43ed60 100644 --- a/lib/ephy-bonobo-extensions.c +++ b/lib/ephy-bonobo-extensions.c @@ -677,3 +677,19 @@ ephy_bonobo_clear_path (BonoboUIComponent *uic, g_free (remove_wildcard); } } + +void +ephy_bonobo_add_numbered_widget (BonoboUIComponent *uic, GtkWidget *w, + guint index, const char *container_path) +{ + gchar *path = ephy_bonobo_get_numbered_menu_item_path (uic, container_path, index); + gchar *item_name = get_numbered_menu_item_name (index); + gchar *xml_string = g_strdup_printf ("", item_name); + + bonobo_ui_component_set (uic, container_path, xml_string, NULL); + bonobo_ui_component_widget_set (uic, path, w, NULL); + + g_free (path); + g_free (item_name); + g_free (xml_string); +} -- cgit v1.2.3