aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/addressbook.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-01-25 14:33:41 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-01-25 14:33:41 +0800
commit77ba5399031de0aba831e267a4b6ed6f0d51ca6c (patch)
treef8e64c39b2f63e8b75b7273198b3b9f4ae272f44 /addressbook/gui/component/addressbook.c
parent46e42dcf44573b23812ada87bfe5313cb318662f (diff)
downloadgsoc2013-evolution-77ba5399031de0aba831e267a4b6ed6f0d51ca6c.tar
gsoc2013-evolution-77ba5399031de0aba831e267a4b6ed6f0d51ca6c.tar.gz
gsoc2013-evolution-77ba5399031de0aba831e267a4b6ed6f0d51ca6c.tar.bz2
gsoc2013-evolution-77ba5399031de0aba831e267a4b6ed6f0d51ca6c.tar.lz
gsoc2013-evolution-77ba5399031de0aba831e267a4b6ed6f0d51ca6c.tar.xz
gsoc2013-evolution-77ba5399031de0aba831e267a4b6ed6f0d51ca6c.tar.zst
gsoc2013-evolution-77ba5399031de0aba831e267a4b6ed6f0d51ca6c.zip
Get the addressbook to use the new "Show all" icon.
svn path=/trunk/; revision=7802
Diffstat (limited to 'addressbook/gui/component/addressbook.c')
-rw-r--r--addressbook/gui/component/addressbook.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c
index fe0ad46e52..54b211bb16 100644
--- a/addressbook/gui/component/addressbook.c
+++ b/addressbook/gui/component/addressbook.c
@@ -282,6 +282,32 @@ BonoboUIVerb verbs [] = {
};
static void
+set_pixmap (BonoboUIComponent *uic,
+ const char *xml_path,
+ const char *icon)
+{
+ char *path;
+ GdkPixbuf *pixbuf;
+
+ path = g_concat_dir_and_file (EVOLUTION_DATADIR "/images/evolution", icon);
+
+ pixbuf = gdk_pixbuf_new_from_file (path);
+ g_return_if_fail (pixbuf != NULL);
+
+ bonobo_ui_util_set_pixbuf (uic, xml_path, pixbuf);
+
+ gdk_pixbuf_unref (pixbuf);
+
+ g_free (path);
+}
+
+static void
+update_pixmaps (BonoboUIComponent *uic)
+{
+ set_pixmap (uic, "/Toolbar/View All", "24_all_contacts.xpm");
+}
+
+static void
control_activate (BonoboControl *control,
BonoboUIComponent *uic,
AddressbookView *view)
@@ -305,6 +331,8 @@ control_activate (BonoboControl *control,
update_view_type (view);
+ update_pixmaps (uic);
+
bonobo_ui_component_thaw (uic, NULL);
}