
2001-10-22 Jeffrey Stedfast <fejj@ximian.com> * mail-display.h (mail_html_write_string): New fun macro. * mail-format.c (write_one_text_plain_chunk): Use gtk_html_write instead of mail_html_write so we avoid strdup'ing the text. (handle_text_plain_flowed): Use the mail_html_write_string macro. (handle_message_rfc822): Here too. (mail_format_raw_message): We can do it here also... (attachment_header): We can do it a little bit here... (write_address): A microscopic bit here... (write_hr): same. svn path=/trunk/; revision=13925
90 lines
2.7 KiB
C
90 lines
2.7 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
|
|
#ifndef _MAIL_DISPLAY_H_
|
|
#define _MAIL_DISPLAY_H_
|
|
|
|
#include <gtk/gtkvbox.h>
|
|
#include <gtkhtml/gtkhtml.h>
|
|
|
|
#include <gal/widgets/e-scroll-frame.h>
|
|
|
|
#include <camel/camel-stream.h>
|
|
#include <camel/camel-mime-message.h>
|
|
#include <camel/camel-medium.h>
|
|
|
|
#include "mail-types.h"
|
|
#include "mail-config.h" /*display_style*/
|
|
|
|
#define MAIL_DISPLAY_TYPE (mail_display_get_type ())
|
|
#define MAIL_DISPLAY(o) (GTK_CHECK_CAST ((o), MAIL_DISPLAY_TYPE, MailDisplay))
|
|
#define MAIL_DISPLAY_CLASS(k) (GTK_CHECK_CLASS_CAST((k), MAIL_DISPLAY_TYPE, MailDisplayClass))
|
|
#define IS_MAIL_DISPLAY(o) (GTK_CHECK_TYPE ((o), MAIL_DISPLAY_TYPE))
|
|
#define IS_MAIL_DISPLAY_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), MAIL_DISPLAY_TYPE))
|
|
|
|
struct _MailDisplay {
|
|
GtkVBox parent;
|
|
|
|
EScrollFrame *scroll;
|
|
GtkHTML *html;
|
|
GtkHTMLStream *stream;
|
|
gint redisplay_counter;
|
|
gpointer last_active;
|
|
guint idle_id;
|
|
|
|
char *charset;
|
|
|
|
char *selection;
|
|
|
|
CamelMimeMessage *current_message;
|
|
GData **data;
|
|
|
|
/* Sigh. This shouldn't be needed. I haven't figured out why it is
|
|
though. */
|
|
GtkWidget *invisible;
|
|
|
|
MailConfigDisplayStyle display_style;
|
|
};
|
|
|
|
typedef struct {
|
|
GtkVBoxClass parent_class;
|
|
} MailDisplayClass;
|
|
|
|
GtkType mail_display_get_type (void);
|
|
GtkWidget * mail_display_new (void);
|
|
|
|
void mail_display_queue_redisplay (MailDisplay *mail_display);
|
|
void mail_display_redisplay (MailDisplay *mail_display, gboolean unscroll);
|
|
void mail_display_redisplay_when_loaded (MailDisplay *md,
|
|
gconstpointer key,
|
|
void (*callback)(MailDisplay *, gpointer),
|
|
gpointer data);
|
|
void mail_display_stream_write_when_loaded (MailDisplay *md,
|
|
gconstpointer key,
|
|
const gchar *url,
|
|
void (*callback)(MailDisplay *, gpointer),
|
|
GtkHTMLStream *handle,
|
|
gpointer data);
|
|
|
|
void mail_display_set_message (MailDisplay *mail_display,
|
|
CamelMedium *medium);
|
|
|
|
void mail_display_set_charset (MailDisplay *mail_display,
|
|
const char *charset);
|
|
|
|
void mail_display_load_images (MailDisplay *mail_display);
|
|
|
|
|
|
#define mail_html_write_string(html, stream, string) gtk_html_write (html, stream, string, strlen (string))
|
|
|
|
void mail_html_write (GtkHTML *html,
|
|
GtkHTMLStream *stream,
|
|
const char *format, ...);
|
|
void mail_text_write (GtkHTML *html,
|
|
GtkHTMLStream *stream,
|
|
const char *format, ...);
|
|
void mail_error_write (GtkHTML *html,
|
|
GtkHTMLStream *stream,
|
|
const char *format, ...);
|
|
|
|
#endif /* _MAIL_DISPLAY_H_ */
|