diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-04-25 19:40:44 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-04-25 19:40:44 +0800 |
commit | 22bf87253ddffa6a7225ecaad60c15cd0815c974 (patch) | |
tree | 1af0677192450246e702ed0efcf97c6410f03ae2 /lib/egg/eggtoolbutton.h | |
parent | 8b97477b0882b666962c56ed2c20d26c615b9db3 (diff) | |
download | gsoc2013-epiphany-22bf87253ddffa6a7225ecaad60c15cd0815c974.tar gsoc2013-epiphany-22bf87253ddffa6a7225ecaad60c15cd0815c974.tar.gz gsoc2013-epiphany-22bf87253ddffa6a7225ecaad60c15cd0815c974.tar.bz2 gsoc2013-epiphany-22bf87253ddffa6a7225ecaad60c15cd0815c974.tar.lz gsoc2013-epiphany-22bf87253ddffa6a7225ecaad60c15cd0815c974.tar.xz gsoc2013-epiphany-22bf87253ddffa6a7225ecaad60c15cd0815c974.tar.zst gsoc2013-epiphany-22bf87253ddffa6a7225ecaad60c15cd0815c974.zip |
Update from egg
2003-04-25 Marco Pesenti Gritti <marco@it.gnome.org>
* data/ui/epiphany-toolbar.xml.in:
* lib/egg/Makefile.am:
* lib/egg/egg-editable-toolbar.c:
* lib/egg/egg-editable-toolbar.h:
* lib/egg/egg-menu-merge.c:
* lib/egg/egg-radio-action.c:
* lib/egg/eggmarshalers.c:
* lib/egg/eggmarshalers.h:
* lib/egg/eggmarshalers.list:
* lib/egg/eggtoggletoolbutton.c:
* lib/egg/eggtoggletoolbutton.h:
* lib/egg/eggtoolbar.c:
* lib/egg/eggtoolbar.h:
* lib/egg/eggtoolbutton.c:
* lib/egg/eggtoolbutton.h:
* lib/egg/eggtoolitem.c:
* lib/egg/eggtoolitem.h:
* lib/egg/eggtreemodelfilter.c:
Update from egg
* src/Makefile.am:
* src/ephy-location-action.c: (create_tool_item):
* src/ephy-shell.c: (ephy_shell_init), (ephy_shell_get_bookmarks),
* src/ephy-shell.h:
* src/ephy-window.c: (setup_window), (ephy_window_finalize),
(ephy_window_set_chrome):
* src/toolbar.c: (toolbar_class_init), (toolbar_set_window),
(topic_remove_cb), (bookmark_remove_cb), (toolbar_init),
(toolbar_new):
* src/window-commands.c: (window_cmd_edit_toolbar):
Use the new toolbar editor api. This is incomplete, if you
use bookmarks toolbars please still do not update.
Diffstat (limited to 'lib/egg/eggtoolbutton.h')
-rw-r--r-- | lib/egg/eggtoolbutton.h | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/lib/egg/eggtoolbutton.h b/lib/egg/eggtoolbutton.h index cb0c0b15e..1c2071c54 100644 --- a/lib/egg/eggtoolbutton.h +++ b/lib/egg/eggtoolbutton.h @@ -56,17 +56,31 @@ struct _EggToolButtonClass EggToolItemClass parent_class; GType button_type; + + void (* clicked) (EggToolButton *tool_item); }; GType egg_tool_button_get_type (void); EggToolItem *egg_tool_button_new (void); EggToolItem *egg_tool_button_new_from_stock (const gchar *stock_id); - -void egg_tool_button_set_icon_widget (EggToolButton *button, - GtkWidget *icon); -void egg_tool_button_set_label (EggToolButton *button, - const gchar *label); +void egg_tool_button_set_label (EggToolButton *button, + const gchar *label); +G_CONST_RETURN gchar *egg_tool_button_get_label (EggToolButton *button); +void egg_tool_button_set_use_underline (EggToolButton *button, + gboolean use_underline); +gboolean egg_tool_button_get_use_underline (EggToolButton *button); +void egg_tool_button_set_stock_id (EggToolButton *button, + const gchar *stock_id); +G_CONST_RETURN gchar *egg_tool_button_get_stock_id (EggToolButton *button); +void egg_tool_button_set_icon_set (EggToolButton *button, + GtkIconSet *icon_set); +GtkIconSet * egg_tool_button_get_icon_set (EggToolButton *button); +void egg_tool_button_set_icon_set (EggToolButton *button, + GtkIconSet *icon_set); +void egg_tool_button_set_icon_widget (EggToolButton *button, + GtkWidget *icon); +GtkWidget * egg_tool_button_get_icon_widget (EggToolButton *button); G_END_DECLS |