aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-04-23 13:46:05 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-04-23 13:46:05 +0800
commitd32e4fd988dd80c75409793a25bdf4f13706ff4f (patch)
treeeaae61cf65cccfebe84d98a46c03a3be0e5c592e
parente5c2711bfd02539a9928516c24969cc885ce2fb8 (diff)
downloadgsoc2013-evolution-d32e4fd988dd80c75409793a25bdf4f13706ff4f.tar
gsoc2013-evolution-d32e4fd988dd80c75409793a25bdf4f13706ff4f.tar.gz
gsoc2013-evolution-d32e4fd988dd80c75409793a25bdf4f13706ff4f.tar.bz2
gsoc2013-evolution-d32e4fd988dd80c75409793a25bdf4f13706ff4f.tar.lz
gsoc2013-evolution-d32e4fd988dd80c75409793a25bdf4f13706ff4f.tar.xz
gsoc2013-evolution-d32e4fd988dd80c75409793a25bdf4f13706ff4f.tar.zst
gsoc2013-evolution-d32e4fd988dd80c75409793a25bdf4f13706ff4f.zip
fallback to stock attach if we can't ifnd the icon.
2004-04-23 Not Zed <NotZed@Ximian.com> * e-msg-composer-attachment-bar.c (update): fallback to stock attach if we can't ifnd the icon. svn path=/trunk/; revision=25593
-rw-r--r--composer/ChangeLog5
-rw-r--r--composer/e-msg-composer-attachment-bar.c27
2 files changed, 21 insertions, 11 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index f3efcb2b18..df67180603 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,8 @@
+2004-04-23 Not Zed <NotZed@Ximian.com>
+
+ * e-msg-composer-attachment-bar.c (update): fallback to stock
+ attach if we can't ifnd the icon.
+
2004-04-19 Jeffrey Stedfast <fejj@ximian.com>
* e-msg-composer.c (create_composer): Use the E_ICON_SIZE enums
diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c
index d2f0ff4d48..8cd6e4f6f7 100644
--- a/composer/e-msg-composer-attachment-bar.c
+++ b/composer/e-msg-composer-attachment-bar.c
@@ -54,6 +54,7 @@
#include <camel/camel-mime-part.h>
#include "e-util/e-gui-utils.h"
+#include "e-util/e-icon-factory.h"
#define ICON_WIDTH 64
#define ICON_SEPARATORS " /-_"
@@ -232,17 +233,14 @@ update (EMsgComposerAttachmentBar *bar)
EMsgComposerAttachment *attachment;
CamelContentType *content_type;
char *size_string, *label;
- GdkPixbuf *pixbuf;
- gboolean image;
+ GdkPixbuf *pixbuf = NULL;
const char *desc;
attachment = p->data;
content_type = camel_mime_part_get_content_type (attachment->body);
/* Get the image out of the attachment
and create a thumbnail for it */
- image = camel_content_type_is (content_type, "image", "*");
-
- if (image && attachment->pixbuf_cache == NULL) {
+ if (camel_content_type_is(content_type, "image", "*") && attachment->pixbuf_cache == NULL) {
CamelDataWrapper *wrapper;
CamelStreamMem *mstream;
GdkPixbufLoader *loader;
@@ -284,9 +282,11 @@ update (EMsgComposerAttachmentBar *bar)
width,
height,
GDK_INTERP_BILINEAR);
+ pixbuf = attachment->pixbuf_cache;
+ g_object_ref(pixbuf);
} else {
+ pixbuf = NULL;
g_warning ("GdkPixbufLoader Error");
- image = FALSE;
}
/* Destroy everything */
@@ -308,17 +308,22 @@ update (EMsgComposerAttachmentBar *bar)
} else
label = g_strdup (desc);
- if (image) {
- gnome_icon_list_append_pixbuf (icon_list, attachment->pixbuf_cache, NULL, label);
- } else {
+ if (pixbuf == NULL) {
char *mime_type;
mime_type = camel_content_type_simple (content_type);
pixbuf = e_icon_for_mime_type (mime_type, 48);
+ if (pixbuf == NULL)
+ /* stock_attach would be better, but its fugly scaled up */
+ pixbuf = e_icon_factory_get_icon("stock_unknown", E_ICON_SIZE_DIALOG);
+ else
+ g_warning("cannot find icon for mime type %s (installation problem?)", content_type);
g_free (mime_type);
+ }
+
+ if (pixbuf) {
gnome_icon_list_append_pixbuf (icon_list, pixbuf, NULL, label);
- if (pixbuf)
- g_object_unref (pixbuf);
+ g_object_unref(pixbuf);
}
g_free (label);