* mail-display.c (pixbuf_gen_idle, etc): Make the thumbnail cache global rather than per-MailDisplay, since content-ids ought to be globally unique. Also, don't leak content-id strings when the pixbuf generation fails, and remove pixbufs from the cache after 5 minutes. svn path=/trunk/; revision=8948
66 lines
2.0 KiB
C
66 lines
2.0 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"
|
|
|
|
#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;
|
|
gpointer last_active;
|
|
guint idle_id;
|
|
|
|
CamelMimeMessage *current_message;
|
|
GData **data;
|
|
};
|
|
|
|
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_set_message (MailDisplay *mail_display,
|
|
CamelMedium *medium);
|
|
|
|
void mail_display_toggle_raw (MailDisplay *mail_display,
|
|
gboolean toggle);
|
|
|
|
|
|
#define HTML_HEADER "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 TRANSITIONAL//EN\">\n<HTML>\n<HEAD>\n<META NAME=\"GENERATOR\" CONTENT=\"Evolution Mail Component\">\n</HEAD>\n"
|
|
|
|
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_ */
|