diff options
author | Not Zed <NotZed@Ximian.com> | 2004-06-18 15:41:36 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-06-18 15:41:36 +0800 |
commit | 1a68102c00f473ff8892f901fa71f9cd2c5a6534 (patch) | |
tree | 7ee07ae8c9979fb2008e9abf91f7e43084634577 /mail/em-format-html-print.h | |
parent | 01a1d4009633d920a823ed7085893082ac6b0187 (diff) | |
download | gsoc2013-evolution-1a68102c00f473ff8892f901fa71f9cd2c5a6534.tar.gz gsoc2013-evolution-1a68102c00f473ff8892f901fa71f9cd2c5a6534.tar.zst gsoc2013-evolution-1a68102c00f473ff8892f901fa71f9cd2c5a6534.zip |
** See #60214.
2004-06-18 Not Zed <NotZed@Ximian.com>
** See #60214.
* em-folder-view.c (em_folder_view_print): re-arrange code to make
the dialogue async. We also now load the message every time
before printing.
(emfv_print_response): handle response to print.
* em-format-html-print.c (em_format_html_print_message): new api
to print a specific uid on a specific folder.
svn path=/trunk/; revision=26413
Diffstat (limited to 'mail/em-format-html-print.h')
-rw-r--r-- | mail/em-format-html-print.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/em-format-html-print.h b/mail/em-format-html-print.h index 5c8731ef12..0153d405e6 100644 --- a/mail/em-format-html-print.h +++ b/mail/em-format-html-print.h @@ -13,13 +13,14 @@ struct _GnomePrintConfig; typedef struct _EMFormatHTMLPrint EMFormatHTMLPrint; typedef struct _EMFormatHTMLPrintClass EMFormatHTMLPrintClass; -struct _CamelMimePart; +struct _CamelFolder; struct _EMFormatHTMLPrint { EMFormatHTML formathtml; struct _GtkWidget *window; /* used to realise the gtkhtml in a toplevel, i dont know why */ struct _GnomePrintConfig *config; + struct _EMFormatHTML *source; /* used for print_message */ int preview:1; }; @@ -33,5 +34,6 @@ GType em_format_html_print_get_type(void); EMFormatHTMLPrint *em_format_html_print_new(void); int em_format_html_print_print(EMFormatHTMLPrint *efhp, EMFormatHTML *source, struct _GnomePrintConfig *print_config, int preview); +int em_format_html_print_message(EMFormatHTMLPrint *efhp, EMFormatHTML *source, struct _GnomePrintConfig *print_config, struct _CamelFolder *folder, const char *uid, int preview); #endif /* ! _EM_FORMAT_HTML_PRINT_H */ |