From 9713f20bc88573b3716d1b0ba97ac2b4743d150b Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Tue, 25 Apr 2000 14:59:08 +0000 Subject: Redo large chunks of this. The mail display now consists of a vbox in a * mail-display.c, mail-format.c: Redo large chunks of this. The mail display now consists of a vbox in a scrolled window, in which we put multiple GtkHTML objects. This means broken HTML in one part can't corrupt other parts. The headers now scroll with the body. Unrecognized attachments look prettier, but still don't do anything, and will probably be changed later. We can also now display nested message/rfc822 parts and multipart/alternatives with multipart subparts. Oh, and text/{richtext,enriched}, since we had all these ancient sample messages that use it and the lack of support annoyed me. :) Bonobo embeddables are broken right now, but I don't think that's my fault. svn path=/trunk/; revision=2601 --- mail/mail-format.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'mail/mail-format.h') diff --git a/mail/mail-format.h b/mail/mail-format.h index 22c5f9deb2..39265014d6 100644 --- a/mail/mail-format.h +++ b/mail/mail-format.h @@ -34,11 +34,7 @@ extern "C" { #include "camel/camel.h" #include "composer/e-msg-composer.h" -void mail_format_mime_message (CamelMimeMessage *mime_message, - GtkHTMLStreamHandle *header_stream, - GtkHTMLStreamHandle *body_stream); - -void mail_write_html (GtkHTMLStreamHandle *stream, const char *data); +void mail_format_mime_message (CamelMimeMessage *mime_message, GtkBox *box); EMsgComposer *mail_generate_reply (CamelMimeMessage *mime_message, gboolean to_all); -- cgit