diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-04-26 02:46:54 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-04-26 02:46:54 +0800 |
commit | 95c5dbcfc4214c63c93318344f5b6de091677d5e (patch) | |
tree | 56ef3ecaf51b0dc473fd880c6debac7f1b752098 /src/ephy-toolbars-model.h | |
parent | e22d66b927f60c384f96c47aa5d4519ceb4f9c47 (diff) | |
download | gsoc2013-epiphany-95c5dbcfc4214c63c93318344f5b6de091677d5e.tar gsoc2013-epiphany-95c5dbcfc4214c63c93318344f5b6de091677d5e.tar.gz gsoc2013-epiphany-95c5dbcfc4214c63c93318344f5b6de091677d5e.tar.bz2 gsoc2013-epiphany-95c5dbcfc4214c63c93318344f5b6de091677d5e.tar.lz gsoc2013-epiphany-95c5dbcfc4214c63c93318344f5b6de091677d5e.tar.xz gsoc2013-epiphany-95c5dbcfc4214c63c93318344f5b6de091677d5e.tar.zst gsoc2013-epiphany-95c5dbcfc4214c63c93318344f5b6de091677d5e.zip |
Update.
2003-04-25 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/egg/egg-toolbars-model.c:
* lib/egg/eggtoolbar.c:
Update.
* src/bookmarks/ephy-bookmark-properties.c:
(toolbar_checkbox_changed_cb), (build_ui),
(ephy_bookmark_properties_init):
* src/bookmarks/ephy-bookmarks-editor.c: (cmd_show_in_the_toolbar),
(cmd_delete), (ephy_bookmarks_editor_update_menu),
(ephy_bookmarks_editor_init):
* src/bookmarks/ephy-bookmarks.h:
* src/ephy-toolbars-model.c: (ephy_toolbars_model_new),
(get_item_pos), (get_action_name), (get_toolbar_pos),
(ephy_toolbars_model_remove_bookmark),
(ephy_toolbars_model_add_bookmark),
(ephy_toolbars_model_has_bookmark):
* src/ephy-toolbars-model.h:
Implement the checkbox to add bookmarks to the toolbar.
Diffstat (limited to 'src/ephy-toolbars-model.h')
-rwxr-xr-x | src/ephy-toolbars-model.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/ephy-toolbars-model.h b/src/ephy-toolbars-model.h index f01230494..dd84859f2 100755 --- a/src/ephy-toolbars-model.h +++ b/src/ephy-toolbars-model.h @@ -49,9 +49,21 @@ struct EphyToolbarsModelClass char *action_name); }; -GType ephy_toolbars_model_get_type (void); +GType ephy_toolbars_model_get_type (void); -EphyToolbarsModel *ephy_toolbars_model_new (void); +EphyToolbarsModel *ephy_toolbars_model_new (void); + +void ephy_toolbars_model_add_bookmark (EphyToolbarsModel *model, + gboolean topic, + gulong id); + +gboolean ephy_toolbars_model_has_bookmark (EphyToolbarsModel *model, + gboolean topic, + gulong id); + +void ephy_toolbars_model_remove_bookmark (EphyToolbarsModel *model, + gboolean topic, + gulong id); G_END_DECLS |