aboutsummaryrefslogtreecommitdiffstats
path: root/src/bookmarks/ephy-bookmark-action.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-04-28 17:05:56 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-04-28 17:05:56 +0800
commit70c5d9a1d5598f03a7717ba8028952ba65abaff2 (patch)
treec67474bee3d06ccabf177950f53b6986dd5552bd /src/bookmarks/ephy-bookmark-action.c
parentbd41682b235e8a4a0c37b317ef71c38e5ed6a5a1 (diff)
downloadgsoc2013-epiphany-70c5d9a1d5598f03a7717ba8028952ba65abaff2.tar
gsoc2013-epiphany-70c5d9a1d5598f03a7717ba8028952ba65abaff2.tar.gz
gsoc2013-epiphany-70c5d9a1d5598f03a7717ba8028952ba65abaff2.tar.bz2
gsoc2013-epiphany-70c5d9a1d5598f03a7717ba8028952ba65abaff2.tar.lz
gsoc2013-epiphany-70c5d9a1d5598f03a7717ba8028952ba65abaff2.tar.xz
gsoc2013-epiphany-70c5d9a1d5598f03a7717ba8028952ba65abaff2.tar.zst
gsoc2013-epiphany-70c5d9a1d5598f03a7717ba8028952ba65abaff2.zip
Sync toolbar on bookmark properties changes.
2003-04-28 Marco Pesenti Gritti <marco@it.gnome.org> * src/bookmarks/ephy-bookmark-action.c: (sync_bookmark_properties), (bookmarks_child_changed_cb), (ephy_bookmark_action_init), (ephy_bookmark_action_new): * src/bookmarks/ephy-topic-action.c: (ephy_topic_action_set_property), (ephy_topic_action_get_property), (ephy_topic_action_class_init), (sync_topic_properties), (topic_child_changed_cb), (ephy_topic_action_init), (ephy_topic_action_new): Sync toolbar on bookmark properties changes.
Diffstat (limited to 'src/bookmarks/ephy-bookmark-action.c')
-rw-r--r--src/bookmarks/ephy-bookmark-action.c71
1 files changed, 54 insertions, 17 deletions
diff --git a/src/bookmarks/ephy-bookmark-action.c b/src/bookmarks/ephy-bookmark-action.c
index 8039ca42b..196a05e36 100644
--- a/src/bookmarks/ephy-bookmark-action.c
+++ b/src/bookmarks/ephy-bookmark-action.c
@@ -365,43 +365,80 @@ ephy_bookmark_action_class_init (EphyBookmarkActionClass *class)
}
static void
+sync_bookmark_properties (EggAction *action, EphyNode *bmk)
+{
+ const char *title, *location, *smart_url, *icon;
+
+ icon = ephy_node_get_property_string
+ (bmk, EPHY_NODE_BMK_PROP_ICON);
+ title = ephy_node_get_property_string
+ (bmk, EPHY_NODE_BMK_PROP_TITLE);
+ location = ephy_node_get_property_string
+ (bmk, EPHY_NODE_BMK_PROP_LOCATION);
+ smart_url = ephy_node_get_property_string
+ (bmk, EPHY_NODE_BMK_PROP_SMART_LOCATION);
+ if (smart_url && *smart_url == '\0') smart_url = NULL;
+
+ g_object_set (action,
+ "label", title,
+ "location", location,
+ "smart_url", smart_url,
+ "icon", icon,
+ NULL);
+}
+
+static void
+bookmarks_child_changed_cb (EphyNode *node, EphyNode *child, EggAction *action)
+{
+ gulong id;
+
+ id = EPHY_BOOKMARK_ACTION (action)->priv->bookmark_id;
+
+ if (id == ephy_node_get_id (child))
+ {
+ sync_bookmark_properties (action, child);
+ }
+}
+
+static void
ephy_bookmark_action_init (EphyBookmarkAction *action)
{
+ EphyBookmarks *bookmarks;
+ EphyNode *node;
+
action->priv = g_new0 (EphyBookmarkActionPrivate, 1);
action->priv->location = NULL;
action->priv->smart_url = NULL;
action->priv->icon = NULL;
+
+
+ bookmarks = ephy_shell_get_bookmarks (ephy_shell);
+ node = ephy_bookmarks_get_bookmarks (bookmarks);
+ g_signal_connect_object (node, "child_changed",
+ G_CALLBACK (bookmarks_child_changed_cb),
+ action, 0);
}
EggAction *
ephy_bookmark_action_new (const char *name, guint id)
{
EphyNode *bmk;
- const char *title, *location, *smart_url, *icon;
EphyBookmarks *bookmarks;
+ EggAction *action;
bookmarks = ephy_shell_get_bookmarks (ephy_shell);
bmk = ephy_node_get_from_id (id);
g_return_val_if_fail (bmk != NULL, NULL);
- icon = ephy_node_get_property_string
- (bmk, EPHY_NODE_BMK_PROP_ICON);
- title = ephy_node_get_property_string
- (bmk, EPHY_NODE_BMK_PROP_TITLE);
- location = ephy_node_get_property_string
- (bmk, EPHY_NODE_BMK_PROP_LOCATION);
- smart_url = ephy_node_get_property_string
- (bmk, EPHY_NODE_BMK_PROP_SMART_LOCATION);
- if (smart_url && *smart_url == '\0') smart_url = NULL;
+ action = EGG_ACTION (g_object_new (EPHY_TYPE_BOOKMARK_ACTION,
+ "name", name,
+ "bookmark_id", id,
+ NULL));
+
+ sync_bookmark_properties (action, bmk);
- return EGG_ACTION (g_object_new (EPHY_TYPE_BOOKMARK_ACTION,
- "name", name,
- "label", title,
- "location", location,
- "smart_url", smart_url,
- "icon", icon,
- NULL));
+ return action;
}