aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html-print.h
diff options
context:
space:
mode:
authorDan Vrátil <dvratil@redhat.com>2012-03-29 00:38:11 +0800
committerDan Vrátil <dvratil@redhat.com>2012-03-29 00:38:25 +0800
commit6d2c382788a4042d53f49a080acd11b499aa52f6 (patch)
tree3834f0836340918ba17594a603ba61c13b9929a0 /mail/em-format-html-print.h
parent6bd1c6833a2c51898ac45865767dd01ba66a95c5 (diff)
downloadgsoc2013-evolution-6d2c382788a4042d53f49a080acd11b499aa52f6.tar
gsoc2013-evolution-6d2c382788a4042d53f49a080acd11b499aa52f6.tar.gz
gsoc2013-evolution-6d2c382788a4042d53f49a080acd11b499aa52f6.tar.bz2
gsoc2013-evolution-6d2c382788a4042d53f49a080acd11b499aa52f6.tar.lz
gsoc2013-evolution-6d2c382788a4042d53f49a080acd11b499aa52f6.tar.xz
gsoc2013-evolution-6d2c382788a4042d53f49a080acd11b499aa52f6.tar.zst
gsoc2013-evolution-6d2c382788a4042d53f49a080acd11b499aa52f6.zip
WebKit port - port formatter and mail module
Diffstat (limited to 'mail/em-format-html-print.h')
-rw-r--r--mail/em-format-html-print.h19
1 files changed, 3 insertions, 16 deletions
diff --git a/mail/em-format-html-print.h b/mail/em-format-html-print.h
index 5f08b6ef82..d9fe1ff6d4 100644
--- a/mail/em-format-html-print.h
+++ b/mail/em-format-html-print.h
@@ -45,20 +45,12 @@ G_BEGIN_DECLS
typedef struct _EMFormatHTMLPrint EMFormatHTMLPrint;
typedef struct _EMFormatHTMLPrintClass EMFormatHTMLPrintClass;
+typedef struct _EMFormatHTMLPrintPrivate EMFormatHTMLPrintPrivate;
struct _EMFormatHTMLPrint {
EMFormatHTML parent;
-
- /* Used to realize the gtkhtml in a toplevel. */
- GtkWidget *window;
-
- /* Used for print_message. */
- EMFormatHTML *source;
-
- GtkPrintOperationAction action;
+ EMFormatHTMLPrintPrivate *priv;
gchar *export_filename;
-
- gboolean async;
};
struct _EMFormatHTMLPrintClass {
@@ -67,12 +59,7 @@ struct _EMFormatHTMLPrintClass {
GType em_format_html_print_get_type (void);
EMFormatHTMLPrint *
- em_format_html_print_new (EMFormatHTML *source,
- GtkPrintOperationAction action);
-void em_format_html_print_message (EMFormatHTMLPrint *efhp,
- CamelMimeMessage *message,
- CamelFolder *folder,
- const gchar *uid);
+ em_format_html_print_new (EMFormatHTML *source);
G_END_DECLS