diff options
author | Chris Toshok <toshok@ximian.com> | 2004-01-31 06:48:04 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-01-31 06:48:04 +0800 |
commit | f06004a362ac6bb3bc3248653b5db266d554eb15 (patch) | |
tree | ec1e7cb1fda81423d8a3d71808a8e11f420da111 /widgets | |
parent | 728677a50b2f8f0fd7e8d70f5502e6d36f679a2f (diff) | |
download | gsoc2013-evolution-f06004a362ac6bb3bc3248653b5db266d554eb15.tar.gz gsoc2013-evolution-f06004a362ac6bb3bc3248653b5db266d554eb15.tar.zst gsoc2013-evolution-f06004a362ac6bb3bc3248653b5db266d554eb15.zip |
add an alignment around the image. This might not be enough. hrm.
2004-01-30 Chris Toshok <toshok@ximian.com>
* e-image-chooser.c (e_image_chooser_init): add an alignment
around the image. This might not be enough. hrm.
(set_image_from_data): handle the case where there's no image
(image_height == image_width == 0).
(e_image_chooser_get_image_data): new function.
(e_image_chooser_set_image_data): new function.
svn path=/trunk/; revision=24552
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/ChangeLog | 11 | ||||
-rw-r--r-- | widgets/misc/e-image-chooser.c | 88 | ||||
-rw-r--r-- | widgets/misc/e-image-chooser.h | 7 |
3 files changed, 83 insertions, 23 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index 826be8b970..e806ec9bf6 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,5 +1,16 @@ 2004-01-30 Chris Toshok <toshok@ximian.com> + * e-image-chooser.c (e_image_chooser_init): add an alignment + around the image. This might not be enough. hrm. + (set_image_from_data): handle the case where there's no image + (image_height == image_width == 0). + (e_image_chooser_get_image_data): new function. + (e_image_chooser_set_image_data): new function. + + * e-image-chooser.h: add prototypes for set/get_image_data. + +2004-01-30 Chris Toshok <toshok@ximian.com> + * e-image-chooser.[ch]: abstract out the drag and droppable image widget from the contact list editor and stick it here. There's some code for a "Browse..." button here but it's not enabled. diff --git a/widgets/misc/e-image-chooser.c b/widgets/misc/e-image-chooser.c index ade79a5892..2b7efb064e 100644 --- a/widgets/misc/e-image-chooser.c +++ b/widgets/misc/e-image-chooser.c @@ -23,6 +23,7 @@ #include <stdio.h> #include <string.h> +#include <gtk/gtkalignment.h> #include <gtk/gtkframe.h> #include <gtk/gtkimage.h> #include <gtk/gtkbutton.h> @@ -157,18 +158,23 @@ static void e_image_chooser_init (EImageChooser *chooser) { EImageChooserPrivate *priv; + GtkWidget *alignment; priv = chooser->priv = g_new0 (EImageChooserPrivate, 1); + alignment = gtk_alignment_new (0, 0, 0, 0); priv->frame = gtk_frame_new (""); priv->image = gtk_image_new (); + + gtk_container_add (GTK_CONTAINER (alignment), priv->image); + #if UI_CHANGE_OK priv->browse_button = gtk_button_new_with_label (_("Choose Image")); #endif gtk_frame_set_shadow_type (GTK_FRAME (priv->frame), GTK_SHADOW_NONE); - gtk_container_add (GTK_CONTAINER (priv->frame), priv->image); + gtk_container_add (GTK_CONTAINER (priv->frame), alignment); gtk_box_set_homogeneous (GTK_BOX (chooser), FALSE); gtk_box_pack_start (GTK_BOX (chooser), priv->frame, TRUE, TRUE, 0); #if UI_CHANGE_OK @@ -246,8 +252,13 @@ set_image_from_data (EImageChooser *chooser, printf ("new dimensions = (%d,%d)\n", new_width, new_height); - if (chooser->priv->image_height < new_height - || chooser->priv->image_width < new_width) { + if (chooser->priv->image_height == 0 + && chooser->priv->image_width == 0) { + printf ("initial setting of an image. no scaling\n"); + scale = 1.0; + } + else if (chooser->priv->image_height < new_height + || chooser->priv->image_width < new_width) { /* we need to scale down */ printf ("we need to scale down\n"); if (new_height > new_width) @@ -266,31 +277,40 @@ set_image_from_data (EImageChooser *chooser, printf ("scale = %g\n", scale); - new_width *= scale; - new_height *= scale; - new_width = MIN (new_width, chooser->priv->image_width); - new_height = MIN (new_height, chooser->priv->image_height); + if (scale == 1.0) { + gtk_image_set_from_pixbuf (GTK_IMAGE (chooser->priv->image), pixbuf); - printf ("new scaled dimensions = (%d,%d)\n", new_width, new_height); + chooser->priv->image_width = new_width; + chooser->priv->image_height = new_height; + } + else { + new_width *= scale; + new_height *= scale; + new_width = MIN (new_width, chooser->priv->image_width); + new_height = MIN (new_height, chooser->priv->image_height); + + printf ("new scaled dimensions = (%d,%d)\n", new_width, new_height); - scaled = gdk_pixbuf_scale_simple (pixbuf, - new_width, new_height, - GDK_INTERP_BILINEAR); + scaled = gdk_pixbuf_scale_simple (pixbuf, + new_width, new_height, + GDK_INTERP_BILINEAR); - composite = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, gdk_pixbuf_get_bits_per_sample (pixbuf), - chooser->priv->image_width, chooser->priv->image_height); + composite = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, gdk_pixbuf_get_bits_per_sample (pixbuf), + chooser->priv->image_width, chooser->priv->image_height); - gdk_pixbuf_fill (composite, 0x00000000); + gdk_pixbuf_fill (composite, 0x00000000); - gdk_pixbuf_copy_area (scaled, 0, 0, new_width, new_height, - composite, - chooser->priv->image_width / 2 - new_width / 2, - chooser->priv->image_height / 2 - new_height / 2); + gdk_pixbuf_copy_area (scaled, 0, 0, new_width, new_height, + composite, + chooser->priv->image_width / 2 - new_width / 2, + chooser->priv->image_height / 2 - new_height / 2); + + gtk_image_set_from_pixbuf (GTK_IMAGE (chooser->priv->image), composite); + gdk_pixbuf_unref (scaled); + gdk_pixbuf_unref (composite); + } - gtk_image_set_from_pixbuf (GTK_IMAGE (chooser->priv->image), composite); gdk_pixbuf_unref (pixbuf); - gdk_pixbuf_unref (scaled); - gdk_pixbuf_unref (composite); rv = TRUE; } @@ -459,6 +479,7 @@ e_image_chooser_set_from_file (EImageChooser *chooser, const char *filename) gsize data_length; g_return_val_if_fail (E_IS_IMAGE_CHOOSER (chooser), FALSE); + g_return_val_if_fail (filename, FALSE); if (!g_file_get_contents (filename, &data, &data_length, NULL)) { return FALSE; @@ -480,3 +501,28 @@ e_image_chooser_set_editable (EImageChooser *chooser, gboolean editable) gtk_widget_set_sensitive (chooser->priv->browse_button, editable); } + +gboolean +e_image_chooser_get_image_data (EImageChooser *chooser, char **data, gsize *data_length) +{ + g_return_val_if_fail (E_IS_IMAGE_CHOOSER (chooser), FALSE); + g_return_val_if_fail (data != NULL, FALSE); + g_return_val_if_fail (data_length != NULL, FALSE); + + *data_length = chooser->priv->image_buf_size; + *data = g_malloc (*data_length); + memcpy (*data, chooser->priv->image_buf, *data_length); + + return TRUE; +} + +gboolean +e_image_chooser_set_image_data (EImageChooser *chooser, char *data, gsize data_length) +{ + g_return_val_if_fail (E_IS_IMAGE_CHOOSER (chooser), FALSE); + g_return_val_if_fail (data != NULL, FALSE); + + set_image_from_data (chooser, data, data_length); + + return TRUE; +} diff --git a/widgets/misc/e-image-chooser.h b/widgets/misc/e-image-chooser.h index 55d260ff00..852bd76dba 100644 --- a/widgets/misc/e-image-chooser.h +++ b/widgets/misc/e-image-chooser.h @@ -55,7 +55,10 @@ struct _EImageChooserClass GtkWidget *e_image_chooser_new (void); GType e_image_chooser_get_type (void); -gboolean e_image_chooser_set_from_file (EImageChooser *chooser, const char *filename); -void e_image_chooser_set_editable (EImageChooser *chooser, gboolean editable); +gboolean e_image_chooser_set_from_file (EImageChooser *chooser, const char *filename); +gboolean e_image_chooser_set_image_data (EImageChooser *chooser, char *data, gsize data_length); +void e_image_chooser_set_editable (EImageChooser *chooser, gboolean editable); + +gboolean e_image_chooser_get_image_data (EImageChooser *chooser, char **data, gsize *data_length); #endif /* _E_IMAGE_CHOOSER_H_ */ |