/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Pix * * Copyright (C) 2009 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include #include #include #include "actions.h" #include "gth-image-print-job.h" void gth_browser_activate_print (GSimpleAction *action, GVariant *parameter, gpointer user_data) { GthBrowser *browser = GTH_BROWSER (user_data); GList *items; GList *file_list; items = gth_file_selection_get_selected (GTH_FILE_SELECTION (gth_browser_get_file_list_view (browser))); file_list = gth_file_list_get_files (GTH_FILE_LIST (gth_browser_get_file_list (browser)), items); if (file_list != NULL) { cairo_surface_t *current_image; GthViewerPage *viewer_page; GthImagePrintJob *print_job; GError *error = NULL; current_image = NULL; viewer_page = gth_browser_get_viewer_page (browser); if ((gth_main_extension_is_active ("image_viewer")) && (viewer_page != NULL) && GTH_IS_IMAGE_VIEWER_PAGE (viewer_page) && gth_image_viewer_page_get_is_modified (GTH_IMAGE_VIEWER_PAGE (viewer_page))) { current_image = gth_image_viewer_page_get_modified_image (GTH_IMAGE_VIEWER_PAGE (viewer_page)); } print_job = gth_image_print_job_new (file_list, gth_browser_get_current_file (browser), current_image, g_file_info_get_display_name (gth_browser_get_location_data (browser)->info), &error); if (print_job != NULL) { gth_image_print_job_run (print_job, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, browser); } else { _gtk_error_dialog_from_gerror_show (GTK_WINDOW (browser), _("Could not print the selected files"), error); g_clear_error (&error); } } _g_object_list_unref (file_list); _gtk_tree_path_list_free (items); }