aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-05-28 02:00:25 +0800
committerDan Winship <danw@src.gnome.org>2001-05-28 02:00:25 +0800
commitd129a4a8fcaf8c5a148402ef572005c947ac4226 (patch)
tree8a32b6ca7bacc43694551f021cbb5ca368fb5067 /e-util
parent13a77e6d0857ce5d701f3cde7a861c613ac7c202 (diff)
downloadgsoc2013-evolution-d129a4a8fcaf8c5a148402ef572005c947ac4226.tar
gsoc2013-evolution-d129a4a8fcaf8c5a148402ef572005c947ac4226.tar.gz
gsoc2013-evolution-d129a4a8fcaf8c5a148402ef572005c947ac4226.tar.bz2
gsoc2013-evolution-d129a4a8fcaf8c5a148402ef572005c947ac4226.tar.lz
gsoc2013-evolution-d129a4a8fcaf8c5a148402ef572005c947ac4226.tar.xz
gsoc2013-evolution-d129a4a8fcaf8c5a148402ef572005c947ac4226.tar.zst
gsoc2013-evolution-d129a4a8fcaf8c5a148402ef572005c947ac4226.zip
Remove e_pixmaps_update (moved to libeshell) so libeutil won't depend on
* e-gui-utils.c: Remove e_pixmaps_update (moved to libeshell) so libeutil won't depend on bonobo. svn path=/trunk/; revision=10017
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/e-gui-utils.c55
-rw-r--r--e-util/e-gui-utils.h15
3 files changed, 5 insertions, 70 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index cb5df43d2d..8f350ea0f5 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2001-05-27 Dan Winship <danw@ximian.com>
+
+ * e-gui-utils.c: Remove e_pixmaps_update (moved to libeshell) so
+ libeutil won't depend on bonobo.
+
2001-05-19 Ettore Perazzoli <ettore@ximian.com>
* e-host-utils.c (e_gethostbyname_r)
diff --git a/e-util/e-gui-utils.c b/e-util/e-gui-utils.c
index d6b72f6b69..2f47a4a613 100644
--- a/e-util/e-gui-utils.c
+++ b/e-util/e-gui-utils.c
@@ -19,7 +19,6 @@
#include <libgnome/gnome-util.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gdk-pixbuf/gnome-canvas-pixbuf.h>
-#include <bonobo/bonobo-ui-util.h>
GtkWidget *e_create_image_widget(gchar *name,
gchar *string1, gchar *string2,
@@ -65,57 +64,3 @@ GtkWidget *e_create_image_widget(gchar *name,
} else
return NULL;
}
-
-static GSList *inited_arrays=NULL;
-
-static void
-free_pixmaps (void)
-{
- int i;
- GSList *li;
-
- for (li = inited_arrays; li != NULL; li = li->next) {
- EPixmap *pixcache = li->data;
- for (i = 0; pixcache [i].path; i++)
- g_free (pixcache [i].pixbuf);
- }
-
- g_slist_free(inited_arrays);
-}
-
-void e_pixmaps_update (BonoboUIComponent *uic, EPixmap *pixcache)
-{
- static int done_init = 0;
- int i;
-
- if (!done_init) {
- g_atexit (free_pixmaps);
- done_init = 1;
- }
-
- if (g_slist_find(inited_arrays, pixcache) == NULL)
- inited_arrays = g_slist_prepend (inited_arrays, pixcache);
-
- for (i = 0; pixcache [i].path; i++) {
- if (!pixcache [i].pixbuf) {
- char *path;
- GdkPixbuf *pixbuf;
-
- path = g_concat_dir_and_file (EVOLUTION_IMAGES,
- pixcache [i].fname);
-
- pixbuf = gdk_pixbuf_new_from_file (path);
- if (pixbuf == NULL) {
- g_warning ("Cannot load image -- %s", path);
- } else {
- pixcache [i].pixbuf = bonobo_ui_util_pixbuf_to_xml (pixbuf);
- gdk_pixbuf_unref (pixbuf);
- }
-
- g_free (path);
- }
- bonobo_ui_component_set_prop (uic, pixcache [i].path, "pixname",
- pixcache [i].pixbuf, NULL);
- }
-}
-
diff --git a/e-util/e-gui-utils.h b/e-util/e-gui-utils.h
index 95df438915..9cbb64fbf6 100644
--- a/e-util/e-gui-utils.h
+++ b/e-util/e-gui-utils.h
@@ -2,22 +2,7 @@
#define E_GUI_UTILS_H
#include <gtk/gtkwidget.h>
-#include <bonobo/bonobo-ui-component.h>
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 */