2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2006-06-23 05:58:56 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <libgimp/gimp.h>
|
|
|
|
#include <libgimp/gimpui.h>
|
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
#include "print.h"
|
|
|
|
#include "print-settings.h"
|
|
|
|
#include "print-page-layout.h"
|
|
|
|
#include "print-draw-page.h"
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
#include "libgimp/stdplugins-intl.h"
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-23 16:46:46 +08:00
|
|
|
|
2006-12-26 21:47:51 +08:00
|
|
|
#define PRINT_PROC_NAME "file-print-gtk"
|
2006-12-26 20:36:43 +08:00
|
|
|
#define PLUG_IN_BINARY "print"
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-12-26 20:36:43 +08:00
|
|
|
|
|
|
|
static void query (void);
|
|
|
|
static void run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2007-07-24 15:22:35 +08:00
|
|
|
static gboolean print_image (gint32 image_ID,
|
|
|
|
gboolean interactive);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2007-07-26 05:26:36 +08:00
|
|
|
static void print_show_error (const gchar *message,
|
|
|
|
gboolean interactive);
|
2007-07-24 15:22:35 +08:00
|
|
|
static void print_operation_set_name (GtkPrintOperation *operation,
|
|
|
|
gint image_ID);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2007-07-24 15:22:35 +08:00
|
|
|
static void begin_print (GtkPrintOperation *operation,
|
|
|
|
GtkPrintContext *context,
|
|
|
|
PrintData *data);
|
|
|
|
static void end_print (GtkPrintOperation *operation,
|
|
|
|
GtkPrintContext *context,
|
2007-07-25 15:36:15 +08:00
|
|
|
gint32 *image_ID);
|
2007-07-24 15:22:35 +08:00
|
|
|
static void draw_page (GtkPrintOperation *print,
|
|
|
|
GtkPrintContext *context,
|
|
|
|
gint page_nr,
|
|
|
|
PrintData *data);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2007-07-24 15:22:35 +08:00
|
|
|
static GtkWidget * create_custom_widget (GtkPrintOperation *operation,
|
|
|
|
PrintData *data);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-30 01:58:54 +08:00
|
|
|
|
2006-12-29 22:26:55 +08:00
|
|
|
|
2006-06-23 05:58:56 +08:00
|
|
|
const GimpPlugInInfo PLUG_IN_INFO =
|
|
|
|
{
|
|
|
|
NULL, /* init_proc */
|
|
|
|
NULL, /* quit_proc */
|
|
|
|
query, /* query_proc */
|
|
|
|
run, /* run_proc */
|
|
|
|
};
|
|
|
|
|
|
|
|
MAIN ()
|
|
|
|
|
|
|
|
static void
|
|
|
|
query (void)
|
|
|
|
{
|
|
|
|
static const GimpParamDef print_args[] =
|
|
|
|
{
|
2006-12-26 20:36:43 +08:00
|
|
|
{ GIMP_PDB_INT32, "run-mode", "Interactive, non-interactive" },
|
2007-07-25 23:30:03 +08:00
|
|
|
{ GIMP_PDB_IMAGE, "image", "Image to print" }
|
2006-06-23 05:58:56 +08:00
|
|
|
};
|
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
gimp_install_procedure (PRINT_PROC_NAME,
|
2006-06-23 16:46:46 +08:00
|
|
|
N_("Print the image"),
|
|
|
|
"Print the image using the GTK+ Print API.",
|
2007-07-26 03:50:28 +08:00
|
|
|
"Bill Skaggs, Sven Neumann, Stefan Röllin",
|
2006-06-23 05:58:56 +08:00
|
|
|
"Bill Skaggs <weskaggs@primate.ucdavis.edu>",
|
2007-07-25 23:30:03 +08:00
|
|
|
"2006, 2007",
|
2006-06-23 05:58:56 +08:00
|
|
|
N_("_Print..."),
|
2006-12-27 21:46:27 +08:00
|
|
|
"*",
|
2006-06-23 05:58:56 +08:00
|
|
|
GIMP_PLUGIN,
|
|
|
|
G_N_ELEMENTS (print_args), 0,
|
|
|
|
print_args, NULL);
|
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
gimp_plugin_menu_register (PRINT_PROC_NAME, "<Image>/File/Send");
|
|
|
|
gimp_plugin_icon_register (PRINT_PROC_NAME, GIMP_ICON_TYPE_STOCK_ID,
|
2006-06-23 05:58:56 +08:00
|
|
|
(const guint8 *) GTK_STOCK_PRINT);
|
2006-06-27 06:48:05 +08:00
|
|
|
|
2006-06-23 05:58:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals)
|
|
|
|
{
|
|
|
|
static GimpParam values[2];
|
|
|
|
GimpRunMode run_mode;
|
|
|
|
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
|
|
|
|
gint32 image_ID;
|
|
|
|
gint32 drawable_ID;
|
|
|
|
|
|
|
|
run_mode = param[0].data.d_int32;
|
|
|
|
|
|
|
|
INIT_I18N ();
|
|
|
|
|
|
|
|
*nreturn_vals = 1;
|
|
|
|
*return_vals = values;
|
2006-12-29 23:36:54 +08:00
|
|
|
|
2006-06-23 05:58:56 +08:00
|
|
|
values[0].type = GIMP_PDB_STATUS;
|
|
|
|
values[0].data.d_status = GIMP_PDB_EXECUTION_ERROR;
|
|
|
|
|
|
|
|
image_ID = param[1].data.d_int32;
|
|
|
|
drawable_ID = param[2].data.d_int32;
|
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
if (strcmp (name, PRINT_PROC_NAME) == 0)
|
2006-06-23 05:58:56 +08:00
|
|
|
{
|
2007-07-27 00:22:17 +08:00
|
|
|
g_thread_init (NULL);
|
|
|
|
|
2007-07-25 19:05:13 +08:00
|
|
|
gimp_ui_init (PLUG_IN_BINARY, FALSE);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2007-07-25 23:30:03 +08:00
|
|
|
if (! print_image (image_ID, run_mode == GIMP_RUN_INTERACTIVE))
|
2006-06-23 05:58:56 +08:00
|
|
|
{
|
|
|
|
status = GIMP_PDB_EXECUTION_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
values[0].data.d_status = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
print_image (gint32 image_ID,
|
|
|
|
gboolean interactive)
|
|
|
|
{
|
2007-07-24 15:22:35 +08:00
|
|
|
GtkPrintOperation *operation;
|
2007-07-24 05:17:47 +08:00
|
|
|
GError *error = NULL;
|
|
|
|
gint32 orig_image_ID = image_ID;
|
2007-07-25 23:30:03 +08:00
|
|
|
gint32 drawable_ID = gimp_image_get_active_drawable (image_ID);
|
2007-07-24 05:17:47 +08:00
|
|
|
PrintData data;
|
2007-07-20 04:32:53 +08:00
|
|
|
GimpExportReturn export;
|
|
|
|
|
|
|
|
/* export the image */
|
|
|
|
export = gimp_export_image (&image_ID, &drawable_ID, NULL,
|
|
|
|
GIMP_EXPORT_CAN_HANDLE_RGB |
|
2007-07-24 04:47:25 +08:00
|
|
|
GIMP_EXPORT_CAN_HANDLE_ALPHA);
|
2007-07-20 04:32:53 +08:00
|
|
|
|
|
|
|
if (export == GIMP_EXPORT_CANCEL)
|
|
|
|
return FALSE;
|
|
|
|
|
2007-07-24 15:22:35 +08:00
|
|
|
operation = gtk_print_operation_new ();
|
|
|
|
|
|
|
|
print_operation_set_name (operation, orig_image_ID);
|
|
|
|
|
2007-07-24 15:05:06 +08:00
|
|
|
/* fill in the PrintData struct */
|
2007-07-24 05:17:47 +08:00
|
|
|
data.num_pages = 1;
|
2007-07-25 18:48:25 +08:00
|
|
|
data.image_id = orig_image_ID;
|
2007-07-24 05:17:47 +08:00
|
|
|
data.drawable_id = drawable_ID;
|
|
|
|
data.unit = gimp_get_default_unit ();
|
|
|
|
data.image_unit = gimp_image_get_unit (image_ID);
|
|
|
|
data.offset_x = 0;
|
|
|
|
data.offset_y = 0;
|
2007-08-09 05:28:07 +08:00
|
|
|
data.center = CENTER_BOTH;
|
2007-07-24 05:17:47 +08:00
|
|
|
data.use_full_page = FALSE;
|
|
|
|
data.operation = operation;
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2007-07-24 05:17:47 +08:00
|
|
|
gimp_image_get_resolution (image_ID, &data.xres, &data.yres);
|
2006-12-26 20:36:43 +08:00
|
|
|
|
2007-07-25 18:48:25 +08:00
|
|
|
load_print_settings (&data);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2007-07-25 15:36:15 +08:00
|
|
|
if (export != GIMP_EXPORT_EXPORT)
|
|
|
|
image_ID = -1;
|
|
|
|
|
2006-12-26 05:03:27 +08:00
|
|
|
g_signal_connect (operation, "begin-print",
|
|
|
|
G_CALLBACK (begin_print),
|
2007-07-24 05:17:47 +08:00
|
|
|
&data);
|
2006-12-26 05:03:27 +08:00
|
|
|
g_signal_connect (operation, "draw-page",
|
|
|
|
G_CALLBACK (draw_page),
|
2007-07-24 05:17:47 +08:00
|
|
|
&data);
|
2006-12-26 05:03:27 +08:00
|
|
|
g_signal_connect (operation, "end-print",
|
|
|
|
G_CALLBACK (end_print),
|
2007-07-25 15:36:15 +08:00
|
|
|
&image_ID);
|
2007-07-24 15:05:06 +08:00
|
|
|
|
2006-06-23 05:58:56 +08:00
|
|
|
if (interactive)
|
|
|
|
{
|
2007-07-25 18:48:25 +08:00
|
|
|
g_signal_connect_swapped (operation, "end-print",
|
|
|
|
G_CALLBACK (save_print_settings),
|
|
|
|
&data);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
g_signal_connect (operation, "create-custom-widget",
|
2006-12-26 05:03:27 +08:00
|
|
|
G_CALLBACK (create_custom_widget),
|
2007-07-24 05:17:47 +08:00
|
|
|
&data);
|
2006-06-27 06:48:05 +08:00
|
|
|
|
2007-08-09 05:48:31 +08:00
|
|
|
gtk_print_operation_set_custom_tab_label (operation, _("Image Settings"));
|
2006-06-27 06:48:05 +08:00
|
|
|
|
2007-07-25 18:48:25 +08:00
|
|
|
gtk_print_operation_run (operation,
|
|
|
|
GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,
|
|
|
|
NULL, &error);
|
2006-06-23 05:58:56 +08:00
|
|
|
}
|
|
|
|
else
|
2006-12-26 05:03:27 +08:00
|
|
|
{
|
|
|
|
gtk_print_operation_run (operation,
|
|
|
|
GTK_PRINT_OPERATION_ACTION_PRINT,
|
|
|
|
NULL, &error);
|
|
|
|
}
|
2006-06-23 05:58:56 +08:00
|
|
|
|
|
|
|
g_object_unref (operation);
|
|
|
|
|
2007-07-24 15:05:06 +08:00
|
|
|
if (gimp_image_is_valid (image_ID))
|
2007-07-23 22:10:47 +08:00
|
|
|
gimp_image_delete (image_ID);
|
2007-07-20 04:32:53 +08:00
|
|
|
|
2006-06-23 05:58:56 +08:00
|
|
|
if (error)
|
2007-07-26 05:26:36 +08:00
|
|
|
{
|
|
|
|
print_show_error (error->message, interactive);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_show_error (const gchar *message,
|
|
|
|
gboolean interactive)
|
|
|
|
{
|
2007-07-27 00:22:17 +08:00
|
|
|
g_printerr ("Print: %s\n", message);
|
|
|
|
|
2007-07-26 05:26:36 +08:00
|
|
|
if (interactive)
|
2006-12-26 20:36:43 +08:00
|
|
|
{
|
2006-12-30 22:08:33 +08:00
|
|
|
GtkWidget *dialog;
|
|
|
|
|
|
|
|
dialog = gtk_message_dialog_new (NULL, 0,
|
|
|
|
GTK_MESSAGE_ERROR,
|
|
|
|
GTK_BUTTONS_OK,
|
2007-07-26 03:50:28 +08:00
|
|
|
_("An error occurred "
|
|
|
|
"while trying to print:"));
|
2006-12-30 22:08:33 +08:00
|
|
|
|
|
|
|
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
|
2007-07-26 05:26:36 +08:00
|
|
|
message);
|
2006-12-30 22:08:33 +08:00
|
|
|
|
|
|
|
gtk_dialog_run (GTK_DIALOG (dialog));
|
|
|
|
gtk_widget_destroy (dialog);
|
2006-12-26 20:36:43 +08:00
|
|
|
}
|
2006-06-23 05:58:56 +08:00
|
|
|
}
|
|
|
|
|
2007-07-24 15:22:35 +08:00
|
|
|
static void
|
|
|
|
print_operation_set_name (GtkPrintOperation *operation,
|
|
|
|
gint image_ID)
|
|
|
|
{
|
2007-07-26 03:50:28 +08:00
|
|
|
gchar *name = gimp_image_get_name (image_ID);
|
2007-07-24 15:22:35 +08:00
|
|
|
|
2007-07-26 03:50:28 +08:00
|
|
|
gtk_print_operation_set_job_name (operation, name);
|
2007-07-24 15:22:35 +08:00
|
|
|
|
2007-07-24 16:56:09 +08:00
|
|
|
g_free (name);
|
2007-07-24 15:22:35 +08:00
|
|
|
}
|
|
|
|
|
2006-06-23 05:58:56 +08:00
|
|
|
static void
|
|
|
|
begin_print (GtkPrintOperation *operation,
|
2006-12-26 05:03:27 +08:00
|
|
|
GtkPrintContext *context,
|
|
|
|
PrintData *data)
|
2006-06-23 05:58:56 +08:00
|
|
|
{
|
|
|
|
gtk_print_operation_set_n_pages (operation, data->num_pages);
|
2007-07-20 04:32:53 +08:00
|
|
|
gtk_print_operation_set_use_full_page (operation, data->use_full_page);
|
2006-12-27 21:46:27 +08:00
|
|
|
|
|
|
|
gimp_progress_init (_("Printing"));
|
2006-06-23 05:58:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
end_print (GtkPrintOperation *operation,
|
2006-12-26 05:03:27 +08:00
|
|
|
GtkPrintContext *context,
|
2007-07-25 15:36:15 +08:00
|
|
|
gint32 *image_ID)
|
2006-06-23 05:58:56 +08:00
|
|
|
{
|
2007-07-25 15:36:15 +08:00
|
|
|
/* we don't need the export image any longer, delete it */
|
|
|
|
if (gimp_image_is_valid (*image_ID))
|
|
|
|
{
|
|
|
|
gimp_image_delete (*image_ID);
|
|
|
|
*image_ID = -1;
|
|
|
|
}
|
2006-12-29 23:36:54 +08:00
|
|
|
|
2007-07-25 18:48:25 +08:00
|
|
|
gimp_progress_end ();
|
2007-08-16 02:19:52 +08:00
|
|
|
|
|
|
|
/* generate events to solve the problems described in bug #466928 */
|
|
|
|
g_timeout_add (1000, (GSourceFunc) gtk_true, NULL);
|
2006-12-29 22:26:55 +08:00
|
|
|
}
|
2006-06-23 05:58:56 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
draw_page (GtkPrintOperation *operation,
|
2006-12-26 05:03:27 +08:00
|
|
|
GtkPrintContext *context,
|
2007-07-24 15:05:06 +08:00
|
|
|
gint page_nr,
|
2006-12-26 05:03:27 +08:00
|
|
|
PrintData *data)
|
2006-06-23 05:58:56 +08:00
|
|
|
{
|
2006-06-27 06:48:05 +08:00
|
|
|
draw_page_cairo (context, data);
|
2006-06-23 05:58:56 +08:00
|
|
|
}
|
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
/*
|
|
|
|
* This callback creates a "custom" widget that gets inserted into the
|
|
|
|
* print operation dialog.
|
|
|
|
*/
|
|
|
|
static GtkWidget *
|
|
|
|
create_custom_widget (GtkPrintOperation *operation,
|
2006-12-26 05:03:27 +08:00
|
|
|
PrintData *data)
|
2006-06-23 05:58:56 +08:00
|
|
|
{
|
2006-12-26 05:03:27 +08:00
|
|
|
return print_page_layout_gui (data);
|
2006-06-23 05:58:56 +08:00
|
|
|
}
|