1997-11-25 06:05:25 +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
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This filter tiles an image to arbitrary width and height
|
|
|
|
*/
|
2000-01-26 01:46:56 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2000-01-09 04:00:10 +08:00
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include <libgimp/gimp.h>
|
|
|
|
#include <libgimp/gimpui.h>
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
#include "libgimp/stdplugins-intl.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-05-02 04:22:55 +08:00
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
1997-11-25 06:05:25 +08:00
|
|
|
gint new_width;
|
|
|
|
gint new_height;
|
|
|
|
gint constrain;
|
|
|
|
gint new_image;
|
|
|
|
} TileVals;
|
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
2000-02-03 01:59:44 +08:00
|
|
|
GtkWidget *sizeentry;
|
|
|
|
GtkWidget *chainbutton;
|
2003-07-02 21:00:16 +08:00
|
|
|
gboolean run;
|
1997-11-25 06:05:25 +08:00
|
|
|
} TileInterface;
|
|
|
|
|
2000-11-09 06:41:13 +08:00
|
|
|
|
|
|
|
/* Declare local functions.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-11-09 06:41:13 +08:00
|
|
|
static void query (void);
|
2003-07-02 21:00:16 +08:00
|
|
|
static void run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals);
|
2000-01-26 01:46:56 +08:00
|
|
|
|
2000-11-09 06:41:13 +08:00
|
|
|
static gint32 tile (gint32 image_id,
|
|
|
|
gint32 drawable_id,
|
|
|
|
gint32 *layer_id);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-11-09 06:41:13 +08:00
|
|
|
static gint tile_dialog (gint32 image_ID,
|
|
|
|
gint32 drawable_ID);
|
|
|
|
static void tile_ok_callback (GtkWidget *widget,
|
|
|
|
gpointer data);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpPlugInInfo PLUG_IN_INFO =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-01-26 01:46:56 +08:00
|
|
|
NULL, /* init_proc */
|
|
|
|
NULL, /* quit_proc */
|
|
|
|
query, /* query_proc */
|
|
|
|
run, /* run_proc */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static TileVals tvals =
|
|
|
|
{
|
2000-01-26 01:46:56 +08:00
|
|
|
1, /* new_width */
|
|
|
|
1, /* new_height */
|
|
|
|
TRUE, /* constrain */
|
|
|
|
TRUE /* new_image */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static TileInterface tint =
|
|
|
|
{
|
2000-02-03 01:59:44 +08:00
|
|
|
NULL, /* sizeentry */
|
|
|
|
FALSE /* run */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
2000-11-09 06:41:13 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
MAIN ()
|
|
|
|
|
|
|
|
static void
|
2000-01-26 01:46:56 +08:00
|
|
|
query (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
static GimpParamDef args[] =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-11-09 06:41:13 +08:00
|
|
|
{ GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive" },
|
|
|
|
{ GIMP_PDB_IMAGE, "image", "Input image (unused)" },
|
|
|
|
{ GIMP_PDB_DRAWABLE, "drawable", "Input drawable" },
|
|
|
|
{ GIMP_PDB_INT32, "new_width", "New (tiled) image width" },
|
|
|
|
{ GIMP_PDB_INT32, "new_height", "New (tiled) image height" },
|
|
|
|
{ GIMP_PDB_INT32, "new_image", "Create a new image?" }
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
2000-05-02 04:22:55 +08:00
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
static GimpParamDef return_vals[] =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
{ GIMP_PDB_IMAGE, "new_image", "Output image (N/A if new_image == FALSE)" },
|
|
|
|
{ GIMP_PDB_LAYER, "new_layer", "Output layer (N/A if new_image == FALSE)" }
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
gimp_install_procedure ("plug_in_tile",
|
2000-11-09 06:41:13 +08:00
|
|
|
"Create a new image which is a tiled version of the "
|
|
|
|
"input drawable",
|
2000-05-02 04:22:55 +08:00
|
|
|
"This function creates a new image with a single "
|
|
|
|
"layer sized to the specified 'new_width' and "
|
|
|
|
"'new_height' parameters. The specified drawable "
|
|
|
|
"is tiled into this layer. The new layer will have "
|
2000-11-09 06:41:13 +08:00
|
|
|
"the same type as the specified drawable and the "
|
|
|
|
"new image will have a corresponding base type.",
|
1997-11-25 06:05:25 +08:00
|
|
|
"Spencer Kimball & Peter Mattis",
|
|
|
|
"Spencer Kimball & Peter Mattis",
|
|
|
|
"1996-1997",
|
2003-07-17 23:47:18 +08:00
|
|
|
N_("<Image>/Filters/Map/_Tile..."),
|
1997-11-25 06:05:25 +08:00
|
|
|
"RGB*, GRAY*, INDEXED*",
|
2000-08-22 09:26:57 +08:00
|
|
|
GIMP_PLUGIN,
|
2001-12-06 10:28:58 +08:00
|
|
|
G_N_ELEMENTS (args),
|
|
|
|
G_N_ELEMENTS (return_vals),
|
1997-11-25 06:05:25 +08:00
|
|
|
args, return_vals);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-07-02 21:00:16 +08:00
|
|
|
run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-11-09 06:41:13 +08:00
|
|
|
static GimpParam values[3];
|
2002-01-08 17:20:02 +08:00
|
|
|
GimpRunMode run_mode;
|
2000-11-09 06:41:13 +08:00
|
|
|
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
|
2002-01-08 17:20:02 +08:00
|
|
|
gint32 new_layer;
|
|
|
|
gint width;
|
|
|
|
gint height;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
run_mode = param[0].data.d_int32;
|
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
INIT_I18N ();
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
*nreturn_vals = 3;
|
2000-11-09 06:41:13 +08:00
|
|
|
*return_vals = values;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-11-09 06:41:13 +08:00
|
|
|
values[0].type = GIMP_PDB_STATUS;
|
1997-11-25 06:05:25 +08:00
|
|
|
values[0].data.d_status = status;
|
2000-11-09 06:41:13 +08:00
|
|
|
values[1].type = GIMP_PDB_IMAGE;
|
|
|
|
values[2].type = GIMP_PDB_LAYER;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-11-09 06:41:13 +08:00
|
|
|
width = gimp_drawable_width (param[2].data.d_drawable);
|
1997-11-25 06:05:25 +08:00
|
|
|
height = gimp_drawable_height (param[2].data.d_drawable);
|
|
|
|
|
|
|
|
switch (run_mode)
|
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_INTERACTIVE:
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Possibly retrieve data */
|
|
|
|
gimp_get_data ("plug_in_tile", &tvals);
|
|
|
|
|
|
|
|
/* First acquire information with a dialog */
|
2000-02-03 01:59:44 +08:00
|
|
|
if (! tile_dialog (param[1].data.d_image,
|
|
|
|
param[2].data.d_drawable))
|
1997-11-25 06:05:25 +08:00
|
|
|
return;
|
|
|
|
break;
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_NONINTERACTIVE:
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Make sure all the arguments are there! */
|
|
|
|
if (nparams != 6)
|
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
2000-02-03 01:59:44 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tvals.new_width = param[3].data.d_int32;
|
1997-11-25 06:05:25 +08:00
|
|
|
tvals.new_height = param[4].data.d_int32;
|
2000-02-03 01:59:44 +08:00
|
|
|
tvals.new_image = param[5].data.d_int32 ? TRUE : FALSE;
|
|
|
|
|
|
|
|
if (tvals.new_width < 0 || tvals.new_height < 0)
|
2000-08-22 09:26:57 +08:00
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_WITH_LAST_VALS:
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Possibly retrieve data */
|
|
|
|
gimp_get_data ("plug_in_tile", &tvals);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure that the drawable is gray or RGB color */
|
2000-08-22 09:26:57 +08:00
|
|
|
if (status == GIMP_PDB_SUCCESS)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-02-03 01:59:44 +08:00
|
|
|
gimp_progress_init (_("Tiling..."));
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_tile_cache_ntiles (2 * (width + 1) / gimp_tile_width ());
|
|
|
|
|
2000-02-03 01:59:44 +08:00
|
|
|
values[1].data.d_image = tile (param[1].data.d_image,
|
|
|
|
param[2].data.d_drawable,
|
|
|
|
&new_layer);
|
1997-11-25 06:05:25 +08:00
|
|
|
values[2].data.d_layer = new_layer;
|
|
|
|
|
|
|
|
/* Store data */
|
2000-08-22 09:26:57 +08:00
|
|
|
if (run_mode == GIMP_RUN_INTERACTIVE)
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_set_data ("plug_in_tile", &tvals, sizeof (TileVals));
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
if (run_mode != GIMP_RUN_NONINTERACTIVE)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
if (tvals.new_image)
|
|
|
|
gimp_display_new (values[1].data.d_image);
|
|
|
|
else
|
|
|
|
gimp_displays_flush ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
values[0].data.d_status = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint32
|
2000-01-26 01:46:56 +08:00
|
|
|
tile (gint32 image_id,
|
|
|
|
gint32 drawable_id,
|
|
|
|
gint32 *layer_id)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-11-09 06:41:13 +08:00
|
|
|
GimpPixelRgn src_rgn;
|
|
|
|
GimpPixelRgn dest_rgn;
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
GimpDrawable *new_layer;
|
|
|
|
GimpImageBaseType image_type;
|
|
|
|
gint32 new_image_id;
|
|
|
|
gint old_width, old_height;
|
|
|
|
gint width, height;
|
|
|
|
gint i, j, k;
|
|
|
|
gint progress, max_progress;
|
1997-11-25 06:05:25 +08:00
|
|
|
gpointer pr;
|
|
|
|
|
2000-11-09 06:41:13 +08:00
|
|
|
/* sanity check parameters */
|
|
|
|
if (tvals.new_width < 1 || tvals.new_height < 1)
|
|
|
|
{
|
|
|
|
*layer_id = -1;
|
|
|
|
return -1;
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-11-09 06:41:13 +08:00
|
|
|
/* initialize */
|
2000-08-22 09:26:57 +08:00
|
|
|
image_type = GIMP_RGB;
|
1997-11-25 06:05:25 +08:00
|
|
|
new_image_id = 0;
|
|
|
|
|
2000-11-09 06:41:13 +08:00
|
|
|
old_width = gimp_drawable_width (drawable_id);
|
1997-11-25 06:05:25 +08:00
|
|
|
old_height = gimp_drawable_height (drawable_id);
|
|
|
|
|
|
|
|
if (tvals.new_image)
|
|
|
|
{
|
|
|
|
/* create a new image */
|
|
|
|
switch (gimp_drawable_type (drawable_id))
|
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RGB_IMAGE : case GIMP_RGBA_IMAGE:
|
|
|
|
image_type = GIMP_RGB;
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_GRAY_IMAGE : case GIMP_GRAYA_IMAGE:
|
|
|
|
image_type = GIMP_GRAY;
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_INDEXED_IMAGE : case GIMP_INDEXEDA_IMAGE:
|
|
|
|
image_type = GIMP_INDEXED;
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
new_image_id = gimp_image_new (tvals.new_width, tvals.new_height,
|
|
|
|
image_type);
|
2000-01-09 14:02:20 +08:00
|
|
|
*layer_id = gimp_layer_new (new_image_id, _("Background"),
|
1997-11-25 06:05:25 +08:00
|
|
|
tvals.new_width, tvals.new_height,
|
|
|
|
gimp_drawable_type (drawable_id),
|
2000-08-22 09:26:57 +08:00
|
|
|
100, GIMP_NORMAL_MODE);
|
2000-11-09 06:41:13 +08:00
|
|
|
|
|
|
|
if (*layer_id == -1)
|
|
|
|
return -1;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_image_add_layer (new_image_id, *layer_id, 0);
|
|
|
|
new_layer = gimp_drawable_get (*layer_id);
|
|
|
|
|
|
|
|
/* Get the specified drawable */
|
|
|
|
drawable = gimp_drawable_get (drawable_id);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-01-26 01:46:56 +08:00
|
|
|
gimp_undo_push_group_start (image_id);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-11-09 06:41:13 +08:00
|
|
|
gimp_image_resize (image_id,
|
|
|
|
tvals.new_width, tvals.new_height,
|
|
|
|
0, 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-10-17 08:07:55 +08:00
|
|
|
if (gimp_drawable_is_layer (drawable_id))
|
2000-11-09 06:41:13 +08:00
|
|
|
gimp_layer_resize (drawable_id,
|
|
|
|
tvals.new_width, tvals.new_height,
|
|
|
|
0, 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Get the specified drawable */
|
|
|
|
drawable = gimp_drawable_get (drawable_id);
|
|
|
|
new_layer = drawable;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* progress */
|
|
|
|
progress = 0;
|
|
|
|
max_progress = tvals.new_width * tvals.new_height;
|
|
|
|
|
|
|
|
/* tile... */
|
|
|
|
for (i = 0; i < tvals.new_height; i += old_height)
|
|
|
|
{
|
|
|
|
height = old_height;
|
|
|
|
if (height + i > tvals.new_height)
|
|
|
|
height = tvals.new_height - i;
|
|
|
|
|
|
|
|
for (j = 0; j < tvals.new_width; j += old_width)
|
|
|
|
{
|
|
|
|
width = old_width;
|
2000-11-09 06:41:13 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
if (width + j > tvals.new_width)
|
|
|
|
width = tvals.new_width - j;
|
|
|
|
|
2000-05-02 04:22:55 +08:00
|
|
|
gimp_pixel_rgn_init (&src_rgn, drawable,
|
|
|
|
0, 0, width, height, FALSE, FALSE);
|
|
|
|
gimp_pixel_rgn_init (&dest_rgn, new_layer,
|
|
|
|
j, i, width, height, TRUE, FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-05-02 04:22:55 +08:00
|
|
|
for (pr = gimp_pixel_rgns_register (2, &src_rgn, &dest_rgn);
|
|
|
|
pr != NULL;
|
1997-11-25 06:05:25 +08:00
|
|
|
pr = gimp_pixel_rgns_process (pr))
|
|
|
|
{
|
|
|
|
for (k = 0; k < src_rgn.h; k++)
|
|
|
|
memcpy (dest_rgn.data + k * dest_rgn.rowstride,
|
|
|
|
src_rgn.data + k * src_rgn.rowstride,
|
|
|
|
src_rgn.w * src_rgn.bpp);
|
|
|
|
|
|
|
|
progress += src_rgn.w * src_rgn.h;
|
2000-11-09 06:41:13 +08:00
|
|
|
gimp_progress_update ((gdouble) progress /
|
|
|
|
(gdouble) max_progress);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy the colormap, if necessary */
|
2000-08-22 09:26:57 +08:00
|
|
|
if (image_type == GIMP_INDEXED && tvals.new_image)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-05-02 04:22:55 +08:00
|
|
|
gint ncols;
|
1997-11-25 06:05:25 +08:00
|
|
|
guchar *cmap;
|
|
|
|
|
|
|
|
cmap = gimp_image_get_cmap (image_id, &ncols);
|
|
|
|
gimp_image_set_cmap (new_image_id, cmap, ncols);
|
|
|
|
g_free (cmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tvals.new_image)
|
|
|
|
{
|
2003-09-28 13:35:33 +08:00
|
|
|
gimp_image_undo_enable (new_image_id);
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_drawable_flush (new_layer);
|
|
|
|
gimp_drawable_detach (new_layer);
|
|
|
|
}
|
|
|
|
else
|
2000-08-01 08:38:38 +08:00
|
|
|
gimp_undo_push_group_end (image_id);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
gimp_drawable_flush (drawable);
|
|
|
|
gimp_drawable_detach (drawable);
|
|
|
|
|
|
|
|
return new_image_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
2000-02-03 01:59:44 +08:00
|
|
|
tile_dialog (gint32 image_ID,
|
|
|
|
gint32 drawable_ID)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
GtkWidget *dlg;
|
|
|
|
GtkWidget *frame;
|
2000-02-03 01:59:44 +08:00
|
|
|
GtkWidget *sizeentry;
|
2000-01-26 01:46:56 +08:00
|
|
|
GtkWidget *toggle;
|
2000-11-09 06:41:13 +08:00
|
|
|
gint width;
|
|
|
|
gint height;
|
|
|
|
gdouble xres;
|
|
|
|
gdouble yres;
|
|
|
|
GimpUnit unit;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-05-02 04:22:55 +08:00
|
|
|
gimp_ui_init ("tile", FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-02-03 01:59:44 +08:00
|
|
|
width = gimp_drawable_width (drawable_ID);
|
|
|
|
height = gimp_drawable_height (drawable_ID);
|
|
|
|
unit = gimp_image_get_unit (image_ID);
|
|
|
|
gimp_image_get_resolution (image_ID, &xres, &yres);
|
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
tvals.new_width = width;
|
1997-11-25 06:05:25 +08:00
|
|
|
tvals.new_height = height;
|
|
|
|
|
2000-02-03 01:59:44 +08:00
|
|
|
dlg = gimp_dialog_new (_("Tile"), "tile",
|
2000-05-23 01:10:28 +08:00
|
|
|
gimp_standard_help_func, "filters/tile.html",
|
2000-01-09 04:00:10 +08:00
|
|
|
GTK_WIN_POS_MOUSE,
|
|
|
|
FALSE, TRUE, FALSE,
|
|
|
|
|
2001-08-04 03:52:08 +08:00
|
|
|
GTK_STOCK_CANCEL, gtk_widget_destroy,
|
2000-01-09 04:00:10 +08:00
|
|
|
NULL, 1, NULL, FALSE, TRUE,
|
2001-11-29 21:23:44 +08:00
|
|
|
GTK_STOCK_OK, tile_ok_callback,
|
|
|
|
NULL, NULL, NULL, TRUE, FALSE,
|
2000-01-09 04:00:10 +08:00
|
|
|
|
|
|
|
NULL);
|
|
|
|
|
2003-01-07 14:16:02 +08:00
|
|
|
g_signal_connect (dlg, "destroy",
|
2002-01-08 17:20:02 +08:00
|
|
|
G_CALLBACK (gtk_main_quit),
|
|
|
|
NULL);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* parameter settings */
|
2000-01-26 01:46:56 +08:00
|
|
|
frame = gtk_frame_new (_("Tile to New Size"));
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_ETCHED_IN);
|
2000-01-09 04:00:10 +08:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (frame), 6);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), frame, TRUE, TRUE, 0);
|
2000-02-03 01:59:44 +08:00
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
2002-09-07 04:44:47 +08:00
|
|
|
sizeentry = gimp_coordinates_new (unit, "%a", TRUE, TRUE, 8,
|
2000-02-03 01:59:44 +08:00
|
|
|
GIMP_SIZE_ENTRY_UPDATE_SIZE,
|
|
|
|
|
2000-02-23 23:52:33 +08:00
|
|
|
tvals.constrain, TRUE,
|
2000-02-03 01:59:44 +08:00
|
|
|
|
2002-06-03 03:55:30 +08:00
|
|
|
_("_Width:"), width, xres,
|
2000-02-03 01:59:44 +08:00
|
|
|
1, GIMP_MAX_IMAGE_SIZE,
|
|
|
|
0, width,
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-06-03 03:55:30 +08:00
|
|
|
_("_Height:"), height, yres,
|
2000-02-03 01:59:44 +08:00
|
|
|
1, GIMP_MAX_IMAGE_SIZE,
|
|
|
|
0, height);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (sizeentry), 4);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), sizeentry);
|
|
|
|
gtk_table_set_row_spacing (GTK_TABLE (sizeentry), 1, 4);
|
|
|
|
gtk_widget_show (sizeentry);
|
|
|
|
|
|
|
|
tint.sizeentry = sizeentry;
|
2000-02-23 23:52:33 +08:00
|
|
|
tint.chainbutton = GTK_WIDGET (GIMP_COORDINATES_CHAINBUTTON (sizeentry));
|
2000-02-03 01:59:44 +08:00
|
|
|
|
2002-06-03 03:55:30 +08:00
|
|
|
toggle = gtk_check_button_new_with_mnemonic (_("C_reate New Image"));
|
2000-02-03 01:59:44 +08:00
|
|
|
gtk_table_attach (GTK_TABLE (sizeentry), toggle, 0, 4, 2, 3,
|
2000-01-09 04:00:10 +08:00
|
|
|
GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 0);
|
1999-01-16 01:35:04 +08:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), tvals.new_image);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (toggle);
|
|
|
|
|
2003-01-07 14:16:02 +08:00
|
|
|
g_signal_connect (toggle, "toggled",
|
2002-01-08 17:20:02 +08:00
|
|
|
G_CALLBACK (gimp_toggle_button_update),
|
|
|
|
&tvals.new_image);
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (dlg);
|
|
|
|
|
|
|
|
gtk_main ();
|
|
|
|
gdk_flush ();
|
|
|
|
|
|
|
|
return tint.run;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tile_ok_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2000-02-03 01:59:44 +08:00
|
|
|
tvals.new_width =
|
2000-10-27 07:21:34 +08:00
|
|
|
RINT (gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (tint.sizeentry), 0));
|
2000-02-03 01:59:44 +08:00
|
|
|
tvals.new_height =
|
2000-10-27 07:21:34 +08:00
|
|
|
RINT (gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (tint.sizeentry), 1));
|
2000-01-26 01:46:56 +08:00
|
|
|
|
2000-02-03 01:59:44 +08:00
|
|
|
tvals.constrain =
|
|
|
|
gimp_chain_button_get_active (GIMP_CHAIN_BUTTON (tint.chainbutton));
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-02-03 01:59:44 +08:00
|
|
|
tint.run = TRUE;
|
2000-01-26 01:46:56 +08:00
|
|
|
|
2000-02-03 01:59:44 +08:00
|
|
|
gtk_widget_destroy (GTK_WIDGET (data));
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|