diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-07-18 21:10:24 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-07-18 21:10:24 +0800 |
commit | 482cd2bcb05ed4245da0fecfb3a9ab8e67f99616 (patch) | |
tree | 96ea6fb707a5690223cca514ebcecfc91da84f5b | |
parent | 62047066d4d6ff0acf5dcc22c0d473e6df902c57 (diff) | |
download | gsoc2013-epiphany-482cd2bcb05ed4245da0fecfb3a9ab8e67f99616.tar gsoc2013-epiphany-482cd2bcb05ed4245da0fecfb3a9ab8e67f99616.tar.gz gsoc2013-epiphany-482cd2bcb05ed4245da0fecfb3a9ab8e67f99616.tar.bz2 gsoc2013-epiphany-482cd2bcb05ed4245da0fecfb3a9ab8e67f99616.tar.lz gsoc2013-epiphany-482cd2bcb05ed4245da0fecfb3a9ab8e67f99616.tar.xz gsoc2013-epiphany-482cd2bcb05ed4245da0fecfb3a9ab8e67f99616.tar.zst gsoc2013-epiphany-482cd2bcb05ed4245da0fecfb3a9ab8e67f99616.zip |
Christian Persch <chpe@cvs.gnome.org>
2003-07-18 Marco Pesenti Gritti <marco@it.gnome.org>
Christian Persch <chpe@cvs.gnome.org>
* src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init),
(ephy_bookmarks_find_bookmark):
* src/ephy-toolbars-model.c: (ephy_toolbars_model_get_action_name),
(topic_destroy_cb), (bookmark_destroy_cb), (setup_item),
(impl_add_item), (ephy_toolbars_model_set_bookmarks),
(ephy_toolbars_model_init), (get_toolbar_pos),
(get_toolbar_and_item_pos), (ephy_toolbars_model_remove_bookmark),
(ephy_toolbars_model_add_bookmark),
(ephy_toolbars_model_has_bookmark):
* src/ephy-toolbars-model.h:
* src/toolbar.c: (topic_destroy_cb), (bookmark_destroy_cb):
Remove bookmarks also if they are not on the bookmarks toolbar.
Deal with bookmarks/model sync inside the model not in the toolbar.
If there are invalid bookmarks in the toolbar configuration
when loading it, emit a warning and drop them.
-rw-r--r-- | ChangeLog | 21 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 7 | ||||
-rwxr-xr-x | src/ephy-toolbars-model.c | 237 | ||||
-rwxr-xr-x | src/ephy-toolbars-model.h | 7 | ||||
-rwxr-xr-x | src/toolbar.c | 2 |
5 files changed, 203 insertions, 71 deletions
@@ -1,3 +1,24 @@ +2003-07-18 Marco Pesenti Gritti <marco@it.gnome.org> + Christian Persch <chpe@cvs.gnome.org> + + + * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init), + (ephy_bookmarks_find_bookmark): + * src/ephy-toolbars-model.c: (ephy_toolbars_model_get_action_name), + (topic_destroy_cb), (bookmark_destroy_cb), (setup_item), + (impl_add_item), (ephy_toolbars_model_set_bookmarks), + (ephy_toolbars_model_init), (get_toolbar_pos), + (get_toolbar_and_item_pos), (ephy_toolbars_model_remove_bookmark), + (ephy_toolbars_model_add_bookmark), + (ephy_toolbars_model_has_bookmark): + * src/ephy-toolbars-model.h: + * src/toolbar.c: (topic_destroy_cb), (bookmark_destroy_cb): + + Remove bookmarks also if they are not on the bookmarks toolbar. + Deal with bookmarks/model sync inside the model not in the toolbar. + If there are invalid bookmarks in the toolbar configuration + when loading it, emit a warning and drop them. + 2003-07-17 Xan Lopez <xan@masilla.org> * embed/ephy-history.c: (ephy_history_get_icon): diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index 82b937543..187efc9be 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -668,6 +668,8 @@ ephy_bookmarks_init (EphyBookmarks *eb) GValue value = { 0, }; EphyNodeDb *db; + LOG ("Init"); + eb->priv = g_new0 (EphyBookmarksPrivate, 1); eb->priv->toolbars_model = NULL; @@ -884,13 +886,15 @@ ephy_bookmarks_set_address (EphyBookmarks *eb, update_has_smart_address (bookmark, address); } -EphyNode* +EphyNode * ephy_bookmarks_find_bookmark (EphyBookmarks *eb, const char *url) { GPtrArray *children; int i; + g_return_val_if_fail (IS_EPHY_BOOKMARKS (eb), NULL); + g_return_val_if_fail (eb->priv->bookmarks != NULL, NULL); g_return_val_if_fail (url != NULL, NULL); children = ephy_node_get_children (eb->priv->bookmarks); @@ -902,6 +906,7 @@ ephy_bookmarks_find_bookmark (EphyBookmarks *eb, kid = g_ptr_array_index (children, i); location = ephy_node_get_property_string (kid, EPHY_NODE_BMK_PROP_LOCATION); + if (location != NULL && strcmp (url, location) == 0) { ephy_node_thaw (eb->priv->bookmarks); diff --git a/src/ephy-toolbars-model.c b/src/ephy-toolbars-model.c index e587fde84..fb70e7c50 100755 --- a/src/ephy-toolbars-model.c +++ b/src/ephy-toolbars-model.c @@ -25,6 +25,7 @@ #include "ephy-file-helpers.h" #include "ephy-shell.h" #include "ephy-debug.h" +#include "ephy-string.h" #include <string.h> @@ -95,6 +96,8 @@ ephy_toolbars_model_get_action_name (EphyToolbarsModel *model, EphyNodePriority priority; node = ephy_bookmarks_get_from_id (model->priv->bookmarks, id); + g_return_val_if_fail (node != NULL, NULL); + priority = ephy_node_get_property_int (node, EPHY_NODE_KEYWORD_PROP_PRIORITY); @@ -121,6 +124,93 @@ ephy_toolbars_model_get_action_name (EphyToolbarsModel *model, return action_name; } +static void +topic_destroy_cb (EphyNode *node, + EphyToolbarsModel *model) +{ + long id; + + id = ephy_node_get_id (node); + ephy_toolbars_model_remove_bookmark (model, TRUE, id); +} + +static void +bookmark_destroy_cb (EphyNode *node, + EphyToolbarsModel *model) +{ + long id; + + id = ephy_node_get_id (node); + ephy_toolbars_model_remove_bookmark (model, FALSE, id); +} + +static gboolean +setup_item (EphyToolbarsModel *model, + const char *name, + gboolean *is_bookmark, + gboolean *is_topic, + long *id) +{ + EphyBookmarks *bookmarks = model->priv->bookmarks; + EphyNode *node = NULL; + + *is_topic = FALSE; + + if (g_str_has_prefix (name, "GoBookmark-")) + { + node = ephy_bookmarks_find_bookmark + (bookmarks, name + strlen ("GoBookmark-")); + if (node == NULL) return FALSE; + + ephy_node_signal_connect_object (node, + EPHY_NODE_DESTROY, + (EphyNodeCallback) bookmark_destroy_cb, + G_OBJECT (model)); + } + else if (g_str_has_prefix (name, "GoTopic-")) + { + EphyNode *node; + + node = ephy_bookmarks_find_keyword + (bookmarks, name + strlen ("GoTopic-"), FALSE); + if (node == NULL) return FALSE; + + ephy_node_signal_connect_object (node, + EPHY_NODE_DESTROY, + (EphyNodeCallback) topic_destroy_cb, + G_OBJECT (model)); + *is_topic = TRUE; + } + else if (g_str_has_prefix (name, "GoSpecialTopic-")) + { + EphyNode *node; + long id; + + if (!ephy_string_to_int (name + strlen ("GoSpecialTopic-"), &id)) + { + return FALSE; + } + + node = ephy_bookmarks_get_from_id (bookmarks, id); + if (node == NULL) return FALSE; + + ephy_node_signal_connect_object (node, + EPHY_NODE_DESTROY, + (EphyNodeCallback) topic_destroy_cb, + G_OBJECT (model)); + + *is_topic = TRUE; + } + + if (node) + { + *is_bookmark = TRUE; + *id = ephy_node_get_id (node); + } + + return TRUE; +} + static const char * impl_add_item (EggToolbarsModel *t, int toolbar_position, @@ -130,7 +220,7 @@ impl_add_item (EggToolbarsModel *t, { char *action_name = NULL; const char *res; - gboolean topic = FALSE, normal_item = FALSE; + gboolean valid, duped_bookmark = FALSE, is_bookmark, is_topic; long id = -1; LOG ("Add item %s", name) @@ -139,7 +229,6 @@ impl_add_item (EggToolbarsModel *t, { GList *nodes; - topic = TRUE; nodes = ephy_dnd_node_list_extract_nodes (name); id = ephy_node_get_id (nodes->data); action_name = ephy_toolbars_model_get_action_name @@ -161,10 +250,10 @@ impl_add_item (EggToolbarsModel *t, EphyNode *node = NULL; EphyBookmarks *bookmarks; gchar **netscape_url; - + netscape_url = g_strsplit (name, "\n", 2); bookmarks = ephy_shell_get_bookmarks (ephy_shell); - node = ephy_bookmarks_find_bookmark (bookmarks, netscape_url[URL]); + node = ephy_bookmarks_find_bookmark (bookmarks, netscape_url[URL]); if (!node) { @@ -177,7 +266,7 @@ impl_add_item (EggToolbarsModel *t, gh = ephy_embed_shell_get_global_history (EPHY_EMBED_SHELL (ephy_shell)); icon = ephy_history_get_icon (gh, netscape_url[URL]); - + if (icon) { ephy_bookmarks_set_icon (bookmarks, netscape_url[URL], icon); @@ -189,15 +278,23 @@ impl_add_item (EggToolbarsModel *t, (EPHY_TOOLBARS_MODEL (t), FALSE, id); g_strfreev (netscape_url); } - else + + res = action_name ? action_name : name; + + valid = setup_item (EPHY_TOOLBARS_MODEL (t), res, &is_bookmark, &is_topic, &id); + if (!valid) { - normal_item = TRUE; + g_warning ("Invalid bookmark in the toolbar. Removed."); + return NULL; } - res = action_name ? action_name : name; + if (is_bookmark) + { + duped_bookmark = ephy_toolbars_model_has_bookmark + (EPHY_TOOLBARS_MODEL (t), is_topic, id); + } - if (normal_item || - !ephy_toolbars_model_has_bookmark (EPHY_TOOLBARS_MODEL (t), topic, id)) + if (!duped_bookmark) { EGG_TOOLBARS_MODEL_CLASS (parent_class)->add_item (t, toolbar_position, position, type, res); @@ -209,8 +306,23 @@ impl_add_item (EggToolbarsModel *t, static void ephy_toolbars_model_set_bookmarks (EphyToolbarsModel *model, EphyBookmarks *bookmarks) { + EggToolbarsModel *egg_model = EGG_TOOLBARS_MODEL (model); + model->priv->bookmarks = bookmarks; g_object_ref (model->priv->bookmarks); + + if (g_file_test (model->priv->xml_file, G_FILE_TEST_EXISTS)) + { + egg_toolbars_model_load (egg_model, + model->priv->xml_file); + } + else + { + const char *default_xml; + + default_xml = ephy_file ("epiphany-toolbar.xml"); + egg_toolbars_model_load (egg_model, default_xml); + } } static void @@ -305,8 +417,6 @@ toolbar_removed (EphyToolbarsModel *model, int position) static void ephy_toolbars_model_init (EphyToolbarsModel *t) { - EggToolbarsModel *egg_model = EGG_TOOLBARS_MODEL (t); - t->priv = g_new0 (EphyToolbarsModelPrivate, 1); t->priv->bookmarks = NULL; @@ -314,19 +424,6 @@ ephy_toolbars_model_init (EphyToolbarsModel *t) "ephy-toolbars.xml", NULL); - if (g_file_test (t->priv->xml_file, G_FILE_TEST_EXISTS)) - { - egg_toolbars_model_load (egg_model, - t->priv->xml_file); - } - else - { - const char *default_xml; - - default_xml = ephy_file ("epiphany-toolbar.xml"); - egg_toolbars_model_load (egg_model, default_xml); - } - g_signal_connect (t, "item_added", G_CALLBACK (item_added), NULL); g_signal_connect (t, "item_removed", G_CALLBACK (item_removed), NULL); g_signal_connect (t, "toolbar_added", G_CALLBACK (toolbar_added), NULL); @@ -365,24 +462,21 @@ ephy_toolbars_model_new (EphyBookmarks *bookmarks) } static int -get_item_pos (EphyToolbarsModel *model, - int toolbar_pos, - const char *name) +get_toolbar_pos (EphyToolbarsModel *model, + const char *name) { - int i, n_items; + int i, n_toolbars; - n_items = egg_toolbars_model_n_items - (EGG_TOOLBARS_MODEL (model), toolbar_pos); + n_toolbars = egg_toolbars_model_n_toolbars + (EGG_TOOLBARS_MODEL (model)); - for (i = 0; i < n_items; i++) + for (i = 0; i < n_toolbars; i++) { - const char *i_name; - gboolean is_separator; + const char *t_name; - i_name = egg_toolbars_model_item_nth - (EGG_TOOLBARS_MODEL (model), toolbar_pos, i, - &is_separator); - if (!is_separator && strcmp (name, i_name) == 0) + t_name = egg_toolbars_model_toolbar_nth + (EGG_TOOLBARS_MODEL (model), i); + if (strcmp (name, t_name) == 0) { return i; } @@ -391,28 +485,43 @@ get_item_pos (EphyToolbarsModel *model, return -1; } -static int -get_toolbar_pos (EphyToolbarsModel *model, - const char *name) +static gboolean +get_toolbar_and_item_pos (EphyToolbarsModel *model, + const char *action_name, + int *toolbar, + int *position) { - int i, n_toolbars; + int n_toolbars, n_items; + int t,i; - n_toolbars = egg_toolbars_model_n_toolbars - (EGG_TOOLBARS_MODEL (model)); + n_toolbars = egg_toolbars_model_n_toolbars (EGG_TOOLBARS_MODEL (model)); - for (i = 0; i < n_toolbars; i++) + for (t = 0; t < n_toolbars; t++) { - const char *t_name; + n_items = egg_toolbars_model_n_items + (EGG_TOOLBARS_MODEL (model), t); - t_name = egg_toolbars_model_toolbar_nth - (EGG_TOOLBARS_MODEL (model), i); - if (strcmp (name, t_name) == 0) + for (i = 0; i < n_items; i++) { - return i; + const char *i_name; + gboolean is_separator; + + i_name = egg_toolbars_model_item_nth + (EGG_TOOLBARS_MODEL (model), t, i, + &is_separator); + g_return_val_if_fail (i_name != NULL, FALSE); + + if (strcmp (i_name, action_name) == 0) + { + *toolbar = t; + *position = i; + + return TRUE; + } } } - return -1; + return FALSE; } void @@ -421,17 +530,16 @@ ephy_toolbars_model_remove_bookmark (EphyToolbarsModel *model, long id) { char *action_name; - int toolbar_position, position; + int toolbar, position; action_name = ephy_toolbars_model_get_action_name (model, topic, id); + g_return_if_fail (action_name != NULL); - toolbar_position = get_toolbar_pos (model, "BookmarksBar"); - g_return_if_fail (toolbar_position != -1); - - position = get_item_pos (model, toolbar_position, action_name); - - egg_toolbars_model_remove_item (EGG_TOOLBARS_MODEL (model), - toolbar_position, position); + if (get_toolbar_and_item_pos (model, action_name, &toolbar, &position)) + { + egg_toolbars_model_remove_item (EGG_TOOLBARS_MODEL (model), + toolbar, position); + } g_free (action_name); } @@ -445,6 +553,7 @@ ephy_toolbars_model_add_bookmark (EphyToolbarsModel *model, int toolbar_position; action_name = ephy_toolbars_model_get_action_name (model, topic, id); + g_return_if_fail (action_name != NULL); toolbar_position = get_toolbar_pos (model, "BookmarksBar"); g_return_if_fail (toolbar_position != -1); @@ -462,17 +571,17 @@ ephy_toolbars_model_has_bookmark (EphyToolbarsModel *model, long id) { char *action_name; - int toolbar_position, position; + gboolean found; + int toolbar, pos; action_name = ephy_toolbars_model_get_action_name (model, topic, id); + g_return_val_if_fail (action_name != NULL, FALSE); - toolbar_position = get_toolbar_pos (model, "BookmarksBar"); - g_return_val_if_fail (toolbar_position != -1, FALSE); - position = get_item_pos (model, toolbar_position, action_name); + found = get_toolbar_and_item_pos (model, action_name, &toolbar, &pos); g_free (action_name); - return (position != -1); + return found; } void diff --git a/src/ephy-toolbars-model.h b/src/ephy-toolbars-model.h index 35e56b406..dd8814dc9 100755 --- a/src/ephy-toolbars-model.h +++ b/src/ephy-toolbars-model.h @@ -58,10 +58,9 @@ void ephy_toolbars_model_add_bookmark (EphyToolbarsModel *model, gboolean ephy_toolbars_model_has_bookmark (EphyToolbarsModel *model, gboolean topic, long id); - -void ephy_toolbars_model_remove_bookmark (EphyToolbarsModel *model, - gboolean topic, - long id); +void ephy_toolbars_model_remove_bookmark (EphyToolbarsModel *model, + gboolean topic, + long id); char *ephy_toolbars_model_get_action_name (EphyToolbarsModel *model, gboolean topic, diff --git a/src/toolbar.c b/src/toolbar.c index 2c5fe6a51..ae6a8f13f 100755 --- a/src/toolbar.c +++ b/src/toolbar.c @@ -150,7 +150,6 @@ topic_destroy_cb (EphyNode *node, action = egg_action_group_get_action (t->priv->action_group, name); if (action) { - ephy_toolbars_model_remove_bookmark (model, TRUE, id); egg_action_group_remove_action (t->priv->action_group, action); } @@ -174,7 +173,6 @@ bookmark_destroy_cb (EphyNode *node, action = egg_action_group_get_action (t->priv->action_group, name); if (action) { - ephy_toolbars_model_remove_bookmark (model, FALSE, id); egg_action_group_remove_action (t->priv->action_group, action); } |