From 7f7c32f6d202a2b1f9cc413bf361be91bcd47010 Mon Sep 17 00:00:00 2001 From: Radek Doulik Date: Sat, 4 Nov 2000 10:11:50 +0000 Subject: use inline images hash table 2000-11-04 Radek Doulik * listener.c (resolve_image_url): use inline images hash table * e-msg-composer.c (init): create inlined images hash table (destroy): destroy it (clear_inline_images): helper function, used from g_hash_table_foreach_remove to destroy one inline image record * e-msg-composer.h: added hash table with inlined images url -> cid info 2000-11-03 Radek Doulik * listener.c (impl_event): updated for API changed implemented image_url event (resolve_image_url): new helper function, attaches image to mail and returns new (resolved) url pointing to mime component * e-msg-composer-attachment.c (e_msg_composer_attachment_new): added conponent_id parameter * e-msg-composer-attachment-bar.c (e_msg_composer_attachment_bar_attach): added parameter content_id (add_from_file): likewise svn path=/trunk/; revision=6390 --- composer/e-msg-composer-attachment-bar.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'composer/e-msg-composer-attachment-bar.c') diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c index 93aaf30900..6653fa238f 100644 --- a/composer/e-msg-composer-attachment-bar.c +++ b/composer/e-msg-composer-attachment-bar.c @@ -157,9 +157,9 @@ add_from_mime_part (EMsgComposerAttachmentBar *bar, static void add_from_file (EMsgComposerAttachmentBar *bar, - const gchar *file_name) + const gchar *file_name, const gchar *content_id) { - add_common (bar, e_msg_composer_attachment_new (file_name)); + add_common (bar, e_msg_composer_attachment_new (file_name, content_id)); } static void @@ -395,7 +395,7 @@ add_from_user (EMsgComposerAttachmentBar *bar) file_name = e_msg_composer_select_file (composer, _("Attach a file")); - add_from_file (bar, file_name); + add_from_file (bar, file_name, NULL); g_free (file_name); } @@ -758,14 +758,14 @@ e_msg_composer_attachment_bar_get_num_attachments (EMsgComposerAttachmentBar *ba void e_msg_composer_attachment_bar_attach (EMsgComposerAttachmentBar *bar, - const gchar *file_name) + const gchar *file_name, const gchar *content_id) { g_return_if_fail (E_IS_MSG_COMPOSER_ATTACHMENT_BAR (bar)); if (file_name == NULL) add_from_user (bar); else - add_from_file (bar, file_name); + add_from_file (bar, file_name, content_id); } void -- cgit v1.2.3