From a8cb8d396b0bdc7ae7ba2061b49aad59a4dd9cc3 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Thu, 26 Apr 2018 17:05:47 +0200 Subject: [PATCH] Remove forward declarations --- zathura/print.c | 118 ++++++++++++++++++++++-------------------------- 1 file changed, 53 insertions(+), 65 deletions(-) diff --git a/zathura/print.c b/zathura/print.c index 2dbb824..cb3ffe9 100644 --- a/zathura/print.c +++ b/zathura/print.c @@ -10,71 +10,6 @@ #include #include -static void cb_print_draw_page(GtkPrintOperation* print_operation, - GtkPrintContext* context, gint page_number, - zathura_t* zathura); -static void cb_print_end(GtkPrintOperation* print_operation, GtkPrintContext* - context, zathura_t* zathura); -static void cb_print_request_page_setup(GtkPrintOperation* print_operation, - GtkPrintContext* context, - gint page_number, GtkPageSetup* setup, - zathura_t* zathura); -static void cb_print_done(GtkPrintOperation* operation, - GtkPrintOperationResult result, zathura_t* zathura); - -void -print(zathura_t* zathura) -{ - g_return_if_fail(zathura != NULL); - g_return_if_fail(zathura->document != NULL); - - GtkPrintOperation* print_operation = gtk_print_operation_new(); - - /* print operation settings */ - gtk_print_operation_set_job_name(print_operation, zathura_document_get_path(zathura->document)); - gtk_print_operation_set_allow_async(print_operation, TRUE); - gtk_print_operation_set_n_pages(print_operation, zathura_document_get_number_of_pages(zathura->document)); - gtk_print_operation_set_current_page(print_operation, zathura_document_get_current_page_number(zathura->document)); - gtk_print_operation_set_use_full_page(print_operation, TRUE); - - if (zathura->print.settings != NULL) { - gtk_print_operation_set_print_settings(print_operation, - zathura->print.settings); - } - - if (zathura->print.page_setup != NULL) { - gtk_print_operation_set_default_page_setup(print_operation, - zathura->print.page_setup); - } - gtk_print_operation_set_embed_page_setup(print_operation, TRUE); - - /* print operation signals */ - g_signal_connect(print_operation, "draw-page", G_CALLBACK(cb_print_draw_page), zathura); - g_signal_connect(print_operation, "end-print", G_CALLBACK(cb_print_end), zathura); - g_signal_connect(print_operation, "request-page-setup", G_CALLBACK(cb_print_request_page_setup), zathura); - - /* print */ - GError* error = NULL; - GtkPrintOperationResult result = gtk_print_operation_run(print_operation, - GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, - GTK_WINDOW(zathura->ui.session->gtk.window), &error); - - if (result == GTK_PRINT_OPERATION_RESULT_ERROR) { - girara_notify(zathura->ui.session, GIRARA_ERROR, _("Printing failed: %s"), - error->message); - g_error_free(error); - } else if (result == GTK_PRINT_OPERATION_RESULT_APPLY) { - g_clear_object(&zathura->print.settings); - g_clear_object(&zathura->print.page_setup); - - /* save previous settings */ - zathura->print.settings = g_object_ref(gtk_print_operation_get_print_settings(print_operation)); - zathura->print.page_setup = g_object_ref(gtk_print_operation_get_default_page_setup(print_operation)); - } - - g_object_unref(print_operation); -} - static void cb_print_end(GtkPrintOperation* UNUSED(print_operation), GtkPrintContext* UNUSED(context), zathura_t* zathura) @@ -215,3 +150,56 @@ cb_print_request_page_setup(GtkPrintOperation* UNUSED(print_operation), gtk_page_setup_set_orientation(setup, GTK_PAGE_ORIENTATION_PORTRAIT); } } + +void +print(zathura_t* zathura) +{ + g_return_if_fail(zathura != NULL); + g_return_if_fail(zathura->document != NULL); + + GtkPrintOperation* print_operation = gtk_print_operation_new(); + + /* print operation settings */ + gtk_print_operation_set_job_name(print_operation, zathura_document_get_path(zathura->document)); + gtk_print_operation_set_allow_async(print_operation, TRUE); + gtk_print_operation_set_n_pages(print_operation, zathura_document_get_number_of_pages(zathura->document)); + gtk_print_operation_set_current_page(print_operation, zathura_document_get_current_page_number(zathura->document)); + gtk_print_operation_set_use_full_page(print_operation, TRUE); + + if (zathura->print.settings != NULL) { + gtk_print_operation_set_print_settings(print_operation, + zathura->print.settings); + } + + if (zathura->print.page_setup != NULL) { + gtk_print_operation_set_default_page_setup(print_operation, + zathura->print.page_setup); + } + gtk_print_operation_set_embed_page_setup(print_operation, TRUE); + + /* print operation signals */ + g_signal_connect(print_operation, "draw-page", G_CALLBACK(cb_print_draw_page), zathura); + g_signal_connect(print_operation, "end-print", G_CALLBACK(cb_print_end), zathura); + g_signal_connect(print_operation, "request-page-setup", G_CALLBACK(cb_print_request_page_setup), zathura); + + /* print */ + GError* error = NULL; + GtkPrintOperationResult result = gtk_print_operation_run(print_operation, + GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, + GTK_WINDOW(zathura->ui.session->gtk.window), &error); + + if (result == GTK_PRINT_OPERATION_RESULT_ERROR) { + girara_notify(zathura->ui.session, GIRARA_ERROR, _("Printing failed: %s"), + error->message); + g_error_free(error); + } else if (result == GTK_PRINT_OPERATION_RESULT_APPLY) { + g_clear_object(&zathura->print.settings); + g_clear_object(&zathura->print.page_setup); + + /* save previous settings */ + zathura->print.settings = g_object_ref(gtk_print_operation_get_print_settings(print_operation)); + zathura->print.page_setup = g_object_ref(gtk_print_operation_get_default_page_setup(print_operation)); + } + + g_object_unref(print_operation); +}