diff options
author | Peter Harvey <peter.a.harvey@gmail.com> | 2006-01-31 06:13:07 +0800 |
---|---|---|
committer | Peter Anthony Harvey <paharvey@src.gnome.org> | 2006-01-31 06:13:07 +0800 |
commit | cbccb0edeaa90948433f559a16d8490c8ad3f97e (patch) | |
tree | 940edc8ce0f51e5b53ddadab77e246f93cc459a7 /lib/egg/egg-editable-toolbar.h | |
parent | 4f2f3783b5772129829049efa0ce263665fb1800 (diff) | |
download | gsoc2013-epiphany-cbccb0edeaa90948433f559a16d8490c8ad3f97e.tar.gz gsoc2013-epiphany-cbccb0edeaa90948433f559a16d8490c8ad3f97e.tar.zst gsoc2013-epiphany-cbccb0edeaa90948433f559a16d8490c8ad3f97e.zip |
data/ui/epiphany-ui.xml src/ephy-lockdown.c src/ephy-toolbar.c
2006-01-30 Peter Harvey <peter.a.harvey@gmail.com>
* data/ui/epiphany-ui.xml
* src/ephy-lockdown.c
* src/ephy-toolbar.c
* src/ephy-window.c
* lib/egg/egg-editable-toolbar.c
* lib/egg/egg-editable-toolbar.h
Add a Toolbars submenu with per-toolbar hide/show items.
Diffstat (limited to 'lib/egg/egg-editable-toolbar.h')
-rwxr-xr-x | lib/egg/egg-editable-toolbar.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/lib/egg/egg-editable-toolbar.h b/lib/egg/egg-editable-toolbar.h index dab1d20a1..36b89a305 100755 --- a/lib/egg/egg-editable-toolbar.h +++ b/lib/egg/egg-editable-toolbar.h @@ -61,9 +61,11 @@ struct _EggEditableToolbarClass }; GType egg_editable_toolbar_get_type (void); -GtkWidget *egg_editable_toolbar_new (GtkUIManager *manager); +GtkWidget *egg_editable_toolbar_new (GtkUIManager *manager, + const char *visibility_path); GtkWidget *egg_editable_toolbar_new_with_model (GtkUIManager *manager, - EggToolbarsModel *model); + EggToolbarsModel *model, + const char *visibility_path); void egg_editable_toolbar_set_model (EggEditableToolbar *etoolbar, EggToolbarsModel *model); EggToolbarsModel *egg_editable_toolbar_get_model (EggEditableToolbar *etoolbar); @@ -75,10 +77,6 @@ void egg_editable_toolbar_show (EggEditableToolbar *etoolbar, const char *name); void egg_editable_toolbar_hide (EggEditableToolbar *etoolbar, const char *name); -void egg_editable_toolbar_set_drag_dest (EggEditableToolbar *etoolbar, - const GtkTargetEntry *targets, - gint n_targets, - const char *toolbar_name); void egg_editable_toolbar_set_fixed (EggEditableToolbar *etoolbar, GtkToolbar *fixed_toolbar); @@ -86,7 +84,6 @@ GtkWidget * egg_editable_toolbar_get_selected (EggEditableToolbar * void egg_editable_toolbar_set_selected (EggEditableToolbar *etoolbar, GtkWidget *widget); - /* Private Functions */ GtkWidget *_egg_editable_toolbar_new_separator_image (void); |