aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-gui-utils.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@helixcode.com>2000-09-18 03:36:42 +0800
committerJP Rosevear <jpr@src.gnome.org>2000-09-18 03:36:42 +0800
commit9b6c32ad6635ca8950a576f8e3be53e53cae1dbf (patch)
treecb9690b32b863fd507b2f0ad22b36ffe8233ab84 /widgets/misc/e-gui-utils.c
parent025b5a3e0d9307086abb8572f89b64494fc5d2e8 (diff)
downloadgsoc2013-evolution-9b6c32ad6635ca8950a576f8e3be53e53cae1dbf.tar
gsoc2013-evolution-9b6c32ad6635ca8950a576f8e3be53e53cae1dbf.tar.gz
gsoc2013-evolution-9b6c32ad6635ca8950a576f8e3be53e53cae1dbf.tar.bz2
gsoc2013-evolution-9b6c32ad6635ca8950a576f8e3be53e53cae1dbf.tar.lz
gsoc2013-evolution-9b6c32ad6635ca8950a576f8e3be53e53cae1dbf.tar.xz
gsoc2013-evolution-9b6c32ad6635ca8950a576f8e3be53e53cae1dbf.tar.zst
gsoc2013-evolution-9b6c32ad6635ca8950a576f8e3be53e53cae1dbf.zip
Remove e_create_image_widget function
2000-09-17 JP Rosevear <jpr@helixcode.com> * src/widgets/e-gui-utils.c: Remove e_create_image_widget function * src/widgets/e-canvas-vbox.c: Fix headers svn path=/trunk/; revision=5479
Diffstat (limited to 'widgets/misc/e-gui-utils.c')
-rw-r--r--widgets/misc/e-gui-utils.c46
1 files changed, 0 insertions, 46 deletions
diff --git a/widgets/misc/e-gui-utils.c b/widgets/misc/e-gui-utils.c
index 2e31eb101b..cde82d9f78 100644
--- a/widgets/misc/e-gui-utils.c
+++ b/widgets/misc/e-gui-utils.c
@@ -65,52 +65,6 @@ e_popup_menu (GtkMenu *menu, GdkEventButton *event)
gtk_menu_popup (menu, NULL, NULL, 0, NULL, event->button, event->time);
}
-GtkWidget *e_create_image_widget(gchar *name,
- gchar *string1, gchar *string2,
- gint int1, gint int2)
-{
- char *filename;
- GdkPixbuf *pixbuf;
- double width, height;
- GtkWidget *canvas, *alignment;
- if (string1) {
- if (*string1 == '/')
- filename = g_strdup(string1);
- else
- filename = g_concat_dir_and_file(EVOLUTION_IMAGES, string1);
- pixbuf = gdk_pixbuf_new_from_file(filename);
- width = gdk_pixbuf_get_width(pixbuf);
- height = gdk_pixbuf_get_height(pixbuf);
-
- canvas = gnome_canvas_new_aa();
- GTK_OBJECT_UNSET_FLAGS(GTK_WIDGET(canvas), GTK_CAN_FOCUS);
- gnome_canvas_item_new(gnome_canvas_root(GNOME_CANVAS(canvas)),
- gnome_canvas_pixbuf_get_type(),
-
- "pixbuf", pixbuf,
- NULL);
-
- alignment = gtk_widget_new(gtk_alignment_get_type(),
- "child", canvas,
- "xalign", (double) 0,
- "yalign", (double) 0,
- "xscale", (double) 0,
- "yscale", (double) 0,
- NULL);
-
- gtk_widget_set_usize(canvas, width, height);
-
- gdk_pixbuf_unref(pixbuf);
-
- gtk_widget_show(canvas);
- gtk_widget_show(alignment);
- g_free(filename);
-
- return alignment;
- } else
- return NULL;
-}
-
typedef struct {
GtkCallback callback;
gpointer closure;