From 042704ddd3f26ef3becbe000547564127694c069 Mon Sep 17 00:00:00 2001 From: Gediminas Paulauskas Date: Mon, 2 Apr 2001 03:59:11 +0000 Subject: Blessed by Ettore. Guided by Jacub Stener's mail, where he explaned which icons were renamed or added, I added a bunch of new icons to menus, fixed renamed ones. Changed Trash and Executive summary folder type icons. Fixed art/Makefile.am for these changes. Also, pulled icon cache from mailer and moved it to e-util/e-gui-utils.h, made all components and dialogs use cache and not load pixmaps every time. Accidentally got a couple of includes fix in, but they won't break anything. svn path=/trunk/; revision=9092 --- e-util/e-gui-utils.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'e-util/e-gui-utils.h') diff --git a/e-util/e-gui-utils.h b/e-util/e-gui-utils.h index 9cbb64fbf6..95df438915 100644 --- a/e-util/e-gui-utils.h +++ b/e-util/e-gui-utils.h @@ -2,7 +2,22 @@ #define E_GUI_UTILS_H #include +#include GtkWidget *e_create_image_widget (gchar *name, gchar *string1, gchar *string2, gint int1, gint int2); +typedef struct _EPixmap EPixmap; + +struct _EPixmap { + const char *path; + const char *fname; + char *pixbuf; +}; + +#define E_PIXMAP(path,fname) { (path), (fname), NULL } +#define E_PIXMAP_END { NULL, NULL, NULL } + +/* Takes an array of pixmaps, terminated by (NULL, NULL), and loads into uic */ +void e_pixmaps_update (BonoboUIComponent *uic, EPixmap *pixcache); + #endif /* E_GUI_UTILS_H */ -- cgit