diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-04-25 23:23:09 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-04-25 23:23:09 +0800 |
commit | 7fcf1690b730892033993c1001c08666448f90b1 (patch) | |
tree | e1080fc2e0b87abacd9fee7aec64d377ab525bdf /src/toolbar.c | |
parent | 33a47e1d4cc08edd1006d3bfd85b7a15d350119d (diff) | |
download | gsoc2013-epiphany-7fcf1690b730892033993c1001c08666448f90b1.tar gsoc2013-epiphany-7fcf1690b730892033993c1001c08666448f90b1.tar.gz gsoc2013-epiphany-7fcf1690b730892033993c1001c08666448f90b1.tar.bz2 gsoc2013-epiphany-7fcf1690b730892033993c1001c08666448f90b1.tar.lz gsoc2013-epiphany-7fcf1690b730892033993c1001c08666448f90b1.tar.xz gsoc2013-epiphany-7fcf1690b730892033993c1001c08666448f90b1.tar.zst gsoc2013-epiphany-7fcf1690b730892033993c1001c08666448f90b1.zip |
Get back toolbar editing functionalities. More work on the bookmarks
2003-04-25 Marco Pesenti Gritti <marco@it.gnome.org>
* data/ui/epiphany-toolbar.xml.in:
* data/ui/epiphany-ui.xml.in:
* lib/egg/egg-editable-toolbar.c: (egg_editable_toolbar_hide),
(egg_editable_toolbar_set_drag_dest):
* lib/egg/egg-editable-toolbar.h:
* src/bookmarks/ephy-topic-action.c: (create_tool_item):
* src/ephy-shell.c: (save_toolbars), (ephy_shell_finalize),
(ephy_shell_get_toolbars_model):
* src/ephy-toolbars-model.c: (impl_add_item),
(ephy_toolbars_model_class_init):
* src/ephy-toolbars-model.h:
* src/ephy-window.c: (ephy_window_set_chrome):
* src/toolbar.c: (ensure_bookmark_action), (toolbar_ensure_action),
(action_added_cb), (init_bookmarks_toolbar), (toolbar_set_window),
(toolbar_new), (toolbar_set_visibility):
* src/toolbar.h:
* src/window-commands.c: (toolbar_editor_destroy_cb),
(window_cmd_edit_toolbar):
Get back toolbar editing functionalities.
More work on the bookmarks toolbars implementation.
The toolbars context menus are regressed but it's not my fault :/
The signal on EggToolbar is borked.
Diffstat (limited to 'src/toolbar.c')
-rwxr-xr-x | src/toolbar.c | 162 |
1 files changed, 134 insertions, 28 deletions
diff --git a/src/toolbar.c b/src/toolbar.c index 1525edddc..4f4203874 100755 --- a/src/toolbar.c +++ b/src/toolbar.c @@ -35,7 +35,6 @@ #include "ephy-string.h" #include "ephy-debug.h" #include "ephy-new-bookmark.h" -/*#include "egg-toolbars-group.h"*/ #include "ephy-stock-icons.h" #include <string.h> @@ -55,6 +54,11 @@ toolbar_get_property (GObject *object, GValue *value, GParamSpec *pspec); +static GtkTargetEntry drag_targets[] = { + { EPHY_DND_TOPIC_TYPE, 0, 0 }, + { EPHY_DND_BOOKMARK_TYPE, 0, 1 }, +}; +static int n_drag_targets = G_N_ELEMENTS (drag_targets); enum { @@ -115,9 +119,10 @@ go_location_cb (EggAction *action, char *location, EphyWindow *window) ephy_embed_load_url (embed, location); } -/* + + static EggAction * -get_bookmark_action (Toolbar *t, EphyBookmarks *bookmarks, gulong id, const char *action_name) +ensure_bookmark_action (Toolbar *t, EphyBookmarks *bookmarks, gulong id, const char *action_name) { EggAction *action; @@ -129,43 +134,40 @@ get_bookmark_action (Toolbar *t, EphyBookmarks *bookmarks, gulong id, const char G_CALLBACK (go_location_cb), t->priv->window); egg_action_group_add_action (t->priv->action_group, action); g_object_unref (action); - - return action; } -static EggAction * -toolbar_get_action (EggEditableToolbar *etoolbar, - const char *name) +static void +toolbar_ensure_action (Toolbar *t, + const char *name) { - Toolbar *t = TOOLBAR (etoolbar); EggAction *action = NULL; gulong id = 0; EphyBookmarks *bookmarks; + LOG ("Ensure action %s", name) + bookmarks = ephy_shell_get_bookmarks (ephy_shell); - if (action) - { - return action; - } - else if (g_str_has_prefix (name, "GoBookmarkId")) + if (g_str_has_prefix (name, "GoBookmarkId")) { - LOG ("Create action %s", name) if (!ephy_str_to_int (name + strlen ("GoBookmarkId"), &id)) { - return NULL; + return; } - action = get_bookmark_action (t, bookmarks, id, name); + LOG ("Create action %s", name) + + action = ensure_bookmark_action (t, bookmarks, id, name); } else if (g_str_has_prefix (name, "GoTopicId")) { - LOG ("Create action %s", name) if (!ephy_str_to_int (name + strlen ("GoTopicId"), &id)) { - return NULL; + return; } + LOG ("Create action %s", name) + action = ephy_topic_action_new (name, id); g_signal_connect (action, "go_location", G_CALLBACK (go_location_cb), @@ -173,10 +175,8 @@ toolbar_get_action (EggEditableToolbar *etoolbar, egg_action_group_add_action (t->priv->action_group, action); g_object_unref (action); } - - return action; } -*/ + static void toolbar_class_init (ToolbarClass *klass) { @@ -311,8 +311,47 @@ toolbar_setup_actions (Toolbar *t) } static void +action_added_cb (EphyToolbarsModel *model, + char *action_name, + Toolbar *t) +{ + toolbar_ensure_action (t, action_name); +} + +static void +init_bookmarks_toolbar (Toolbar *t) +{ + EphyToolbarsModel *model; + int i, n_toolbars; + + model = ephy_shell_get_toolbars_model (ephy_shell); + n_toolbars = egg_toolbars_model_n_toolbars + (EGG_TOOLBARS_MODEL (model)); + + for (i = 0; i < n_toolbars; i++) + { + const char *t_name; + + t_name = egg_toolbars_model_toolbar_nth + (EGG_TOOLBARS_MODEL (model), i); + g_return_if_fail (t_name != NULL); + + if (strcmp (t_name, "BookmarksToolbar") == 0) + { + egg_editable_toolbar_set_drag_dest + (EGG_EDITABLE_TOOLBAR (t), + drag_targets, n_drag_targets, + t_name); + } + } +} + +static void toolbar_set_window (Toolbar *t, EphyWindow *window) { + EphyToolbarsModel *model; + char *xml_file; + g_return_if_fail (t->priv->window == NULL); t->priv->window = window; @@ -322,7 +361,32 @@ toolbar_set_window (Toolbar *t, EphyWindow *window) egg_menu_merge_insert_action_group (t->priv->ui_merge, t->priv->action_group, 1); - g_object_set (G_OBJECT (t), "MenuMerge", t->priv->ui_merge, NULL); + model = ephy_shell_get_toolbars_model (ephy_shell); + g_return_if_fail (model != NULL); + g_signal_connect_object (model, "action_added", + G_CALLBACK (action_added_cb), + t, 0); + + xml_file = g_build_filename (ephy_dot_dir (), + "toolbar.xml", + NULL); + if (g_file_test (xml_file, G_FILE_TEST_EXISTS)) + { + egg_toolbars_model_load + (EGG_TOOLBARS_MODEL (model), xml_file); + } + else + { + egg_toolbars_model_load (EGG_TOOLBARS_MODEL (model), + ephy_file ("epiphany-toolbar.xml")); + } + g_free (xml_file); + + g_object_set (G_OBJECT (t), + "ToolbarsModel", model, + "MenuMerge", t->priv->ui_merge, + NULL); + init_bookmarks_toolbar (t); } static void @@ -411,13 +475,8 @@ Toolbar * toolbar_new (EphyWindow *window) { Toolbar *t; - EphyToolbarsModel *model; - - model = ephy_shell_get_toolbars_model (ephy_shell); - g_return_val_if_fail (model != NULL, NULL); t = TOOLBAR (g_object_new (TOOLBAR_TYPE, - "ToolbarsModel", model, "EphyWindow", window, NULL)); @@ -558,3 +617,50 @@ toolbar_update_navigation_actions (Toolbar *t, gboolean back, gboolean forward, g_object_set (action, "sensitive", !up, NULL); } +void +toolbar_set_visibility (Toolbar *t, + gboolean normal_toolbars, + gboolean bmk_toolbars) +{ + EphyToolbarsModel *model; + int i, n_toolbars; + + model = ephy_shell_get_toolbars_model (ephy_shell); + n_toolbars = egg_toolbars_model_n_toolbars + (EGG_TOOLBARS_MODEL (model)); + + for (i = 0; i < n_toolbars; i++) + { + const char *t_name; + + t_name = egg_toolbars_model_toolbar_nth + (EGG_TOOLBARS_MODEL (model), i); + g_return_if_fail (t_name != NULL); + if (strcmp (t_name, "BookmarksToolbar") == 0) + { + if (bmk_toolbars) + { + egg_editable_toolbar_show + (EGG_EDITABLE_TOOLBAR (t), t_name); + } + else + { + egg_editable_toolbar_hide + (EGG_EDITABLE_TOOLBAR (t), t_name); + } + } + else + { + if (normal_toolbars) + { + egg_editable_toolbar_show + (EGG_EDITABLE_TOOLBAR (t), t_name); + } + else + { + egg_editable_toolbar_hide + (EGG_EDITABLE_TOOLBAR (t), t_name); + } + } + } +} |