
2001-12-11 Jon Trowbridge <trow@ximian.com> * mail-identify.c (mail_identify_mime_part): Fixed for mail_content_loaded's new signature. * mail-format.c (attachment_header): Don't convert URLs, etc. if we are printing. (write_address): Don't convert addresses to mailto: links if we are printing. (write_one_text_plain_chunk): Add a printing flag, that we pass along to mail_text_write. (handle_text_plain): Pass our printing flag to write_one_text_plain_chunk. (mail_get_message_rfc822): Don't unneccesarily convert URLs. (mail_content_loaded): Add a GtkHTML parameter. * mail-display.c (mail_display_initialize_gtkhtml): Added. Breaks all of the signal hookups out of mail_display_new. (mail_display_new): Call mail_display_initialize_gtkhtml. (mail_text_write): Don't convert URLs, etc., if we are printing. Lots of other changes to pass around GtkHTML/GtkHTMLStream objects. * mail-callbacks.c (do_mail_print): Call mail_display_initialize_gtkhtml on our GtkHTML object. * folder-browser.c (update_status_bar): Make the status bar more useful when you have a large number of hidden messages. svn path=/trunk/; revision=14997
99 lines
2.6 KiB
C
99 lines
2.6 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* Authors: Jeffrey Stedfast <fejj@ximian.com>
|
|
*
|
|
* Copyright 2001 Ximain, Inc. (www.ximian.com)
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
* License as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include "mail-stream-gtkhtml.h"
|
|
|
|
static CamelStreamClass *parent_class = NULL;
|
|
|
|
static ssize_t stream_write (CamelStream *stream, const char *buffer, size_t n);
|
|
|
|
static void
|
|
mail_stream_gtkhtml_class_init (MailStreamGtkHTMLClass *mail_stream_gtkhtml_class)
|
|
{
|
|
CamelStreamClass *camel_stream_class =
|
|
CAMEL_STREAM_CLASS (mail_stream_gtkhtml_class);
|
|
|
|
parent_class = CAMEL_STREAM_CLASS (camel_type_get_global_classfuncs (CAMEL_STREAM_TYPE));
|
|
|
|
/* virtual method overload */
|
|
camel_stream_class->write = stream_write;
|
|
}
|
|
|
|
static void
|
|
mail_stream_gtkhtml_init (CamelObject *object)
|
|
{
|
|
;
|
|
}
|
|
|
|
static void
|
|
mail_stream_gtkhtml_finalize (CamelObject *object)
|
|
{
|
|
;
|
|
}
|
|
|
|
CamelType
|
|
mail_stream_gtkhtml_get_type (void)
|
|
{
|
|
static CamelType type = CAMEL_INVALID_TYPE;
|
|
|
|
if (type == CAMEL_INVALID_TYPE) {
|
|
type = camel_type_register (CAMEL_STREAM_TYPE,
|
|
"MailStreamGtkHTML",
|
|
sizeof (MailStreamGtkHTML),
|
|
sizeof (MailStreamGtkHTMLClass),
|
|
(CamelObjectClassInitFunc) mail_stream_gtkhtml_class_init,
|
|
NULL,
|
|
(CamelObjectInitFunc) mail_stream_gtkhtml_init,
|
|
(CamelObjectFinalizeFunc) mail_stream_gtkhtml_finalize);
|
|
}
|
|
|
|
return type;
|
|
}
|
|
|
|
|
|
CamelStream *
|
|
mail_stream_gtkhtml_new (GtkHTML *html, GtkHTMLStream *html_stream)
|
|
{
|
|
MailStreamGtkHTML *stream_gtkhtml;
|
|
|
|
stream_gtkhtml = MAIL_STREAM_GTKHTML (camel_object_new (MAIL_STREAM_GTKHTML_TYPE));
|
|
stream_gtkhtml->html = html;
|
|
stream_gtkhtml->html_stream = html_stream;
|
|
|
|
return CAMEL_STREAM (stream_gtkhtml);
|
|
}
|
|
|
|
static ssize_t
|
|
stream_write (CamelStream *stream, const char *buffer, size_t n)
|
|
{
|
|
MailStreamGtkHTML *stream_gtkhtml = MAIL_STREAM_GTKHTML (stream);
|
|
|
|
gtk_html_write (stream_gtkhtml->html, stream_gtkhtml->html_stream,
|
|
buffer, n);
|
|
return n;
|
|
}
|