2006-06-23 05:58:56 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* 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-27 06:48:05 +08:00
|
|
|
#define PRINT_PROC_NAME "file-print-gtk"
|
|
|
|
#define PLUG_IN_BINARY "print"
|
2006-06-23 16:46:46 +08:00
|
|
|
|
2006-06-23 05:58:56 +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-27 06:48:05 +08:00
|
|
|
static gboolean print_image (gint32 image_ID,
|
|
|
|
gint32 drawable_ID,
|
|
|
|
gboolean interactive);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
static void begin_print (GtkPrintOperation *operation,
|
|
|
|
GtkPrintContext *context,
|
|
|
|
gpointer user_data);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
static void end_print (GtkPrintOperation *operation,
|
|
|
|
GtkPrintContext *context,
|
|
|
|
gpointer user_data);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
static void draw_page (GtkPrintOperation *print,
|
|
|
|
GtkPrintContext *context,
|
|
|
|
int page_nr,
|
|
|
|
gpointer user_data);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
static GtkWidget * create_custom_widget (GtkPrintOperation *operation,
|
|
|
|
gpointer user_data);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
static void custom_widget_apply (GtkPrintOperation *operation,
|
|
|
|
GtkWidget *widget,
|
|
|
|
gpointer user_data);
|
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[] =
|
|
|
|
{
|
|
|
|
{ GIMP_PDB_INT32, "run-mode", "Interactive, non-interactive" },
|
2006-06-23 16:46:46 +08:00
|
|
|
{ GIMP_PDB_IMAGE, "image", "Input image" },
|
|
|
|
{ GIMP_PDB_DRAWABLE, "drawable", "Drawable 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.",
|
2006-06-23 05:58:56 +08:00
|
|
|
"Bill Skaggs <weskaggs@primate.ucdavis.edu>",
|
|
|
|
"Bill Skaggs <weskaggs@primate.ucdavis.edu>",
|
|
|
|
"2006",
|
|
|
|
N_("_Print..."),
|
|
|
|
"GRAY, RGB*",
|
|
|
|
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;
|
|
|
|
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
|
|
|
{
|
|
|
|
if (run_mode == GIMP_RUN_INTERACTIVE)
|
|
|
|
gimp_ui_init (PLUG_IN_BINARY, FALSE);
|
|
|
|
|
|
|
|
if (! print_image (image_ID, drawable_ID,
|
|
|
|
run_mode == GIMP_RUN_INTERACTIVE))
|
|
|
|
{
|
|
|
|
status = GIMP_PDB_EXECUTION_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
values[0].data.d_status = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
print_image (gint32 image_ID,
|
|
|
|
gint32 drawable_ID,
|
|
|
|
gboolean interactive)
|
|
|
|
{
|
2006-06-27 06:48:05 +08:00
|
|
|
GtkPrintOperation *operation = gtk_print_operation_new ();
|
|
|
|
GError *error = NULL;
|
2006-06-23 05:58:56 +08:00
|
|
|
PrintData *data;
|
|
|
|
|
|
|
|
data = g_new0 (PrintData, 1);
|
2006-06-27 06:48:05 +08:00
|
|
|
data->num_pages = 1;
|
|
|
|
data->image_id = image_ID;
|
2006-06-23 05:58:56 +08:00
|
|
|
data->drawable_id = drawable_ID;
|
2006-06-27 06:48:05 +08:00
|
|
|
data->operation = operation;
|
|
|
|
data->print_size_changed = FALSE;
|
|
|
|
gimp_image_get_resolution (data->image_id, &data->xres, &data->yres);
|
|
|
|
|
|
|
|
load_print_settings (data);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
|
|
|
g_signal_connect (operation, "begin-print", G_CALLBACK (begin_print), data);
|
|
|
|
g_signal_connect (operation, "draw-page", G_CALLBACK (draw_page), data);
|
|
|
|
g_signal_connect (operation, "end-print", G_CALLBACK (end_print), data);
|
|
|
|
|
|
|
|
if (interactive)
|
|
|
|
{
|
|
|
|
GtkPrintOperationResult res;
|
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
g_signal_connect (operation, "create-custom-widget",
|
|
|
|
G_CALLBACK (create_custom_widget), data);
|
|
|
|
g_signal_connect (operation, "custom-widget-apply",
|
|
|
|
G_CALLBACK (custom_widget_apply), data);
|
|
|
|
|
|
|
|
gtk_print_operation_set_custom_tab_label (operation, _("Layout"));
|
|
|
|
|
2006-06-23 05:58:56 +08:00
|
|
|
res = gtk_print_operation_run (operation,
|
|
|
|
GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,
|
|
|
|
NULL, &error);
|
|
|
|
|
|
|
|
if (res == GTK_PRINT_OPERATION_RESULT_APPLY)
|
|
|
|
{
|
2006-06-27 06:48:05 +08:00
|
|
|
save_print_settings (data);
|
2006-06-23 05:58:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gtk_print_operation_run (operation,
|
|
|
|
GTK_PRINT_OPERATION_ACTION_PRINT,
|
|
|
|
NULL, &error);
|
|
|
|
|
|
|
|
g_object_unref (operation);
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
g_message (error->message);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
begin_print (GtkPrintOperation *operation,
|
|
|
|
GtkPrintContext *context,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2006-06-27 06:48:05 +08:00
|
|
|
PrintData *data = (PrintData *) user_data;
|
2006-06-23 05:58:56 +08:00
|
|
|
|
|
|
|
data->num_pages = 1;
|
|
|
|
gtk_print_operation_set_n_pages (operation, data->num_pages);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
end_print (GtkPrintOperation *operation,
|
|
|
|
GtkPrintContext *context,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GtkPrintSettings *settings;
|
|
|
|
|
|
|
|
settings = gtk_print_operation_get_print_settings (operation);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_page (GtkPrintOperation *operation,
|
|
|
|
GtkPrintContext *context,
|
|
|
|
int page_nr,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2006-06-27 06:48:05 +08:00
|
|
|
PrintData *data = user_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,
|
|
|
|
gpointer user_data)
|
2006-06-23 05:58:56 +08:00
|
|
|
{
|
2006-06-27 06:48:05 +08:00
|
|
|
GtkWidget *vbox;
|
|
|
|
PrintData *data = user_data;
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
vbox = print_page_layout_gui (data);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
return vbox;
|
2006-06-23 05:58:56 +08:00
|
|
|
}
|
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
/*
|
|
|
|
* This function is called once before printing begins, and should be
|
|
|
|
* used to apply any changes that have been made to the contents of the
|
|
|
|
* custom widget, since it is not guaranteed to be around later. This
|
|
|
|
* function is guaranteed to be called at least once, even if printing
|
|
|
|
* is cancelled.
|
|
|
|
*/
|
2006-06-23 05:58:56 +08:00
|
|
|
static void
|
2006-06-27 06:48:05 +08:00
|
|
|
custom_widget_apply (GtkPrintOperation *operation,
|
|
|
|
GtkWidget *widget,
|
|
|
|
gpointer user_data)
|
2006-06-23 05:58:56 +08:00
|
|
|
{
|
2006-06-27 06:48:05 +08:00
|
|
|
PrintData *data = user_data;
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
if (data->print_size_changed)
|
2006-06-23 05:58:56 +08:00
|
|
|
{
|
2006-06-27 06:48:05 +08:00
|
|
|
gimp_image_undo_group_start (data->image_id);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
gimp_image_set_resolution (data->image_id,
|
|
|
|
data->xres, data->yres);
|
|
|
|
gimp_image_set_unit (data->image_id, data->unit);
|
2006-06-23 05:58:56 +08:00
|
|
|
|
2006-06-27 06:48:05 +08:00
|
|
|
gimp_image_undo_group_end (data->image_id);
|
2006-06-23 05:58:56 +08:00
|
|
|
}
|
|
|
|
}
|