From fe547e35612befdaf9932c2be6421c1664306959 Mon Sep 17 00:00:00 2001 From: Matthew Loper Date: Fri, 21 Jan 2000 16:20:01 +0000 Subject: + * camel/camel-formatter.c (camel_formatter_make_html): added a + CamelMimeMessage as a param to this function, and removed it as a + member of the object. svn path=/trunk/; revision=1602 --- camel/camel-formatter.c | 56 +++++++++++++++++++++---------------------------- camel/camel-formatter.h | 5 ++--- 2 files changed, 26 insertions(+), 35 deletions(-) (limited to 'camel') diff --git a/camel/camel-formatter.c b/camel/camel-formatter.c index a7d72e0b04..f1347c7b0f 100644 --- a/camel/camel-formatter.c +++ b/camel/camel-formatter.c @@ -20,7 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. * - * *----------------------------------------------------------------------*/ #include @@ -30,7 +29,7 @@ static GtkObjectClass *parent_class=NULL; static void _finalize (GtkObject *object); struct _CamelFormatterPrivate { - CamelMimeMessage *msg; + /* nothing here yet */ }; static void @@ -53,58 +52,51 @@ write_recipients_to_stream (const gchar *recipient_type, gchar *s; g_assert (recipient_type && stream_out); - s = g_strdup_printf ("%s:
\n", recipient_type); + /* Write "To:", "CC:", or "BCC:" to the stream */ + s = g_strdup_printf ("%s: ", recipient_type); camel_stream_write_string (stream_out, s); g_free (s); + /* Write out each recipient of 'recipient_type' to the stream */ while (recipients) { camel_stream_write_string (stream_out, recipients->data); recipients = recipients->next; if (recipients) camel_stream_write_string (stream_out, "; "); } - camel_stream_write_string (stream_out, "

\n"); + camel_stream_write_string (stream_out, "

\n"); } -void -set_mime_message (CamelFormatter* cfm, CamelMimeMessage* msg) +CamelFormatter* +camel_formatter_new () { - g_assert(cfm && msg); - cfm->priv->msg = msg; + return (gtk_type_new (CAMEL_FORMATTER_TYPE)); } - /** - * camel_formatter_to_html: write data content in a byte stream - * @data_wrapper: the camel formatter object - * @stream_out byte stream where data will be written - * - * This method must be overriden by subclasses - * Data must be written in the bytes stream - * in a architecture independant fashion. - * If data is a standard data (for example an jpg image) - * it must be serialized in the strea exactly as it - * would be saved on disk. A simple dump of the stream in - * a file should be sufficient for the data to be - * re-read by a foreign application. - * + * camel_formatter_make_html: + * @formatter: the camel formatter object + * @stream_out: byte stream where data will be written + * + * Writes a CamelMimeMessage out, as html, into a stream passed in as + * a parameter. **/ void -camel_formatter_make_html (CamelFormatter *mhs, +camel_formatter_make_html (CamelFormatter* formatter, + CamelMimeMessage* mime_message, CamelStream* stream_out) { gchar *s = NULL; GList *recipients = NULL; - CamelMimeMessage *mime_message; - g_assert (mhs && stream_out); - g_assert (mhs->priv->msg); + g_assert (formatter && mime_message && stream_out); - mime_message = mhs->priv->msg; - camel_stream_write_string (stream_out, "Content type: text/html\n"); - + + /* A few fields will probably be available from the mime_message; + for each one that's available, write it to the output stream + with a helper function, 'write_field_to_stream'. */ if ((s = (gchar*)camel_mime_message_get_subject (mime_message))) { write_field_to_stream ("Subject: ", s, stream_out); } @@ -155,7 +147,7 @@ static void camel_formatter_init (gpointer object, gpointer klass) { CamelFormatter* cmf = CAMEL_FORMATTER (object); - cmf->priv->msg = NULL; + cmf->priv = g_new (CamelFormatterPrivate, 1); } @@ -189,9 +181,9 @@ camel_formatter_get_type (void) static void _finalize (GtkObject *object) { - CamelFormatter *mhs = CAMEL_FORMATTER (object); + CamelFormatter *formatter = CAMEL_FORMATTER (object); - g_free (mhs->priv); + g_free (formatter->priv); GTK_OBJECT_CLASS (parent_class)->finalize (object); } diff --git a/camel/camel-formatter.h b/camel/camel-formatter.h index d2ed5bd12c..16942fc5ce 100644 --- a/camel/camel-formatter.h +++ b/camel/camel-formatter.h @@ -50,13 +50,12 @@ typedef struct { GtkType camel_formatter_get_type (void); /* Public functions */ -CamelFormatter* camel_formatter_new (CamelMimeMessage* msg); - -void set_mime_message (CamelFormatter* cfm, CamelMimeMessage* msg); +CamelFormatter* camel_formatter_new (); /* The main job of CamelFormatter is to take a mime message, and produce html from it. */ void camel_formatter_make_html (CamelFormatter* cmf, + CamelMimeMessage *msg, CamelStream* stream_out); #endif // CAMEL_FORMATTER_H -- cgit v1.2.3