diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-13 06:03:32 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-13 06:03:32 +0800 |
commit | 6e8da6b223c9e3450597eeaf03a88123f3c8b656 (patch) | |
tree | f2104727d5ffa85c943da38b47fdd7b69ca28757 /addressbook | |
parent | 842913831516ce552b166c3f506f05a816758b27 (diff) | |
download | gsoc2013-evolution-6e8da6b223c9e3450597eeaf03a88123f3c8b656.tar gsoc2013-evolution-6e8da6b223c9e3450597eeaf03a88123f3c8b656.tar.gz gsoc2013-evolution-6e8da6b223c9e3450597eeaf03a88123f3c8b656.tar.bz2 gsoc2013-evolution-6e8da6b223c9e3450597eeaf03a88123f3c8b656.tar.lz gsoc2013-evolution-6e8da6b223c9e3450597eeaf03a88123f3c8b656.tar.xz gsoc2013-evolution-6e8da6b223c9e3450597eeaf03a88123f3c8b656.tar.zst gsoc2013-evolution-6e8da6b223c9e3450597eeaf03a88123f3c8b656.zip |
Add icons to the toolbars.
2000-07-12 Christopher James Lahey <clahey@helixcode.com>
* contact-editor/e-contact-editor.c: Add icons to the toolbars.
svn path=/trunk/; revision=4125
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 4 | ||||
-rw-r--r-- | addressbook/contact-editor/e-contact-editor.c | 22 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 22 |
3 files changed, 32 insertions, 16 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 181596a674..d55cd24354 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,9 @@ 2000-07-12 Christopher James Lahey <clahey@helixcode.com> + * contact-editor/e-contact-editor.c: Add icons to the toolbars. + +2000-07-12 Christopher James Lahey <clahey@helixcode.com> + * contact-editor/Makefile.am: Added installation of arrow.png. * contact-editor/e-contact-editor.c: Use EVOLUTIONDIR #define. diff --git a/addressbook/contact-editor/e-contact-editor.c b/addressbook/contact-editor/e-contact-editor.c index c3f6b00cd0..c318dc7605 100644 --- a/addressbook/contact-editor/e-contact-editor.c +++ b/addressbook/contact-editor/e-contact-editor.c @@ -777,18 +777,24 @@ static GnomeUIInfo toolbar[] = { tb_save_and_close_cb, GNOME_STOCK_PIXMAP_SAVE), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Print..."), - N_("Print this item"), NULL), + GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Print..."), + N_("Print this item"), NULL, + GNOME_STOCK_PIXMAP_PRINT), +#if 0 GNOMEUIINFO_ITEM_NONE (N_("FIXME: Insert File..."), N_("Insert a file as an attachment"), NULL), +#endif GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Delete"), - N_("Delete this item"), NULL), + GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Delete"), + N_("Delete this item"), NULL, + GNOME_STOCK_PIXMAP_TRASH), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Previous"), - N_("Go to the previous item"), NULL), - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Next"), - N_("Go to the next item"), NULL), + GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Previous"), + N_("Go to the previous item"), NULL, + GNOME_STOCK_PIXMAP_BACK), + GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Next"), + N_("Go to the next item"), NULL, + GNOME_STOCK_PIXMAP_FORWARD), GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Help"), N_("See online help"), NULL, GNOME_STOCK_PIXMAP_HELP), GNOMEUIINFO_END diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index c3f6b00cd0..c318dc7605 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -777,18 +777,24 @@ static GnomeUIInfo toolbar[] = { tb_save_and_close_cb, GNOME_STOCK_PIXMAP_SAVE), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Print..."), - N_("Print this item"), NULL), + GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Print..."), + N_("Print this item"), NULL, + GNOME_STOCK_PIXMAP_PRINT), +#if 0 GNOMEUIINFO_ITEM_NONE (N_("FIXME: Insert File..."), N_("Insert a file as an attachment"), NULL), +#endif GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Delete"), - N_("Delete this item"), NULL), + GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Delete"), + N_("Delete this item"), NULL, + GNOME_STOCK_PIXMAP_TRASH), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Previous"), - N_("Go to the previous item"), NULL), - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Next"), - N_("Go to the next item"), NULL), + GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Previous"), + N_("Go to the previous item"), NULL, + GNOME_STOCK_PIXMAP_BACK), + GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Next"), + N_("Go to the next item"), NULL, + GNOME_STOCK_PIXMAP_FORWARD), GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Help"), N_("See online help"), NULL, GNOME_STOCK_PIXMAP_HELP), GNOMEUIINFO_END |