From 75eae13cbc39577ab33b008c93707cb6ac66dc89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 19 Jul 2012 11:27:05 +0200 Subject: Bug #680164 - Print Preview action should open preview immediatelly --- mail/e-mail-printer.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'mail/e-mail-printer.c') diff --git a/mail/e-mail-printer.c b/mail/e-mail-printer.c index b9478f8b94..e6c9aa5510 100644 --- a/mail/e-mail-printer.c +++ b/mail/e-mail-printer.c @@ -51,7 +51,6 @@ struct _EMailPrinterPrivate { EMailFormatterPrint *formatter; EMailPartList *parts_list; - gboolean export_mode; gchar *export_filename; GtkListStore *headers; @@ -62,6 +61,7 @@ struct _EMailPrinterPrivate { GtkWidget *treeview; GtkPrintOperation *operation; + GtkPrintOperationAction print_action; }; G_DEFINE_TYPE ( @@ -167,20 +167,21 @@ emp_start_printing (GObject *object, if (load_status != WEBKIT_LOAD_FINISHED) return; + /* WebKit reloads the page once more right before starting to print, so + * disconnect this handler after the first time, so that we don't start + * another printing operation */ + g_signal_handlers_disconnect_by_func ( + object, emp_start_printing, user_data); + frame = webkit_web_view_get_main_frame (web_view); - if (emp->priv->export_mode) { + if (emp->priv->print_action == GTK_PRINT_OPERATION_ACTION_EXPORT) { gtk_print_operation_set_export_filename ( emp->priv->operation, emp->priv->export_filename); - webkit_web_frame_print_full ( - frame, emp->priv->operation, - GTK_PRINT_OPERATION_ACTION_EXPORT, NULL); - } else { - webkit_web_frame_print_full - (frame, emp->priv->operation, - GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, NULL); } + webkit_web_frame_print_full + (frame, emp->priv->operation, emp->priv->print_action, NULL); } static void @@ -785,7 +786,7 @@ e_mail_printer_new (EMailPartList *source) void e_mail_printer_print (EMailPrinter *emp, - gboolean export_mode, + GtkPrintOperationAction action, GCancellable *cancellable) { g_return_if_fail (E_IS_MAIL_PRINTER (emp)); @@ -793,6 +794,7 @@ e_mail_printer_print (EMailPrinter *emp, if (emp->priv->operation) g_object_unref (emp->priv->operation); emp->priv->operation = e_print_operation_new (); + emp->priv->print_action = action; gtk_print_operation_set_unit (emp->priv->operation, GTK_UNIT_PIXEL); gtk_print_operation_set_show_progress (emp->priv->operation, TRUE); @@ -803,8 +805,6 @@ e_mail_printer_print (EMailPrinter *emp, g_signal_connect (emp->priv->operation, "draw-page", G_CALLBACK (emp_draw_footer), NULL); - emp->priv->export_mode = export_mode; - if (cancellable) g_signal_connect_swapped (cancellable, "cancelled", G_CALLBACK (gtk_print_operation_cancel), emp->priv->operation); -- cgit v1.2.3