1999-08-25 02:36:38 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Original plug-in coded by Tim Newsome.
|
|
|
|
*
|
|
|
|
* Changed to make use of real-life units by Sven Neumann <sven@gimp.org>.
|
|
|
|
*
|
|
|
|
* The interface code is heavily commented in the hope that it will
|
|
|
|
* help other plug-in developers to adapt their plug-ins to make use
|
2000-02-23 05:25:18 +08:00
|
|
|
* of the gimp_size_entry functionality.
|
|
|
|
*
|
|
|
|
* Note: There is a convenience constructor called gimp_coordinetes_new ()
|
|
|
|
* which simplifies the task of setting up a standard X,Y sizeentry.
|
1999-08-25 02:36:38 +08:00
|
|
|
*
|
2000-05-22 21:53:43 +08:00
|
|
|
* For more info and bugs see libgimp/gimpsizeentry.h and libgimp/gimpwidgets.h
|
|
|
|
*
|
|
|
|
* May 2000 tim copperfield [timecop@japan.co.jp]
|
|
|
|
* http://www.ne.jp/asahi/linux/timecop
|
|
|
|
* Added dynamic preview. Due to weird implementation of signals from all
|
|
|
|
* controls, preview will not auto-update. But this plugin isn't really
|
|
|
|
* crying for real-time updating either.
|
|
|
|
*
|
1999-08-25 02:36:38 +08:00
|
|
|
*/
|
|
|
|
|
1999-11-20 10:16:17 +08:00
|
|
|
#include "config.h"
|
2000-01-07 06:26:10 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2000-01-07 06:26:10 +08:00
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2000-05-01 05:03:44 +08:00
|
|
|
#include <libgimp/gimp.h>
|
|
|
|
#include <libgimp/gimpui.h>
|
2000-01-07 06:26:10 +08:00
|
|
|
|
1999-11-15 05:56:01 +08:00
|
|
|
#include "libgimp/stdplugins-intl.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
|
|
|
|
#define SPIN_BUTTON_WIDTH 75
|
2000-05-22 21:53:43 +08:00
|
|
|
#define COLOR_BUTTON_WIDTH 55
|
|
|
|
#define PREVIEW_SIZE 128
|
1999-11-01 20:36:23 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Declare local functions. */
|
2000-02-23 05:25:18 +08:00
|
|
|
static void query (void);
|
|
|
|
static void run (gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
GParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GParam **return_vals);
|
1999-11-01 20:36:23 +08:00
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
static guchar best_cmap_match (guchar *cmap,
|
|
|
|
gint ncolors,
|
|
|
|
guchar *color);
|
|
|
|
static void doit (gint32 image_ID,
|
|
|
|
GDrawable *drawable,
|
|
|
|
gboolean preview_mode);
|
|
|
|
static gint dialog (gint32 image_ID,
|
|
|
|
GDrawable *drawable);
|
|
|
|
static GtkWidget * preview_widget (GDrawable *drawable);
|
|
|
|
static void fill_preview (GtkWidget *preview_widget,
|
|
|
|
GDrawable *drawable);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
GPlugInInfo PLUG_IN_INFO =
|
|
|
|
{
|
2000-05-01 05:03:44 +08:00
|
|
|
NULL, /* init_proc */
|
|
|
|
NULL, /* quit_proc */
|
|
|
|
query, /* query_proc */
|
|
|
|
run, /* run_proc */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
gint sx1, sy1, sx2, sy2;
|
1999-11-01 20:36:23 +08:00
|
|
|
gint run_flag = FALSE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
static GtkWidget *hcolor_button;
|
|
|
|
static GtkWidget *vcolor_button;
|
|
|
|
static guchar *preview_bits;
|
|
|
|
static GtkWidget *preview;
|
|
|
|
|
1999-12-02 08:20:43 +08:00
|
|
|
|
1998-01-30 08:31:16 +08:00
|
|
|
typedef struct
|
1999-08-25 02:36:38 +08:00
|
|
|
{
|
1999-11-01 20:36:23 +08:00
|
|
|
gint hwidth;
|
|
|
|
gint hspace;
|
|
|
|
gint hoffset;
|
|
|
|
guint8 hcolor[4];
|
|
|
|
gint vwidth;
|
|
|
|
gint vspace;
|
|
|
|
gint voffset;
|
|
|
|
guint8 vcolor[4];
|
|
|
|
gint iwidth;
|
|
|
|
gint ispace;
|
|
|
|
gint ioffset;
|
|
|
|
guint8 icolor[4];
|
1999-08-25 02:36:38 +08:00
|
|
|
}
|
1999-11-01 20:36:23 +08:00
|
|
|
Config;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
Config grid_cfg =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-11-01 20:36:23 +08:00
|
|
|
1, 16, 8, { 0, 0, 128, 255 }, /* horizontal */
|
|
|
|
1, 16, 8, { 0, 0, 128, 255 }, /* vertical */
|
|
|
|
0, 2, 6, { 0, 0, 255, 255 }, /* intersection */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
1998-01-30 08:31:16 +08:00
|
|
|
MAIN ()
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-08-25 02:36:38 +08:00
|
|
|
static
|
|
|
|
void query (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1998-01-30 08:31:16 +08:00
|
|
|
static GParamDef args[] =
|
|
|
|
{
|
2000-05-01 05:03:44 +08:00
|
|
|
{ PARAM_INT32, "run_mode", "Interactive, non-interactive" },
|
|
|
|
{ PARAM_IMAGE, "image", "Input image" },
|
|
|
|
{ PARAM_DRAWABLE, "drawable", "Input drawable" },
|
|
|
|
|
|
|
|
{ PARAM_INT32, "hwidth", "Horizontal Width (>= 0)" },
|
|
|
|
{ PARAM_INT32, "hspace", "Horizontal Spacing (>= 1)" },
|
|
|
|
{ PARAM_INT32, "hoffset", "Horizontal Offset (>= 0)" },
|
|
|
|
{ PARAM_COLOR, "hcolor", "Horizontal Colour" },
|
|
|
|
{ PARAM_INT8, "hopacity", "Horizontal Opacity (0...255)" },
|
|
|
|
|
|
|
|
{ PARAM_INT32, "vwidth", "Vertical Width (>= 0)" },
|
|
|
|
{ PARAM_INT32, "vspace", "Vertical Spacing (>= 1)" },
|
|
|
|
{ PARAM_INT32, "voffset", "Vertical Offset (>= 0)" },
|
|
|
|
{ PARAM_COLOR, "vcolor", "Vertical Colour" },
|
|
|
|
{ PARAM_INT8, "vopacity", "Vertical Opacity (0...255)" },
|
|
|
|
|
|
|
|
{ PARAM_INT32, "iwidth", "Intersection Width (>= 0)" },
|
|
|
|
{ PARAM_INT32, "ispace", "Intersection Spacing (>= 0)" },
|
|
|
|
{ PARAM_INT32, "ioffset", "Intersection Offset (>= 0)" },
|
|
|
|
{ PARAM_COLOR, "icolor", "Intersection Colour" },
|
|
|
|
{ PARAM_INT8, "iopacity", "Intersection Opacity (0...255)" }
|
1998-01-30 08:31:16 +08:00
|
|
|
};
|
2000-02-11 10:22:01 +08:00
|
|
|
static gint nargs = sizeof (args) / sizeof (args[0]);
|
1999-12-28 00:18:06 +08:00
|
|
|
|
1998-01-30 08:31:16 +08:00
|
|
|
gimp_install_procedure ("plug_in_grid",
|
2000-01-31 10:32:30 +08:00
|
|
|
"Draws a grid.",
|
2000-02-23 05:25:18 +08:00
|
|
|
"Draws a grid using the specified colors. "
|
|
|
|
"The grid origin is the upper left corner.",
|
1998-01-30 08:31:16 +08:00
|
|
|
"Tim Newsome",
|
2000-05-22 21:53:43 +08:00
|
|
|
"Tim Newsome, Sven Neumann, Tom Rathborne, TC",
|
2000-02-23 05:25:18 +08:00
|
|
|
"1997 - 2000",
|
1999-11-24 04:29:20 +08:00
|
|
|
N_("<Image>/Filters/Render/Pattern/Grid..."),
|
2000-02-23 05:25:18 +08:00
|
|
|
"RGB*, GRAY*, INDEXED*",
|
1998-01-30 08:31:16 +08:00
|
|
|
PROC_PLUG_IN,
|
2000-05-01 05:03:44 +08:00
|
|
|
nargs, 0,
|
|
|
|
args, NULL);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
1998-06-01 13:07:31 +08:00
|
|
|
static void
|
2000-02-11 10:22:01 +08:00
|
|
|
run (gchar *name,
|
|
|
|
gint n_params,
|
1999-08-25 02:36:38 +08:00
|
|
|
GParam *param,
|
2000-02-11 10:22:01 +08:00
|
|
|
gint *nreturn_vals,
|
1999-08-25 02:36:38 +08:00
|
|
|
GParam **return_vals)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1998-01-30 08:31:16 +08:00
|
|
|
static GParam values[1];
|
|
|
|
GDrawable *drawable;
|
1999-08-25 02:36:38 +08:00
|
|
|
gint32 image_ID;
|
1998-01-30 08:31:16 +08:00
|
|
|
GRunModeType run_mode;
|
|
|
|
GStatusType status = STATUS_SUCCESS;
|
|
|
|
|
|
|
|
*nreturn_vals = 1;
|
|
|
|
*return_vals = values;
|
|
|
|
|
1999-11-17 22:39:11 +08:00
|
|
|
INIT_I18N_UI();
|
|
|
|
|
1998-01-30 08:31:16 +08:00
|
|
|
run_mode = param[0].data.d_int32;
|
1999-08-25 02:36:38 +08:00
|
|
|
image_ID = param[1].data.d_int32;
|
|
|
|
drawable = gimp_drawable_get (param[2].data.d_drawable);
|
1998-01-30 08:31:16 +08:00
|
|
|
|
|
|
|
if (run_mode == RUN_NONINTERACTIVE)
|
|
|
|
{
|
1999-11-01 20:36:23 +08:00
|
|
|
if (n_params != 18)
|
|
|
|
status = STATUS_CALLING_ERROR;
|
|
|
|
|
2000-02-21 04:09:01 +08:00
|
|
|
if (status == STATUS_SUCCESS)
|
1998-01-30 08:31:16 +08:00
|
|
|
{
|
2000-02-21 04:09:01 +08:00
|
|
|
grid_cfg.hwidth = MAX (0, param[3].data.d_int32);
|
2000-02-21 04:25:01 +08:00
|
|
|
grid_cfg.hspace = MAX (1, param[4].data.d_int32);
|
2000-02-21 04:09:01 +08:00
|
|
|
grid_cfg.hoffset = MAX (0, param[5].data.d_int32);
|
1999-11-01 20:36:23 +08:00
|
|
|
grid_cfg.hcolor[0] = param[6].data.d_color.red;
|
|
|
|
grid_cfg.hcolor[1] = param[6].data.d_color.green;
|
|
|
|
grid_cfg.hcolor[2] = param[6].data.d_color.blue;
|
|
|
|
grid_cfg.hcolor[3] = param[7].data.d_int8;
|
|
|
|
|
2000-02-21 04:09:01 +08:00
|
|
|
grid_cfg.vwidth = MAX (0, param[8].data.d_int32);
|
2000-02-21 04:25:01 +08:00
|
|
|
grid_cfg.vspace = MAX (1, param[9].data.d_int32);
|
2000-02-21 04:09:01 +08:00
|
|
|
grid_cfg.voffset = MAX (0, param[10].data.d_int32);
|
1999-11-01 20:36:23 +08:00
|
|
|
grid_cfg.vcolor[0] = param[11].data.d_color.red;
|
|
|
|
grid_cfg.vcolor[1] = param[11].data.d_color.green;
|
|
|
|
grid_cfg.vcolor[2] = param[11].data.d_color.blue;
|
|
|
|
grid_cfg.vcolor[3] = param[12].data.d_int8;
|
|
|
|
|
2000-02-21 04:09:01 +08:00
|
|
|
grid_cfg.iwidth = MAX (0, param[13].data.d_int32);
|
2000-02-21 04:32:40 +08:00
|
|
|
grid_cfg.ispace = MAX (0, param[14].data.d_int32);
|
2000-02-21 04:09:01 +08:00
|
|
|
grid_cfg.ioffset = MAX (0, param[15].data.d_int32);
|
1999-11-01 20:36:23 +08:00
|
|
|
grid_cfg.icolor[0] = param[16].data.d_color.red;
|
|
|
|
grid_cfg.icolor[1] = param[16].data.d_color.green;
|
|
|
|
grid_cfg.icolor[2] = param[16].data.d_color.blue;
|
|
|
|
grid_cfg.icolor[3] = param[17].data.d_int8;
|
1998-01-30 08:31:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Possibly retrieve data */
|
1999-11-01 20:36:23 +08:00
|
|
|
gimp_get_data ("plug_in_grid", &grid_cfg);
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
if (run_mode == RUN_INTERACTIVE)
|
|
|
|
{
|
|
|
|
if (!dialog (image_ID, drawable))
|
1998-01-30 08:31:16 +08:00
|
|
|
{
|
1999-11-01 20:36:23 +08:00
|
|
|
/* The dialog was closed, or something similarly evil happened. */
|
|
|
|
status = STATUS_EXECUTION_ERROR;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
2000-05-22 21:53:43 +08:00
|
|
|
g_free(preview_bits);
|
1998-01-30 08:31:16 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
if (grid_cfg.hspace <= 0 || grid_cfg.vspace <= 0)
|
1998-01-30 08:31:16 +08:00
|
|
|
{
|
|
|
|
status = STATUS_EXECUTION_ERROR;
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-01-30 08:31:16 +08:00
|
|
|
if (status == STATUS_SUCCESS)
|
|
|
|
{
|
2000-02-23 05:25:18 +08:00
|
|
|
gimp_progress_init (_("Drawing Grid..."));
|
|
|
|
gimp_tile_cache_ntiles (2 * (drawable->width / gimp_tile_width () + 1));
|
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
doit (image_ID, drawable, FALSE);
|
2000-02-23 05:25:18 +08:00
|
|
|
|
|
|
|
if (run_mode != RUN_NONINTERACTIVE)
|
|
|
|
gimp_displays_flush ();
|
|
|
|
|
|
|
|
if (run_mode == RUN_INTERACTIVE)
|
|
|
|
gimp_set_data ("plug_in_grid", &grid_cfg, sizeof (grid_cfg));
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-02-23 05:25:18 +08:00
|
|
|
gimp_drawable_detach (drawable);
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-02-23 05:25:18 +08:00
|
|
|
values[0].type = PARAM_STATUS;
|
|
|
|
values[0].data.d_status = status;
|
|
|
|
}
|
1998-01-30 08:31:16 +08:00
|
|
|
|
2000-02-23 05:25:18 +08:00
|
|
|
|
|
|
|
#define MAXDIFF 195076
|
|
|
|
|
|
|
|
static guchar
|
|
|
|
best_cmap_match (guchar *cmap,
|
|
|
|
gint ncolors,
|
|
|
|
guchar *color)
|
|
|
|
{
|
|
|
|
guchar cmap_index = 0;
|
|
|
|
gint max = MAXDIFF;
|
|
|
|
gint i, diff, sum;
|
|
|
|
|
|
|
|
for (i = 0; i < ncolors; i++)
|
|
|
|
{
|
|
|
|
diff = color[0] - *cmap++;
|
|
|
|
sum = SQR (diff);
|
|
|
|
diff = color[1] - *cmap++;
|
|
|
|
sum += SQR (diff);
|
|
|
|
diff = color[2] - *cmap++;
|
|
|
|
sum += SQR (diff);
|
|
|
|
|
|
|
|
if (sum < max)
|
1998-01-30 08:31:16 +08:00
|
|
|
{
|
2000-02-23 05:25:18 +08:00
|
|
|
cmap_index = i;
|
|
|
|
max = sum;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
1998-01-30 08:31:16 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-02-23 05:25:18 +08:00
|
|
|
return cmap_index;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
|
|
|
|
G_INLINE_FUNC void
|
2000-02-23 05:25:18 +08:00
|
|
|
pix_composite (guchar *p1,
|
|
|
|
guchar p2[4],
|
|
|
|
gint bytes,
|
|
|
|
gboolean blend,
|
|
|
|
gboolean alpha)
|
1999-11-01 20:36:23 +08:00
|
|
|
{
|
2000-02-23 05:25:18 +08:00
|
|
|
gint b;
|
|
|
|
|
|
|
|
if (alpha)
|
|
|
|
{
|
|
|
|
bytes--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (blend)
|
|
|
|
{
|
|
|
|
for (b = 0; b < bytes; b++)
|
|
|
|
{
|
|
|
|
*p1 = *p1 * (1.0 - p2[3]/255.0) + p2[b] * p2[3]/255.0;
|
|
|
|
p1++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* blend should only be TRUE for indexed (bytes == 1) */
|
|
|
|
*p1++ = *p2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (alpha && *p1 < 255)
|
|
|
|
{
|
|
|
|
b = *p1 + 255.0 * ((double)p2[3] / (255.0 - *p1));
|
|
|
|
*p1 = b > 255 ? 255 : b;
|
|
|
|
}
|
1999-11-01 20:36:23 +08:00
|
|
|
}
|
|
|
|
|
2000-02-23 05:25:18 +08:00
|
|
|
|
1998-06-01 13:07:31 +08:00
|
|
|
static void
|
2000-02-23 05:25:18 +08:00
|
|
|
doit (gint32 image_ID,
|
2000-05-22 21:53:43 +08:00
|
|
|
GDrawable *drawable,
|
|
|
|
gboolean preview_mode)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1998-01-30 08:31:16 +08:00
|
|
|
GPixelRgn srcPR, destPR;
|
1999-11-01 20:36:23 +08:00
|
|
|
gint width, height, bytes;
|
2000-02-21 03:34:51 +08:00
|
|
|
gint x_offset, y_offset;
|
1999-11-01 20:36:23 +08:00
|
|
|
guchar *dest;
|
2000-02-23 05:25:18 +08:00
|
|
|
gint x, y;
|
|
|
|
gboolean alpha;
|
|
|
|
gboolean blend;
|
|
|
|
guchar hcolor[4];
|
|
|
|
guchar vcolor[4];
|
|
|
|
guchar icolor[4];
|
|
|
|
guchar *cmap;
|
|
|
|
gint ncolors;
|
1999-11-01 20:36:23 +08:00
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
if (preview_mode)
|
2000-02-23 05:25:18 +08:00
|
|
|
{
|
|
|
|
memcpy (hcolor, grid_cfg.hcolor, 4);
|
|
|
|
memcpy (vcolor, grid_cfg.vcolor, 4);
|
|
|
|
memcpy (icolor, grid_cfg.icolor, 4);
|
|
|
|
blend = TRUE;
|
2000-05-22 21:53:43 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (gimp_image_base_type (image_ID))
|
|
|
|
{
|
|
|
|
case GIMP_RGB:
|
|
|
|
memcpy (hcolor, grid_cfg.hcolor, 4);
|
|
|
|
memcpy (vcolor, grid_cfg.vcolor, 4);
|
|
|
|
memcpy (icolor, grid_cfg.icolor, 4);
|
|
|
|
blend = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_GRAY:
|
|
|
|
hcolor[0] = INTENSITY (grid_cfg.hcolor[0], grid_cfg.hcolor[1], grid_cfg.hcolor[2]);
|
|
|
|
hcolor[3] = grid_cfg.hcolor[3];
|
|
|
|
vcolor[0] = INTENSITY (grid_cfg.vcolor[0], grid_cfg.vcolor[1], grid_cfg.vcolor[2]);
|
|
|
|
vcolor[3] = grid_cfg.vcolor[3];
|
|
|
|
icolor[0] = INTENSITY (grid_cfg.icolor[0], grid_cfg.icolor[1], grid_cfg.icolor[2]);
|
|
|
|
icolor[3] = grid_cfg.icolor[3];
|
|
|
|
blend = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_INDEXED:
|
|
|
|
cmap = gimp_image_get_cmap (image_ID, &ncolors);
|
|
|
|
hcolor[0] = best_cmap_match (cmap, ncolors, grid_cfg.hcolor);
|
|
|
|
hcolor[3] = grid_cfg.hcolor[3];
|
|
|
|
vcolor[0] = best_cmap_match (cmap, ncolors, grid_cfg.vcolor);
|
|
|
|
vcolor[3] = grid_cfg.vcolor[3];
|
|
|
|
icolor[0] = best_cmap_match (cmap, ncolors, grid_cfg.icolor);
|
|
|
|
icolor[3] = grid_cfg.icolor[3];
|
|
|
|
g_free (cmap);
|
|
|
|
blend = FALSE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
blend = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (preview_mode)
|
|
|
|
{
|
|
|
|
sx1 = sy1 = 0;
|
|
|
|
sx2 = GTK_PREVIEW (preview)->buffer_width;
|
|
|
|
sy2 = GTK_PREVIEW (preview)->buffer_height;
|
|
|
|
width = sx2;
|
|
|
|
height = sy2;
|
|
|
|
alpha = 0;
|
|
|
|
bytes = GTK_PREVIEW (preview)->bpp;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Get the input area. This is the bounding box of the selection in
|
|
|
|
* the image (or the entire image if there is no selection).
|
|
|
|
*/
|
|
|
|
gimp_drawable_mask_bounds (drawable->id, &sx1, &sy1, &sx2, &sy2);
|
|
|
|
width = gimp_drawable_width (drawable->id);
|
|
|
|
height = gimp_drawable_height (drawable->id);
|
|
|
|
alpha = gimp_drawable_has_alpha (drawable->id);
|
|
|
|
bytes = drawable->bpp;
|
2000-02-23 05:25:18 +08:00
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
/* initialize the pixel regions */
|
|
|
|
gimp_pixel_rgn_init (&srcPR, drawable, 0, 0, width, height, FALSE, FALSE);
|
|
|
|
gimp_pixel_rgn_init (&destPR, drawable, 0, 0, width, height, TRUE, TRUE);
|
2000-02-23 05:25:18 +08:00
|
|
|
}
|
|
|
|
|
2000-02-11 10:22:01 +08:00
|
|
|
dest = g_malloc (width * bytes);
|
1999-11-01 20:36:23 +08:00
|
|
|
for (y = sy1; y < sy2; y++)
|
1998-01-30 08:31:16 +08:00
|
|
|
{
|
2000-05-22 21:53:43 +08:00
|
|
|
if (preview_mode)
|
2000-05-24 02:52:14 +08:00
|
|
|
memcpy (dest,
|
|
|
|
preview_bits + (GTK_PREVIEW (preview)->rowstride * y),
|
|
|
|
GTK_PREVIEW (preview)->rowstride);
|
2000-05-22 21:53:43 +08:00
|
|
|
else
|
2000-05-24 02:52:14 +08:00
|
|
|
gimp_pixel_rgn_get_row (&srcPR, dest, sx1, y, (sx2 - sx1));
|
1999-11-01 20:36:23 +08:00
|
|
|
|
2000-02-21 04:09:01 +08:00
|
|
|
y_offset = y - grid_cfg.voffset;
|
|
|
|
while (y_offset < 0)
|
|
|
|
y_offset += grid_cfg.vspace;
|
2000-02-21 03:34:51 +08:00
|
|
|
|
|
|
|
if ((y_offset + (grid_cfg.vwidth / 2)) % grid_cfg.vspace < grid_cfg.vwidth)
|
|
|
|
{
|
1999-11-01 20:36:23 +08:00
|
|
|
for (x = sx1; x < sx2; x++)
|
1998-01-30 08:31:16 +08:00
|
|
|
{
|
2000-02-23 05:25:18 +08:00
|
|
|
pix_composite (&dest[(x-sx1) * bytes], hcolor, bytes, blend, alpha);
|
1998-01-30 08:31:16 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
1999-11-01 20:36:23 +08:00
|
|
|
|
2000-02-21 03:34:51 +08:00
|
|
|
if ((y_offset + (grid_cfg.iwidth / 2)) % grid_cfg.vspace < grid_cfg.iwidth)
|
|
|
|
{
|
1999-11-01 20:36:23 +08:00
|
|
|
for (x = sx1; x < sx2; x++)
|
1998-01-30 08:31:16 +08:00
|
|
|
{
|
2000-02-21 03:34:51 +08:00
|
|
|
x_offset = grid_cfg.hspace + x - grid_cfg.hoffset;
|
2000-02-21 04:09:01 +08:00
|
|
|
while (x_offset < 0)
|
|
|
|
x_offset += grid_cfg.hspace;
|
2000-02-21 03:34:51 +08:00
|
|
|
|
|
|
|
if ((x_offset % grid_cfg.hspace >= grid_cfg.ispace
|
|
|
|
&&
|
|
|
|
x_offset % grid_cfg.hspace < grid_cfg.ioffset)
|
|
|
|
||
|
|
|
|
(grid_cfg.hspace - (x_offset % grid_cfg.hspace) >= grid_cfg.ispace
|
|
|
|
&&
|
|
|
|
grid_cfg.hspace - (x_offset % grid_cfg.hspace) < grid_cfg.ioffset))
|
|
|
|
{
|
2000-02-23 05:25:18 +08:00
|
|
|
pix_composite (&dest[(x-sx1) * bytes], icolor, bytes, blend, alpha);
|
1999-11-01 20:36:23 +08:00
|
|
|
}
|
1998-01-30 08:31:16 +08:00
|
|
|
}
|
1999-11-01 20:36:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (x = sx1; x < sx2; x++)
|
|
|
|
{
|
2000-02-21 03:34:51 +08:00
|
|
|
x_offset = grid_cfg.hspace + x - grid_cfg.hoffset;
|
2000-02-21 04:09:01 +08:00
|
|
|
while (x_offset < 0)
|
|
|
|
x_offset += grid_cfg.hspace;
|
2000-02-21 03:34:51 +08:00
|
|
|
|
|
|
|
if ((x_offset + (grid_cfg.hwidth / 2)) % grid_cfg.hspace < grid_cfg.hwidth)
|
1999-11-01 20:36:23 +08:00
|
|
|
{
|
2000-02-23 05:25:18 +08:00
|
|
|
pix_composite (&dest[(x-sx1) * bytes], vcolor, bytes, blend, alpha);
|
1999-11-01 20:36:23 +08:00
|
|
|
}
|
|
|
|
|
2000-02-21 03:34:51 +08:00
|
|
|
if ((x_offset + (grid_cfg.iwidth / 2)) % grid_cfg.hspace < grid_cfg.iwidth
|
|
|
|
&&
|
|
|
|
((y_offset % grid_cfg.vspace >= grid_cfg.ispace
|
|
|
|
&&
|
|
|
|
y_offset % grid_cfg.vspace < grid_cfg.ioffset)
|
|
|
|
||
|
|
|
|
(grid_cfg.vspace - (y_offset % grid_cfg.vspace) >= grid_cfg.ispace
|
|
|
|
&&
|
|
|
|
grid_cfg.vspace - (y_offset % grid_cfg.vspace) < grid_cfg.ioffset)))
|
1999-11-01 20:36:23 +08:00
|
|
|
{
|
2000-02-23 05:25:18 +08:00
|
|
|
pix_composite (&dest[(x-sx1) * bytes], icolor, bytes, blend, alpha);
|
1999-11-01 20:36:23 +08:00
|
|
|
}
|
|
|
|
}
|
2000-05-22 21:53:43 +08:00
|
|
|
if (preview_mode)
|
|
|
|
{
|
2000-05-24 22:35:25 +08:00
|
|
|
memcpy (GTK_PREVIEW (preview)->buffer + (GTK_PREVIEW (preview)->rowstride * y),
|
2000-05-24 02:52:14 +08:00
|
|
|
dest,
|
|
|
|
GTK_PREVIEW (preview)->rowstride);
|
2000-05-22 21:53:43 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_pixel_rgn_set_row (&destPR, dest, sx1, y, (sx2-sx1) );
|
|
|
|
gimp_progress_update ((double) y / (double) (sy2 - sy1));
|
|
|
|
}
|
|
|
|
}
|
2000-02-11 10:22:01 +08:00
|
|
|
g_free (dest);
|
1998-01-30 08:31:16 +08:00
|
|
|
|
|
|
|
/* update the timred region */
|
2000-05-22 21:53:43 +08:00
|
|
|
if (preview_mode)
|
|
|
|
{
|
|
|
|
gtk_widget_queue_draw (preview);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_drawable_flush (drawable);
|
|
|
|
gimp_drawable_merge_shadow (drawable->id, TRUE);
|
|
|
|
gimp_drawable_update (drawable->id, sx1, sy1, sx2 - sx1, sy2 - sy1);
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-02-23 05:25:18 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/***************************************************
|
|
|
|
* GUI stuff
|
|
|
|
*/
|
|
|
|
|
1998-06-01 13:07:31 +08:00
|
|
|
static void
|
1999-12-02 08:20:43 +08:00
|
|
|
ok_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-08-25 02:36:38 +08:00
|
|
|
GtkWidget *entry;
|
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
run_flag = TRUE;
|
1999-08-25 02:36:38 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
entry = gtk_object_get_data (GTK_OBJECT (data), "width");
|
|
|
|
grid_cfg.hwidth = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 0) + 0.5);
|
|
|
|
grid_cfg.vwidth = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 1) + 0.5);
|
|
|
|
grid_cfg.iwidth = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 2) + 0.5);
|
1999-08-25 02:36:38 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
entry = gtk_object_get_data (GTK_OBJECT (data), "space");
|
|
|
|
grid_cfg.hspace = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 0) + 0.5);
|
|
|
|
grid_cfg.vspace = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 1) + 0.5);
|
|
|
|
grid_cfg.ispace = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 2) + 0.5);
|
1999-08-25 02:36:38 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
entry = gtk_object_get_data (GTK_OBJECT (data), "offset");
|
|
|
|
grid_cfg.hoffset = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 0) + 0.5);
|
|
|
|
grid_cfg.voffset = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 1) + 0.5);
|
|
|
|
grid_cfg.ioffset = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 2) + 0.5);
|
|
|
|
|
1998-01-30 08:31:16 +08:00
|
|
|
gtk_widget_destroy (GTK_WIDGET (data));
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-02-23 05:25:18 +08:00
|
|
|
|
1998-06-01 13:07:31 +08:00
|
|
|
static void
|
1999-12-02 08:20:43 +08:00
|
|
|
entry_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-08-25 02:36:38 +08:00
|
|
|
static gdouble x = -1.0;
|
|
|
|
static gdouble y = -1.0;
|
|
|
|
gdouble new_x;
|
|
|
|
gdouble new_y;
|
|
|
|
|
|
|
|
new_x = gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (widget), 0);
|
|
|
|
new_y = gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (widget), 1);
|
|
|
|
|
|
|
|
if (gimp_chain_button_get_active (GIMP_CHAIN_BUTTON (data)))
|
|
|
|
{
|
|
|
|
if (new_x != x)
|
|
|
|
{
|
|
|
|
y = new_y = x = new_x;
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (widget), 1, y);
|
|
|
|
}
|
|
|
|
if (new_y != y)
|
|
|
|
{
|
|
|
|
x = new_x = y = new_y;
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (widget), 0, x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (new_x != x)
|
|
|
|
x = new_x;
|
|
|
|
if (new_y != y)
|
|
|
|
y = new_y;
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-02-23 05:25:18 +08:00
|
|
|
|
1999-12-02 08:20:43 +08:00
|
|
|
static void
|
|
|
|
color_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
if (gimp_chain_button_get_active (GIMP_CHAIN_BUTTON (data)))
|
|
|
|
{
|
|
|
|
if (widget == hcolor_button)
|
|
|
|
{
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
grid_cfg.vcolor[i] = grid_cfg.hcolor[i];
|
|
|
|
gimp_color_button_update (GIMP_COLOR_BUTTON (vcolor_button));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
grid_cfg.hcolor[i] = grid_cfg.vcolor[i];
|
|
|
|
gimp_color_button_update (GIMP_COLOR_BUTTON (hcolor_button));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
static void
|
|
|
|
update_preview_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GDrawable *drawable;
|
|
|
|
GtkWidget *entry;
|
|
|
|
|
|
|
|
drawable = gtk_object_get_data (GTK_OBJECT (widget), "drawable");
|
|
|
|
|
|
|
|
entry = gtk_object_get_data (GTK_OBJECT (widget), "width");
|
|
|
|
grid_cfg.hwidth = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 0) + 0.5);
|
|
|
|
grid_cfg.vwidth = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 1) + 0.5);
|
|
|
|
grid_cfg.iwidth = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 2) + 0.5);
|
|
|
|
|
|
|
|
entry = gtk_object_get_data (GTK_OBJECT (widget), "space");
|
|
|
|
grid_cfg.hspace = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 0) + 0.5);
|
|
|
|
grid_cfg.vspace = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 1) + 0.5);
|
|
|
|
grid_cfg.ispace = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 2) + 0.5);
|
|
|
|
|
|
|
|
entry = gtk_object_get_data (GTK_OBJECT (widget), "offset");
|
|
|
|
grid_cfg.hoffset = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 0) + 0.5);
|
|
|
|
grid_cfg.voffset = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 1) + 0.5);
|
|
|
|
grid_cfg.ioffset = (int)(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (entry), 2) + 0.5);
|
|
|
|
|
|
|
|
doit (0, drawable, TRUE); /* we can set image_ID = 0 'cause we dont use it */
|
|
|
|
}
|
|
|
|
|
1998-06-01 13:07:31 +08:00
|
|
|
static gint
|
1999-08-25 02:36:38 +08:00
|
|
|
dialog (gint32 image_ID,
|
|
|
|
GDrawable *drawable)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1998-01-30 08:31:16 +08:00
|
|
|
GtkWidget *dlg;
|
2000-05-22 21:53:43 +08:00
|
|
|
GtkWidget *main_hbox;
|
|
|
|
GtkWidget *main_vbox;
|
|
|
|
GtkWidget *frame;
|
|
|
|
GtkWidget *abox;
|
|
|
|
|
1998-01-30 08:31:16 +08:00
|
|
|
GtkWidget *button;
|
1999-08-25 02:36:38 +08:00
|
|
|
GtkWidget *hbox;
|
1999-11-01 20:36:23 +08:00
|
|
|
GtkWidget *width;
|
|
|
|
GtkWidget *space;
|
1999-08-25 02:36:38 +08:00
|
|
|
GtkWidget *offset;
|
1999-12-02 08:20:43 +08:00
|
|
|
GtkWidget *chain_button;
|
|
|
|
GtkWidget *table;
|
1999-11-01 20:36:23 +08:00
|
|
|
GtkWidget *align;
|
2000-02-08 04:35:13 +08:00
|
|
|
GimpUnit unit;
|
1999-08-25 02:36:38 +08:00
|
|
|
gdouble xres;
|
|
|
|
gdouble yres;
|
1998-01-30 08:31:16 +08:00
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
gimp_ui_init ("grid", TRUE);
|
2000-01-05 23:47:06 +08:00
|
|
|
|
|
|
|
dlg = gimp_dialog_new (_("Grid"), "grid",
|
2000-05-23 01:10:28 +08:00
|
|
|
gimp_standard_help_func, "filters/grid.html",
|
2000-01-05 23:47:06 +08:00
|
|
|
GTK_WIN_POS_MOUSE,
|
|
|
|
FALSE, TRUE, FALSE,
|
1998-01-30 08:31:16 +08:00
|
|
|
|
2000-01-05 23:47:06 +08:00
|
|
|
_("OK"), ok_callback,
|
2000-01-07 00:40:17 +08:00
|
|
|
NULL, NULL, NULL, TRUE, FALSE,
|
2000-01-07 06:26:10 +08:00
|
|
|
_("Cancel"), gtk_widget_destroy,
|
|
|
|
NULL, 1, NULL, FALSE, TRUE,
|
2000-01-05 23:47:06 +08:00
|
|
|
|
|
|
|
NULL);
|
1998-01-30 08:31:16 +08:00
|
|
|
|
2000-01-07 06:26:10 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (dlg), "destroy",
|
|
|
|
GTK_SIGNAL_FUNC (gtk_main_quit),
|
|
|
|
NULL);
|
|
|
|
|
1999-08-25 02:36:38 +08:00
|
|
|
/* Get the image resolution and unit */
|
|
|
|
gimp_image_get_resolution (image_ID, &xres, &yres);
|
2000-01-05 23:47:06 +08:00
|
|
|
unit = gimp_image_get_unit (image_ID);
|
1998-01-30 08:31:16 +08:00
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
/* main hbox: [ ][ ] */
|
|
|
|
main_hbox = gtk_hbox_new (FALSE, 2);
|
|
|
|
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), main_hbox, FALSE, FALSE, 4);
|
|
|
|
/* hbox created and packed into the dialog */
|
1999-08-25 02:36:38 +08:00
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
/* make a nice frame */
|
|
|
|
frame = gtk_frame_new (_("Preview"));
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (frame), 4);
|
|
|
|
gtk_box_pack_start (GTK_BOX (main_hbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
|
|
|
hbox = gtk_vbox_new (FALSE, 2);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (hbox), 0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), hbox);
|
|
|
|
gtk_widget_show (hbox);
|
|
|
|
|
|
|
|
/* row 1 */
|
|
|
|
abox = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (abox), 4);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), abox, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_show (abox);
|
|
|
|
frame = gtk_frame_new (NULL);
|
|
|
|
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
|
|
|
|
gtk_container_add (GTK_CONTAINER (abox), frame);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
preview = preview_widget (drawable); /* we are here */
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), preview);
|
|
|
|
doit (image_ID, drawable, TRUE); /* render preview */
|
|
|
|
gtk_widget_show (preview);
|
|
|
|
|
|
|
|
/* row 2 */
|
|
|
|
abox = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (abox), 4);
|
|
|
|
gtk_container_add (GTK_CONTAINER (hbox), abox);
|
|
|
|
gtk_widget_show (abox);
|
|
|
|
button = gtk_button_new_with_label (_("Update Preview"));
|
|
|
|
gtk_misc_set_padding (GTK_MISC (GTK_BIN (button)->child), 2, 0);
|
|
|
|
gtk_object_set_data (GTK_OBJECT (button), "drawable", drawable);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (button), "clicked",
|
|
|
|
GTK_SIGNAL_FUNC (update_preview_callback),
|
|
|
|
NULL);
|
|
|
|
gtk_container_add (GTK_CONTAINER (abox), button);
|
|
|
|
gtk_widget_show (button);
|
|
|
|
/* left side of the UI is done */
|
|
|
|
|
|
|
|
/* right side */
|
|
|
|
frame = gtk_frame_new (_("Parameter Settings"));
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (frame), 4);
|
|
|
|
gtk_box_pack_start (GTK_BOX (main_hbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
|
|
|
main_vbox = gtk_vbox_new (FALSE, 4);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 6);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), main_vbox);
|
|
|
|
gtk_widget_show (main_vbox);
|
|
|
|
|
|
|
|
/* The width entries */
|
1999-11-01 20:36:23 +08:00
|
|
|
width = gimp_size_entry_new (3, /* number_of_fields */
|
2000-01-19 05:01:45 +08:00
|
|
|
unit, /* unit */
|
1999-11-01 20:36:23 +08:00
|
|
|
"%a", /* unit_format */
|
|
|
|
TRUE, /* menu_show_pixels */
|
|
|
|
TRUE, /* menu_show_percent */
|
|
|
|
FALSE, /* show_refval */
|
|
|
|
SPIN_BUTTON_WIDTH, /* spinbutton_usize */
|
|
|
|
GIMP_SIZE_ENTRY_UPDATE_SIZE); /* update_policy */
|
2000-05-22 21:53:43 +08:00
|
|
|
gtk_object_set_data (GTK_OBJECT (button), "width", width);
|
1999-08-25 02:36:38 +08:00
|
|
|
|
2000-01-19 05:01:45 +08:00
|
|
|
/* set the unit back to pixels, since most times we will want pixels */
|
2000-02-08 04:35:13 +08:00
|
|
|
gimp_size_entry_set_unit (GIMP_SIZE_ENTRY (width), GIMP_UNIT_PIXEL);
|
2000-01-19 05:01:45 +08:00
|
|
|
|
1999-08-25 02:36:38 +08:00
|
|
|
/* set the resolution to the image resolution */
|
1999-11-01 20:36:23 +08:00
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (width), 0, xres, TRUE);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (width), 1, yres, TRUE);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (width), 2, xres, TRUE);
|
1999-08-25 02:36:38 +08:00
|
|
|
|
|
|
|
/* set the size (in pixels) that will be treated as 0% and 100% */
|
1999-11-01 20:36:23 +08:00
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (width), 0, 0.0, (gdouble)(drawable->width));
|
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (width), 1, 0.0, (gdouble)(drawable->height));
|
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (width), 2, 0.0, (gdouble)(drawable->width));
|
1999-08-25 02:36:38 +08:00
|
|
|
|
|
|
|
/* set upper and lower limits (in pixels) */
|
2000-05-22 21:53:43 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (width), 0, 0.0,
|
|
|
|
(gdouble)(drawable->width));
|
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (width), 1, 0.0,
|
|
|
|
(gdouble)(drawable->height));
|
2000-02-21 04:32:40 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (width), 2, 0.0,
|
|
|
|
(gdouble)(MAX (drawable->width, drawable->height)));
|
1999-12-02 08:20:43 +08:00
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (width), 2, 12);
|
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (width), 3, 12);
|
|
|
|
|
1999-08-25 02:36:38 +08:00
|
|
|
/* initialize the values */
|
1999-11-01 20:36:23 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (width), 0, (gdouble)grid_cfg.hwidth);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (width), 1, (gdouble)grid_cfg.vwidth);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (width), 2, (gdouble)grid_cfg.iwidth);
|
1999-08-25 02:36:38 +08:00
|
|
|
|
|
|
|
/* attach labels */
|
1999-11-01 20:36:23 +08:00
|
|
|
gimp_size_entry_attach_label (GIMP_SIZE_ENTRY (width), _("Horizontal"), 0, 1, 0.0);
|
|
|
|
gimp_size_entry_attach_label (GIMP_SIZE_ENTRY (width), _("Vertical"), 0, 2, 0.0);
|
|
|
|
gimp_size_entry_attach_label (GIMP_SIZE_ENTRY (width), _("Intersection"), 0, 3, 0.0);
|
|
|
|
gimp_size_entry_attach_label (GIMP_SIZE_ENTRY (width), _("Width: "), 1, 0, 0.0);
|
1999-08-25 02:36:38 +08:00
|
|
|
|
|
|
|
/* put a chain_button under the size_entries */
|
1999-12-02 08:20:43 +08:00
|
|
|
chain_button = gimp_chain_button_new (GIMP_CHAIN_BOTTOM);
|
1999-11-01 20:36:23 +08:00
|
|
|
if (grid_cfg.hwidth == grid_cfg.vwidth)
|
1999-12-02 08:20:43 +08:00
|
|
|
gimp_chain_button_set_active (GIMP_CHAIN_BUTTON (chain_button), TRUE);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (width), chain_button, 1, 3, 2, 3);
|
|
|
|
gtk_widget_show (chain_button);
|
2000-05-22 21:53:43 +08:00
|
|
|
|
2000-01-27 07:09:15 +08:00
|
|
|
/* connect to the 'value_changed' signal because we have to take care
|
|
|
|
of keeping the entries in sync when the chainbutton is active */
|
1999-11-01 20:36:23 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (width), "value_changed",
|
1999-12-02 08:20:43 +08:00
|
|
|
(GtkSignalFunc) entry_callback, chain_button);
|
1999-11-01 20:36:23 +08:00
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
abox = gtk_alignment_new (1.0, 0.5, 0.0, 0.0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (abox), width);
|
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), abox, FALSE, FALSE, 4);
|
1999-11-01 20:36:23 +08:00
|
|
|
gtk_widget_show (width);
|
2000-05-22 21:53:43 +08:00
|
|
|
gtk_widget_show (abox);
|
1999-11-01 20:36:23 +08:00
|
|
|
|
1999-12-02 08:20:43 +08:00
|
|
|
/* The spacing entries */
|
1999-11-01 20:36:23 +08:00
|
|
|
space = gimp_size_entry_new (3, /* number_of_fields */
|
2000-01-19 05:01:45 +08:00
|
|
|
unit, /* unit */
|
1999-11-01 20:36:23 +08:00
|
|
|
"%a", /* unit_format */
|
|
|
|
TRUE, /* menu_show_pixels */
|
|
|
|
TRUE, /* menu_show_percent */
|
|
|
|
FALSE, /* show_refval */
|
|
|
|
SPIN_BUTTON_WIDTH, /* spinbutton_usize */
|
|
|
|
GIMP_SIZE_ENTRY_UPDATE_SIZE); /* update_policy */
|
2000-05-22 21:53:43 +08:00
|
|
|
gtk_object_set_data (GTK_OBJECT (button), "space", space);
|
2000-02-08 04:35:13 +08:00
|
|
|
gimp_size_entry_set_unit (GIMP_SIZE_ENTRY (space), GIMP_UNIT_PIXEL);
|
2000-01-19 05:01:45 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
/* set the resolution to the image resolution */
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (space), 0, xres, TRUE);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (space), 1, yres, TRUE);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (space), 2, xres, TRUE);
|
|
|
|
|
|
|
|
/* set the size (in pixels) that will be treated as 0% and 100% */
|
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (space), 0, 0.0, (gdouble)(drawable->width));
|
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (space), 1, 0.0, (gdouble)(drawable->height));
|
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (space), 2, 0.0, (gdouble)(drawable->width));
|
|
|
|
|
|
|
|
/* set upper and lower limits (in pixels) */
|
2000-05-22 21:53:43 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (space), 0, 1.0,
|
|
|
|
(gdouble)(drawable->width));
|
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (space), 1, 1.0,
|
|
|
|
(gdouble)(drawable->height));
|
2000-02-21 04:32:40 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (space), 2, 0.0,
|
|
|
|
(gdouble)(MAX (drawable->width, drawable->height)));
|
1999-12-02 08:20:43 +08:00
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (space), 2, 12);
|
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (space), 3, 12);
|
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
/* initialize the values */
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (space), 0, (gdouble)grid_cfg.hspace);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (space), 1, (gdouble)grid_cfg.vspace);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (space), 2, (gdouble)grid_cfg.ispace);
|
|
|
|
/* attach labels */
|
|
|
|
gimp_size_entry_attach_label (GIMP_SIZE_ENTRY (space), _("Spacing: "), 1, 0, 0.0);
|
|
|
|
|
1999-12-02 08:20:43 +08:00
|
|
|
/* put a chain_button under the spacing_entries */
|
|
|
|
chain_button = gimp_chain_button_new (GIMP_CHAIN_BOTTOM);
|
1999-11-01 20:36:23 +08:00
|
|
|
if (grid_cfg.hspace == grid_cfg.vspace)
|
1999-12-02 08:20:43 +08:00
|
|
|
gimp_chain_button_set_active (GIMP_CHAIN_BUTTON (chain_button), TRUE);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (space), chain_button, 1, 3, 2, 3);
|
|
|
|
gtk_widget_show (chain_button);
|
2000-05-22 21:53:43 +08:00
|
|
|
|
1999-08-25 02:36:38 +08:00
|
|
|
/* connect to the 'value_changed' and "unit_changed" signals because we have to
|
|
|
|
take care of keeping the entries in sync when the chainbutton is active */
|
1999-11-01 20:36:23 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (space), "value_changed",
|
1999-12-02 08:20:43 +08:00
|
|
|
(GtkSignalFunc) entry_callback, chain_button);
|
1999-11-01 20:36:23 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (space), "unit_changed",
|
1999-12-02 08:20:43 +08:00
|
|
|
(GtkSignalFunc) entry_callback, chain_button);
|
1999-08-25 02:36:38 +08:00
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
abox = gtk_alignment_new (1.0, 0.5, 0.0, 0.0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (abox), space);
|
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), abox, FALSE, FALSE, 4);
|
1999-11-01 20:36:23 +08:00
|
|
|
gtk_widget_show (space);
|
2000-05-22 21:53:43 +08:00
|
|
|
gtk_widget_show (abox);
|
1999-08-25 02:36:38 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
/* The offset entries */
|
|
|
|
offset = gimp_size_entry_new (3, /* number_of_fields */
|
2000-01-19 05:01:45 +08:00
|
|
|
unit, /* unit */
|
1999-11-01 20:36:23 +08:00
|
|
|
"%a", /* unit_format */
|
|
|
|
TRUE, /* menu_show_pixels */
|
|
|
|
TRUE, /* menu_show_percent */
|
|
|
|
FALSE, /* show_refval */
|
|
|
|
SPIN_BUTTON_WIDTH, /* spinbutton_usize */
|
|
|
|
GIMP_SIZE_ENTRY_UPDATE_SIZE); /* update_policy */
|
2000-05-22 21:53:43 +08:00
|
|
|
gtk_object_set_data (GTK_OBJECT (button), "offset", offset);
|
2000-02-08 04:35:13 +08:00
|
|
|
gimp_size_entry_set_unit (GIMP_SIZE_ENTRY (offset), GIMP_UNIT_PIXEL);
|
2000-01-19 05:01:45 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
/* set the resolution to the image resolution */
|
1999-08-25 02:36:38 +08:00
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (offset), 0, xres, TRUE);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (offset), 1, yres, TRUE);
|
1999-11-01 20:36:23 +08:00
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (offset), 2, xres, TRUE);
|
|
|
|
|
|
|
|
/* set the size (in pixels) that will be treated as 0% and 100% */
|
1999-08-25 02:36:38 +08:00
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (offset), 0, 0.0, (gdouble)(drawable->width));
|
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (offset), 1, 0.0, (gdouble)(drawable->height));
|
1999-11-01 20:36:23 +08:00
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (offset), 2, 0.0, (gdouble)(drawable->width));
|
|
|
|
|
|
|
|
/* set upper and lower limits (in pixels) */
|
2000-05-22 21:53:43 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (offset), 0, 0.0,
|
|
|
|
(gdouble)(drawable->width));
|
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (offset), 1, 0.0,
|
|
|
|
(gdouble)(drawable->height));
|
2000-02-21 04:32:40 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (offset), 2, 0.0,
|
|
|
|
(gdouble)(MAX (drawable->width, drawable->height)));
|
1999-12-02 08:20:43 +08:00
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (offset), 2, 12);
|
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (offset), 3, 12);
|
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
/* initialize the values */
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (offset), 0, (gdouble)grid_cfg.hoffset);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (offset), 1, (gdouble)grid_cfg.voffset);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (offset), 2, (gdouble)grid_cfg.ioffset);
|
|
|
|
|
|
|
|
/* attach labels */
|
|
|
|
gimp_size_entry_attach_label (GIMP_SIZE_ENTRY (offset), _("Offset: "), 1, 0, 0.0);
|
|
|
|
|
1999-12-02 08:20:43 +08:00
|
|
|
/* this is a weird hack: we put a table into the offset table */
|
|
|
|
table = gtk_table_new (3, 3, FALSE);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (offset), table, 1, 4, 2, 3);
|
|
|
|
gtk_table_set_row_spacing (GTK_TABLE (table), 0, 10);
|
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (table), 1, 12);
|
1999-11-01 20:36:23 +08:00
|
|
|
|
1999-12-02 08:20:43 +08:00
|
|
|
/* put a chain_button under the offset_entries */
|
|
|
|
chain_button = gimp_chain_button_new (GIMP_CHAIN_BOTTOM);
|
|
|
|
if (grid_cfg.hoffset == grid_cfg.voffset)
|
|
|
|
gimp_chain_button_set_active (GIMP_CHAIN_BUTTON (chain_button), TRUE);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table), chain_button, 0, 2, 0, 1);
|
|
|
|
gtk_widget_show (chain_button);
|
|
|
|
|
|
|
|
/* connect to the 'value_changed' and "unit_changed" signals because we have to
|
|
|
|
take care of keeping the entries in sync when the chainbutton is active */
|
|
|
|
gtk_signal_connect (GTK_OBJECT (offset), "value_changed",
|
|
|
|
(GtkSignalFunc) entry_callback, chain_button);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (offset), "unit_changed",
|
|
|
|
(GtkSignalFunc) entry_callback, chain_button);
|
|
|
|
|
|
|
|
/* put a chain_button under the color_buttons */
|
|
|
|
chain_button = gimp_chain_button_new (GIMP_CHAIN_BOTTOM);
|
|
|
|
if ((guint32)(*grid_cfg.hcolor) == (guint32)(*grid_cfg.vcolor))
|
|
|
|
gimp_chain_button_set_active (GIMP_CHAIN_BUTTON (chain_button), TRUE);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table), chain_button, 0, 2, 2, 3);
|
|
|
|
gtk_widget_show (chain_button);
|
|
|
|
|
2000-02-23 05:25:18 +08:00
|
|
|
/* attach color selectors */
|
1999-12-02 08:20:43 +08:00
|
|
|
hcolor_button = gimp_color_button_new (_("Horizontal Color"), COLOR_BUTTON_WIDTH, 16,
|
|
|
|
grid_cfg.hcolor, 4);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (hcolor_button), "color_changed",
|
|
|
|
(GtkSignalFunc) color_callback, chain_button);
|
1999-11-01 20:36:23 +08:00
|
|
|
align = gtk_alignment_new (0.0, 0.5, 0, 0);
|
1999-12-02 08:20:43 +08:00
|
|
|
gtk_container_add (GTK_CONTAINER (align), hcolor_button);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table), align, 0, 1, 1, 2);
|
|
|
|
gtk_widget_show (hcolor_button);
|
1999-11-01 20:36:23 +08:00
|
|
|
gtk_widget_show (align);
|
|
|
|
|
1999-12-02 08:20:43 +08:00
|
|
|
vcolor_button = gimp_color_button_new (_("Vertical Color"), COLOR_BUTTON_WIDTH, 16,
|
|
|
|
grid_cfg.vcolor, 4);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (vcolor_button), "color_changed",
|
|
|
|
(GtkSignalFunc) color_callback, chain_button);
|
1999-11-01 20:36:23 +08:00
|
|
|
align = gtk_alignment_new (0.0, 0.5, 0, 0);
|
1999-12-02 08:20:43 +08:00
|
|
|
gtk_container_add (GTK_CONTAINER (align), vcolor_button);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table), align, 1, 2, 1, 2);
|
|
|
|
gtk_widget_show (vcolor_button);
|
1999-11-01 20:36:23 +08:00
|
|
|
gtk_widget_show (align);
|
2000-05-22 21:53:43 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
button = gimp_color_button_new (_("Intersection Color"), COLOR_BUTTON_WIDTH, 16,
|
|
|
|
grid_cfg.icolor, 4);
|
|
|
|
align = gtk_alignment_new (0.0, 0.5, 0, 0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (align), button);
|
1999-12-02 08:20:43 +08:00
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table), align, 2, 3, 1, 2);
|
1999-11-01 20:36:23 +08:00
|
|
|
gtk_widget_show (button);
|
|
|
|
gtk_widget_show (align);
|
1999-12-02 08:20:43 +08:00
|
|
|
gtk_widget_show (table);
|
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
abox = gtk_alignment_new (1.0, 0.5, 0.0, 0.0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (abox), offset);
|
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), abox, FALSE, FALSE, 4);
|
1999-08-25 02:36:38 +08:00
|
|
|
gtk_widget_show (offset);
|
2000-05-22 21:53:43 +08:00
|
|
|
gtk_widget_show (abox);
|
1998-01-30 08:31:16 +08:00
|
|
|
|
2000-05-22 21:53:43 +08:00
|
|
|
gtk_widget_show (main_hbox);
|
1998-01-30 08:31:16 +08:00
|
|
|
gtk_widget_show (dlg);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-11-01 20:36:23 +08:00
|
|
|
gtk_object_set_data (GTK_OBJECT (dlg), "width", width);
|
|
|
|
gtk_object_set_data (GTK_OBJECT (dlg), "space", space);
|
1999-08-25 02:36:38 +08:00
|
|
|
gtk_object_set_data (GTK_OBJECT (dlg), "offset", offset);
|
1998-01-30 08:31:16 +08:00
|
|
|
|
|
|
|
gtk_main ();
|
|
|
|
gdk_flush ();
|
|
|
|
|
|
|
|
return run_flag;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
2000-05-22 21:53:43 +08:00
|
|
|
|
|
|
|
static GtkWidget *
|
|
|
|
preview_widget (GDrawable *drawable)
|
|
|
|
{
|
|
|
|
gint size;
|
|
|
|
GtkWidget *preview;
|
|
|
|
|
2000-05-24 22:35:25 +08:00
|
|
|
preview = gtk_preview_new (GTK_PREVIEW_COLOR);
|
|
|
|
fill_preview (preview, drawable);
|
|
|
|
size = GTK_PREVIEW (preview)->rowstride * GTK_PREVIEW (preview)->buffer_height;
|
|
|
|
preview_bits = g_malloc (size);
|
|
|
|
memcpy (preview_bits, GTK_PREVIEW (preview)->buffer, size);
|
2000-05-22 21:53:43 +08:00
|
|
|
|
|
|
|
return preview;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_preview (GtkWidget *widget,
|
|
|
|
GDrawable *drawable)
|
|
|
|
{
|
|
|
|
GPixelRgn srcPR;
|
|
|
|
gint width;
|
|
|
|
gint height;
|
2000-05-23 21:00:40 +08:00
|
|
|
gint x1, x2, y1, y2;
|
2000-05-22 21:53:43 +08:00
|
|
|
gint bpp;
|
|
|
|
gint x, y;
|
|
|
|
guchar *src;
|
|
|
|
gdouble r, g, b, a;
|
|
|
|
gdouble c0, c1;
|
2000-05-23 09:03:06 +08:00
|
|
|
guchar *p0, *p1;
|
|
|
|
guchar *even, *odd;
|
2000-05-22 21:53:43 +08:00
|
|
|
|
2000-05-23 21:00:40 +08:00
|
|
|
gimp_drawable_mask_bounds (drawable->id, &x1, &y1, &x2, &y2);
|
|
|
|
|
|
|
|
if (x2 - x1 > PREVIEW_SIZE)
|
|
|
|
x2 = x1 + PREVIEW_SIZE;
|
|
|
|
|
|
|
|
if (y2 - y1 > PREVIEW_SIZE)
|
|
|
|
y2 = y1 + PREVIEW_SIZE;
|
|
|
|
|
|
|
|
width = x2 - x1;
|
|
|
|
height = y2 - y1;
|
|
|
|
bpp = gimp_drawable_bpp (drawable->id);
|
2000-05-22 21:53:43 +08:00
|
|
|
|
2000-05-23 09:03:06 +08:00
|
|
|
if (width < 1 || height < 1)
|
|
|
|
return;
|
2000-05-22 21:53:43 +08:00
|
|
|
|
|
|
|
gtk_preview_size (GTK_PREVIEW (widget), width, height);
|
|
|
|
|
2000-05-23 21:00:40 +08:00
|
|
|
gimp_pixel_rgn_init (&srcPR, drawable, x1, y1, x2, y2, FALSE, FALSE);
|
2000-05-22 21:53:43 +08:00
|
|
|
|
|
|
|
even = g_malloc (width * 3);
|
|
|
|
odd = g_malloc (width * 3);
|
|
|
|
src = g_malloc (width * bpp);
|
|
|
|
|
|
|
|
for (y = 0; y < height; y++)
|
|
|
|
{
|
2000-05-23 21:00:40 +08:00
|
|
|
gimp_pixel_rgn_get_row (&srcPR, src, x1, y + y1, width);
|
2000-05-22 21:53:43 +08:00
|
|
|
p0 = even;
|
|
|
|
p1 = odd;
|
|
|
|
|
|
|
|
for (x = 0; x < width; x++)
|
|
|
|
{
|
|
|
|
if (bpp == 4)
|
|
|
|
{
|
|
|
|
r = ((gdouble)src[x*4+0]) / 255.0;
|
|
|
|
g = ((gdouble)src[x*4+1]) / 255.0;
|
|
|
|
b = ((gdouble)src[x*4+2]) / 255.0;
|
|
|
|
a = ((gdouble)src[x*4+3]) / 255.0;
|
|
|
|
}
|
|
|
|
else if (bpp == 3)
|
|
|
|
{
|
|
|
|
r = ((gdouble)src[x*3+0]) / 255.0;
|
|
|
|
g = ((gdouble)src[x*3+1]) / 255.0;
|
|
|
|
b = ((gdouble)src[x*3+2]) / 255.0;
|
|
|
|
a = 1.0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
r = ((gdouble)src[x*bpp+0]) / 255.0;
|
|
|
|
g = b = r;
|
|
|
|
if (bpp == 2)
|
|
|
|
a = ((gdouble)src[x*bpp+1]) / 255.0;
|
|
|
|
else
|
|
|
|
a = 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((x / GIMP_CHECK_SIZE) & 1)
|
|
|
|
{
|
|
|
|
c0 = GIMP_CHECK_LIGHT;
|
|
|
|
c1 = GIMP_CHECK_DARK;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
c0 = GIMP_CHECK_DARK;
|
|
|
|
c1 = GIMP_CHECK_LIGHT;
|
|
|
|
}
|
|
|
|
|
|
|
|
*p0++ = (c0 + (r - c0) * a) * 255.0;
|
|
|
|
*p0++ = (c0 + (g - c0) * a) * 255.0;
|
|
|
|
*p0++ = (c0 + (b - c0) * a) * 255.0;
|
|
|
|
|
|
|
|
*p1++ = (c1 + (r - c1) * a) * 255.0;
|
|
|
|
*p1++ = (c1 + (g - c1) * a) * 255.0;
|
|
|
|
*p1++ = (c1 + (b - c1) * a) * 255.0;
|
|
|
|
|
|
|
|
} /* for */
|
|
|
|
|
|
|
|
if ((y / GIMP_CHECK_SIZE) & 1)
|
|
|
|
gtk_preview_draw_row (GTK_PREVIEW (widget), (guchar *)odd, 0, y, width);
|
|
|
|
else
|
|
|
|
gtk_preview_draw_row (GTK_PREVIEW (widget), (guchar *)even, 0, y, width);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (even);
|
|
|
|
g_free (odd);
|
|
|
|
g_free (src);
|
|
|
|
}
|