1997-12-09 13:57:33 +08:00
|
|
|
/*
|
2000-05-23 03:40:06 +08:00
|
|
|
* This is the Glass Tile plug-in for the GIMP 1.2
|
|
|
|
* Version 1.02
|
1997-12-09 13:57:33 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 1997 Karl-Johan Andersson (t96kja@student.tdb.uu.se)
|
|
|
|
*
|
|
|
|
* 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-12-09 13:57:33 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This filter divide the image into square "glass"-blocks in which
|
|
|
|
* the image is refracted.
|
|
|
|
*
|
|
|
|
* The alpha-channel is left unchanged.
|
|
|
|
*
|
|
|
|
* Please send any comments or suggestions to
|
|
|
|
* Karl-Johan Andersson (t96kja@student.tdb.uu.se)
|
2000-05-23 03:40:06 +08:00
|
|
|
*
|
|
|
|
* May 2000 - tim copperfield [timecop@japan.co.jp]
|
|
|
|
* Added preview mode.
|
|
|
|
* Noticed there is an issue with the algorithm if odd number of rows or
|
|
|
|
* columns is requested. Dunno why. I am not a graphics expert :(
|
2000-05-26 07:28:20 +08:00
|
|
|
*
|
|
|
|
* May 2000 alt@gimp.org Made preview work and removed some boundary
|
|
|
|
* conditions that caused "streaks" to appear when using some tile spaces.
|
1997-12-09 13:57:33 +08:00
|
|
|
*/
|
|
|
|
|
1999-12-26 05:49:51 +08:00
|
|
|
#include "config.h"
|
2000-01-07 06:26:10 +08:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2000-10-01 04:13:06 +08:00
|
|
|
#include <string.h>
|
2000-01-07 06:26:10 +08:00
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
#include <libgimp/gimp.h>
|
|
|
|
#include <libgimp/gimpui.h>
|
2000-01-07 06:26:10 +08:00
|
|
|
|
1999-12-26 05:49:51 +08:00
|
|
|
#include "libgimp/stdplugins-intl.h"
|
1997-12-09 13:57:33 +08:00
|
|
|
|
2000-05-01 05:03:44 +08:00
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
#define PREVIEW_SIZE 128
|
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
/* --- Typedefs --- */
|
2000-01-16 23:38:38 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
1997-12-09 13:57:33 +08:00
|
|
|
gint xblock;
|
|
|
|
gint yblock;
|
|
|
|
} GlassValues;
|
2000-01-16 23:38:38 +08:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
1997-12-09 13:57:33 +08:00
|
|
|
gint run;
|
|
|
|
} GlassInterface;
|
|
|
|
|
|
|
|
/* --- Declare local functions --- */
|
|
|
|
static void query (void);
|
2000-01-16 23:38:38 +08:00
|
|
|
static void run (gchar *name,
|
|
|
|
gint nparams,
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpParam *param,
|
2000-01-16 23:38:38 +08:00
|
|
|
gint *nreturn_vals,
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpParam **return_vals);
|
2000-01-16 23:38:38 +08:00
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
static gint glass_dialog (GimpDrawable *drawable);
|
2000-05-23 03:40:06 +08:00
|
|
|
static void glass_ok_callback (GtkWidget *widget,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
static void fill_preview_with_thumb (GtkWidget *preview_widget,
|
|
|
|
gint32 drawable_ID);
|
2000-08-22 09:26:57 +08:00
|
|
|
static GtkWidget *preview_widget (GimpDrawable *drawable);
|
2000-01-16 23:38:38 +08:00
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
static void glasstile (GimpDrawable *drawable,
|
2000-05-23 03:40:06 +08:00
|
|
|
gboolean preview_mode);
|
1997-12-09 13:57:33 +08:00
|
|
|
|
|
|
|
/* --- Variables --- */
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpPlugInInfo PLUG_IN_INFO =
|
1997-12-09 13:57:33 +08:00
|
|
|
{
|
|
|
|
NULL, /* init_proc */
|
|
|
|
NULL, /* quit_proc */
|
|
|
|
query, /* query_proc */
|
|
|
|
run, /* run_proc */
|
|
|
|
};
|
|
|
|
static GlassValues gtvals =
|
|
|
|
{
|
|
|
|
20, /* tile width */
|
|
|
|
20 /* tile height */
|
|
|
|
};
|
|
|
|
static GlassInterface gt_int =
|
|
|
|
{
|
|
|
|
FALSE /* run */
|
|
|
|
};
|
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
/* preview */
|
|
|
|
static guchar *preview_bits;
|
|
|
|
static GtkWidget *preview;
|
2000-05-23 09:03:06 +08:00
|
|
|
static gdouble preview_scale_x;
|
|
|
|
static gdouble preview_scale_y;
|
2000-05-26 07:28:20 +08:00
|
|
|
static guchar *preview_cache;
|
|
|
|
static gint preview_cache_rowstride;
|
|
|
|
static gint preview_cache_bpp;
|
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
/* --- Functions --- */
|
|
|
|
|
|
|
|
MAIN ()
|
|
|
|
|
2000-01-07 06:26:10 +08:00
|
|
|
static void
|
|
|
|
query (void)
|
1997-12-09 13:57:33 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
static GimpParamDef args[] =
|
1997-12-09 13:57:33 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +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, "tilex", "Tile width (10 - 50)" },
|
|
|
|
{ GIMP_PDB_INT32, "tiley", "Tile height (10 - 50)" }
|
1997-12-09 13:57:33 +08:00
|
|
|
};
|
2000-05-01 05:03:44 +08:00
|
|
|
static gint nargs = sizeof (args) / sizeof (args[0]);
|
1999-12-26 05:49:51 +08:00
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
gimp_install_procedure ("plug_in_glasstile",
|
2000-01-31 10:32:30 +08:00
|
|
|
"Divide the image into square glassblocks",
|
2000-05-23 03:40:06 +08:00
|
|
|
"Divide the image into square glassblocks in which the image is refracted.",
|
1997-12-09 13:57:33 +08:00
|
|
|
"Karl-Johan Andersson", /* Author */
|
|
|
|
"Karl-Johan Andersson", /* Copyright */
|
2000-05-23 03:40:06 +08:00
|
|
|
"May 2000",
|
1999-12-26 05:49:51 +08:00
|
|
|
N_("<Image>/Filters/Glass Effects/Glass Tile..."),
|
1997-12-09 13:57:33 +08:00
|
|
|
"RGB*, GRAY*",
|
2000-08-22 09:26:57 +08:00
|
|
|
GIMP_PLUGIN,
|
2000-05-01 05:03:44 +08:00
|
|
|
nargs, 0,
|
|
|
|
args, NULL);
|
1997-12-09 13:57:33 +08:00
|
|
|
}
|
|
|
|
|
2000-01-07 06:26:10 +08:00
|
|
|
static void
|
|
|
|
run (gchar *name,
|
|
|
|
gint nparams,
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpParam *param,
|
2000-01-07 06:26:10 +08:00
|
|
|
gint *nreturn_vals,
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpParam **return_vals)
|
1997-12-09 13:57:33 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
static GimpParam values[1];
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
GimpRunModeType run_mode;
|
|
|
|
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
|
1997-12-09 13:57:33 +08:00
|
|
|
|
|
|
|
run_mode = param[0].data.d_int32;
|
|
|
|
|
|
|
|
*nreturn_vals = 1;
|
|
|
|
*return_vals = values;
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
values[0].type = GIMP_PDB_STATUS;
|
1997-12-09 13:57:33 +08:00
|
|
|
values[0].data.d_status = status;
|
|
|
|
|
|
|
|
/* Get the specified drawable */
|
|
|
|
drawable = gimp_drawable_get (param[2].data.d_drawable);
|
|
|
|
|
|
|
|
switch (run_mode)
|
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_INTERACTIVE:
|
1999-12-26 05:49:51 +08:00
|
|
|
INIT_I18N_UI();
|
1997-12-09 13:57:33 +08:00
|
|
|
/* Possibly retrieve data */
|
|
|
|
gimp_get_data ("plug_in_glasstile", >vals);
|
|
|
|
|
|
|
|
/* First acquire information with a dialog */
|
2000-05-23 03:40:06 +08:00
|
|
|
if (! glass_dialog (drawable))
|
1997-12-09 13:57:33 +08:00
|
|
|
{
|
|
|
|
gimp_drawable_detach (drawable);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_NONINTERACTIVE:
|
1999-12-26 05:49:51 +08:00
|
|
|
INIT_I18N();
|
1997-12-09 13:57:33 +08:00
|
|
|
/* Make sure all the arguments are there! */
|
|
|
|
if (nparams != 5)
|
2000-08-22 09:26:57 +08:00
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
|
|
|
if (status == GIMP_PDB_SUCCESS)
|
1997-12-09 13:57:33 +08:00
|
|
|
{
|
|
|
|
gtvals.xblock = (gint) param[3].data.d_int32;
|
|
|
|
gtvals.yblock = (gint) param[4].data.d_int32;
|
|
|
|
}
|
|
|
|
if (gtvals.xblock < 10 || gtvals.xblock > 50)
|
2000-08-22 09:26:57 +08:00
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
1997-12-09 13:57:33 +08:00
|
|
|
if (gtvals.yblock < 10 || gtvals.yblock > 50)
|
2000-08-22 09:26:57 +08:00
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
1997-12-09 13:57:33 +08:00
|
|
|
break;
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_WITH_LAST_VALS:
|
1999-12-26 05:49:51 +08:00
|
|
|
INIT_I18N();
|
1997-12-09 13:57:33 +08:00
|
|
|
/* Possibly retrieve data */
|
|
|
|
gimp_get_data ("plug_in_glasstile", >vals);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
if (status == GIMP_PDB_SUCCESS)
|
1997-12-09 13:57:33 +08:00
|
|
|
{
|
|
|
|
/* Make sure that the drawable is gray or RGB color */
|
2001-06-15 04:07:38 +08:00
|
|
|
if (gimp_drawable_is_rgb (drawable->drawable_id) ||
|
|
|
|
gimp_drawable_is_gray (drawable->drawable_id))
|
1997-12-09 13:57:33 +08:00
|
|
|
{
|
1999-12-26 05:49:51 +08:00
|
|
|
gimp_progress_init ( _("Glass Tile..."));
|
1997-12-09 13:57:33 +08:00
|
|
|
gimp_tile_cache_ntiles (2 * (drawable->width / gimp_tile_width () + 1));
|
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
glasstile (drawable, 0);
|
1997-12-09 13:57:33 +08:00
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
if (run_mode != GIMP_RUN_NONINTERACTIVE)
|
1997-12-09 13:57:33 +08:00
|
|
|
gimp_displays_flush ();
|
|
|
|
/* Store data */
|
2000-08-22 09:26:57 +08:00
|
|
|
if (run_mode == GIMP_RUN_INTERACTIVE)
|
2000-05-23 03:40:06 +08:00
|
|
|
{
|
|
|
|
gimp_set_data ("plug_in_glasstile", >vals,
|
|
|
|
sizeof (GlassValues));
|
|
|
|
g_free (preview_bits);
|
2000-05-26 07:28:20 +08:00
|
|
|
g_free (preview_cache);
|
2000-05-23 03:40:06 +08:00
|
|
|
}
|
1997-12-09 13:57:33 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* gimp_message ("glasstile: cannot operate on indexed color images"); */
|
2000-08-22 09:26:57 +08:00
|
|
|
status = GIMP_PDB_EXECUTION_ERROR;
|
1997-12-09 13:57:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
values[0].data.d_status = status;
|
|
|
|
|
|
|
|
gimp_drawable_detach (drawable);
|
|
|
|
}
|
|
|
|
|
2000-01-07 06:26:10 +08:00
|
|
|
static gint
|
2000-08-22 09:26:57 +08:00
|
|
|
glass_dialog (GimpDrawable *drawable)
|
1997-12-09 13:57:33 +08:00
|
|
|
{
|
|
|
|
GtkWidget *dlg;
|
2000-05-23 03:40:06 +08:00
|
|
|
GtkWidget *main_vbox;
|
1997-12-09 13:57:33 +08:00
|
|
|
GtkWidget *frame;
|
|
|
|
GtkWidget *table;
|
2000-05-23 03:40:06 +08:00
|
|
|
GtkWidget *abox;
|
2000-01-16 23:38:38 +08:00
|
|
|
GtkObject *adj;
|
1997-12-09 13:57:33 +08:00
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
gimp_ui_init ("glasstile", TRUE);
|
1997-12-09 13:57:33 +08:00
|
|
|
|
2000-01-07 06:26:10 +08:00
|
|
|
dlg = gimp_dialog_new (_("Glass Tile"), "glasstile",
|
2000-05-23 01:10:28 +08:00
|
|
|
gimp_standard_help_func, "filters/glasstile.html",
|
2000-01-07 06:26:10 +08:00
|
|
|
GTK_WIN_POS_MOUSE,
|
|
|
|
FALSE, TRUE, FALSE,
|
|
|
|
|
|
|
|
_("OK"), glass_ok_callback,
|
|
|
|
NULL, NULL, NULL, TRUE, FALSE,
|
|
|
|
_("Cancel"), gtk_widget_destroy,
|
|
|
|
NULL, 1, NULL, FALSE, TRUE,
|
|
|
|
|
|
|
|
NULL);
|
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (dlg), "destroy",
|
2000-01-07 06:26:10 +08:00
|
|
|
GTK_SIGNAL_FUNC (gtk_main_quit),
|
1997-12-09 13:57:33 +08:00
|
|
|
NULL);
|
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
main_vbox = gtk_vbox_new (FALSE, 3);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 0);
|
|
|
|
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), main_vbox, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_show (main_vbox);
|
|
|
|
|
|
|
|
frame = gtk_frame_new (_("Preview"));
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (frame), 6);
|
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
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 (frame), abox);
|
|
|
|
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);
|
|
|
|
glasstile (drawable, TRUE); /* filter routine, initial pass */
|
|
|
|
gtk_widget_show (preview);
|
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
/* Parameter settings */
|
2000-01-07 06:26:10 +08:00
|
|
|
frame = gtk_frame_new (_("Parameter Settings"));
|
1997-12-09 13:57:33 +08:00
|
|
|
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_ETCHED_IN);
|
2000-08-28 08:42:32 +08:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (frame), 6);
|
2000-05-23 03:40:06 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), frame, TRUE, TRUE, 0);
|
2000-01-09 04:00:10 +08:00
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
table = gtk_table_new (2, 3, FALSE);
|
2000-01-09 04:00:10 +08:00
|
|
|
gtk_table_set_col_spacings (GTK_TABLE (table), 4);
|
|
|
|
gtk_table_set_row_spacings (GTK_TABLE (table), 2);
|
2000-08-28 08:42:32 +08:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (table), 4);
|
1997-12-09 13:57:33 +08:00
|
|
|
gtk_container_add (GTK_CONTAINER (frame), table);
|
|
|
|
|
|
|
|
/* Horizontal scale - Width */
|
2000-01-16 23:38:38 +08:00
|
|
|
adj = gimp_scale_entry_new (GTK_TABLE (table), 0, 0,
|
|
|
|
_("Tile Width:"), 150, 0,
|
2000-05-23 03:40:06 +08:00
|
|
|
gtvals.xblock, 10, 50, 2, 10, 0,
|
2000-02-04 23:12:17 +08:00
|
|
|
TRUE, 0, 0,
|
2000-01-16 23:38:38 +08:00
|
|
|
NULL, NULL);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (adj), "value_changed",
|
2000-05-23 21:00:40 +08:00
|
|
|
GTK_SIGNAL_FUNC (gimp_int_adjustment_update),
|
2000-01-16 23:38:38 +08:00
|
|
|
>vals.xblock);
|
2000-05-23 21:00:40 +08:00
|
|
|
gtk_signal_connect_object (GTK_OBJECT (adj), "value_changed",
|
|
|
|
GTK_SIGNAL_FUNC (glasstile),
|
|
|
|
(gpointer)drawable);
|
1997-12-09 13:57:33 +08:00
|
|
|
|
|
|
|
/* Horizontal scale - Height */
|
2000-01-16 23:38:38 +08:00
|
|
|
adj = gimp_scale_entry_new (GTK_TABLE (table), 0, 1,
|
|
|
|
_("Tile Height:"), 150, 0,
|
2000-05-23 03:40:06 +08:00
|
|
|
gtvals.yblock, 10, 50, 2, 10, 0,
|
2000-02-04 23:12:17 +08:00
|
|
|
TRUE, 0, 0,
|
2000-01-16 23:38:38 +08:00
|
|
|
NULL, NULL);
|
2000-05-23 03:40:06 +08:00
|
|
|
gtk_object_set_data (GTK_OBJECT (adj), "drawable", drawable);
|
2000-01-16 23:38:38 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (adj), "value_changed",
|
2000-05-23 21:00:40 +08:00
|
|
|
GTK_SIGNAL_FUNC (gimp_int_adjustment_update),
|
2000-01-16 23:38:38 +08:00
|
|
|
>vals.yblock);
|
2000-05-23 21:00:40 +08:00
|
|
|
gtk_signal_connect_object (GTK_OBJECT (adj), "value_changed",
|
|
|
|
GTK_SIGNAL_FUNC (glasstile),
|
|
|
|
(gpointer)drawable);
|
1997-12-09 13:57:33 +08:00
|
|
|
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
gtk_widget_show (table);
|
2000-01-16 23:38:38 +08:00
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
gtk_widget_show (dlg);
|
|
|
|
|
|
|
|
gtk_main ();
|
|
|
|
gdk_flush ();
|
|
|
|
|
|
|
|
return gt_int.run;
|
|
|
|
}
|
|
|
|
|
2000-01-07 06:26:10 +08:00
|
|
|
static void
|
|
|
|
glass_ok_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
1997-12-09 13:57:33 +08:00
|
|
|
{
|
|
|
|
gt_int.run = TRUE;
|
|
|
|
|
2000-01-16 23:38:38 +08:00
|
|
|
gtk_widget_destroy (GTK_WIDGET (data));
|
1997-12-09 13:57:33 +08:00
|
|
|
}
|
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
static GtkWidget *
|
2000-08-22 09:26:57 +08:00
|
|
|
preview_widget (GimpDrawable *drawable)
|
2000-05-23 03:40:06 +08:00
|
|
|
{
|
|
|
|
gint size;
|
|
|
|
GtkWidget *preview;
|
|
|
|
|
|
|
|
preview = gtk_preview_new (GTK_PREVIEW_COLOR);
|
2001-06-15 04:07:38 +08:00
|
|
|
fill_preview_with_thumb (preview, drawable->drawable_id);
|
2000-05-24 02:52:14 +08:00
|
|
|
size = GTK_PREVIEW (preview)->rowstride * GTK_PREVIEW (preview)->buffer_height;
|
2000-05-23 03:40:06 +08:00
|
|
|
preview_bits = g_malloc (size);
|
|
|
|
memcpy (preview_bits, GTK_PREVIEW (preview)->buffer, size);
|
2000-05-23 21:00:40 +08:00
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
return preview;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_preview_with_thumb (GtkWidget *widget,
|
|
|
|
gint32 drawable_ID)
|
|
|
|
{
|
|
|
|
guchar *drawable_data;
|
|
|
|
gint bpp;
|
|
|
|
gint x,y;
|
|
|
|
gint width = PREVIEW_SIZE;
|
|
|
|
gint height = PREVIEW_SIZE;
|
|
|
|
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-23 03:40:06 +08:00
|
|
|
|
|
|
|
bpp = 0; /* Only returned */
|
|
|
|
|
|
|
|
drawable_data =
|
|
|
|
gimp_drawable_get_thumbnail_data (drawable_ID, &width, &height, &bpp);
|
|
|
|
|
2000-05-23 09:03:06 +08:00
|
|
|
if (width < 1 || height < 1)
|
|
|
|
return;
|
2000-05-23 03:40:06 +08:00
|
|
|
|
2000-05-26 07:28:20 +08:00
|
|
|
preview_cache = drawable_data;
|
|
|
|
preview_cache_rowstride = width * bpp;
|
|
|
|
preview_cache_bpp = bpp;
|
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
gtk_preview_size (GTK_PREVIEW (widget), width, height);
|
2000-05-23 09:03:06 +08:00
|
|
|
preview_scale_x = (gdouble)width / (gdouble)gimp_drawable_width (drawable_ID);
|
|
|
|
preview_scale_y = (gdouble)height / (gdouble)gimp_drawable_height (drawable_ID);
|
2000-05-23 03:40:06 +08:00
|
|
|
|
|
|
|
even = g_malloc (width * 3);
|
|
|
|
odd = g_malloc (width * 3);
|
|
|
|
src = drawable_data;
|
|
|
|
|
|
|
|
for (y = 0; y < height; y++)
|
|
|
|
{
|
|
|
|
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_SM) & 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_SM) & 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);
|
2000-05-23 09:03:06 +08:00
|
|
|
|
|
|
|
src += width * bpp;
|
2000-05-23 03:40:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free (even);
|
|
|
|
g_free (odd);
|
2000-05-26 07:28:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
preview_do_row(gint row,
|
|
|
|
gint width,
|
|
|
|
guchar *even,
|
|
|
|
guchar *odd,
|
|
|
|
guchar *src)
|
|
|
|
{
|
|
|
|
gint x;
|
|
|
|
|
|
|
|
guchar *p0 = even;
|
|
|
|
guchar *p1 = odd;
|
|
|
|
|
|
|
|
gdouble r, g, b, a;
|
|
|
|
gdouble c0, c1;
|
|
|
|
|
|
|
|
for (x = 0; x < width; x++)
|
|
|
|
{
|
|
|
|
if (preview_cache_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 (preview_cache_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*preview_cache_bpp+0]) / 255.0;
|
|
|
|
g = b = r;
|
|
|
|
if (preview_cache_bpp == 2)
|
|
|
|
a = ((gdouble)src[x*preview_cache_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 ((row / GIMP_CHECK_SIZE) & 1)
|
|
|
|
{
|
|
|
|
gtk_preview_draw_row (GTK_PREVIEW (preview), (guchar *)odd, 0, row, width);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_preview_draw_row (GTK_PREVIEW (preview), (guchar *)even, 0, row, width);
|
|
|
|
}
|
2000-05-23 03:40:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* - Filter function - I wish all filter functions had a pmode :) */
|
2000-01-07 06:26:10 +08:00
|
|
|
static void
|
2000-08-22 09:26:57 +08:00
|
|
|
glasstile (GimpDrawable *drawable,
|
2000-05-23 03:40:06 +08:00
|
|
|
gboolean preview_mode)
|
1997-12-09 13:57:33 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpPixelRgn srcPR, destPR;
|
1997-12-09 13:57:33 +08:00
|
|
|
gint width, height;
|
|
|
|
gint bytes;
|
2000-05-26 07:28:20 +08:00
|
|
|
guchar *dest, *d;
|
1997-12-09 13:57:33 +08:00
|
|
|
guchar *cur_row;
|
|
|
|
gint row, col, i, iwidth;
|
|
|
|
gint x1, y1, x2, y2;
|
|
|
|
|
2000-05-26 07:28:20 +08:00
|
|
|
guchar *odd = NULL;
|
|
|
|
guchar *even = NULL;
|
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
gint rutbredd, xpixel1, xpixel2;
|
|
|
|
gint ruthojd , ypixel2;
|
|
|
|
gint xhalv, xoffs, xmitt, xplus;
|
2000-05-26 07:28:20 +08:00
|
|
|
gint yhalv, yoffs, ymitt, yplus;
|
|
|
|
gint cbytes;
|
1997-12-09 13:57:33 +08:00
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
if (preview_mode)
|
|
|
|
{
|
|
|
|
width = GTK_PREVIEW (preview)->buffer_width;
|
|
|
|
height = GTK_PREVIEW (preview)->buffer_height;
|
2000-05-26 07:28:20 +08:00
|
|
|
bytes = preview_cache_bpp;
|
2000-05-23 03:40:06 +08:00
|
|
|
|
|
|
|
x1 = y1 = 0;
|
|
|
|
x2 = width;
|
|
|
|
y2 = height;
|
2000-05-26 07:28:20 +08:00
|
|
|
|
|
|
|
even = g_malloc (width * 3);
|
|
|
|
odd = g_malloc (width * 3);
|
2000-05-23 03:40:06 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-06-15 04:07:38 +08:00
|
|
|
gimp_drawable_mask_bounds (drawable->drawable_id, &x1, &y1, &x2, &y2);
|
2000-05-23 03:40:06 +08:00
|
|
|
width = drawable->width;
|
|
|
|
height = drawable->height;
|
|
|
|
bytes = drawable->bpp;
|
|
|
|
}
|
1997-12-09 13:57:33 +08:00
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
cur_row = g_new (guchar, width * bytes);
|
|
|
|
dest = g_new (guchar, width * bytes);
|
1997-12-09 13:57:33 +08:00
|
|
|
|
|
|
|
/* initialize the pixel regions */
|
2000-05-23 03:40:06 +08:00
|
|
|
if (preview_mode)
|
|
|
|
{
|
2000-05-23 09:03:06 +08:00
|
|
|
rutbredd = gtvals.xblock * preview_scale_x;
|
|
|
|
ruthojd = gtvals.yblock * preview_scale_y;
|
2000-05-23 03:40:06 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_pixel_rgn_init (&srcPR, drawable, 0, 0, width, height, FALSE, FALSE);
|
|
|
|
gimp_pixel_rgn_init (&destPR, drawable, 0, 0, width, height, TRUE, TRUE);
|
1997-12-09 13:57:33 +08:00
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
rutbredd = gtvals.xblock;
|
|
|
|
ruthojd = gtvals.yblock;
|
|
|
|
}
|
1997-12-09 13:57:33 +08:00
|
|
|
|
|
|
|
xhalv = rutbredd / 2;
|
2000-05-23 03:40:06 +08:00
|
|
|
yhalv = ruthojd / 2;
|
1997-12-09 13:57:33 +08:00
|
|
|
cbytes = bytes;
|
2000-05-23 03:40:06 +08:00
|
|
|
|
|
|
|
if (cbytes % 2 == 0)
|
|
|
|
cbytes--;
|
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
iwidth = width - x1;
|
|
|
|
xplus = rutbredd % 2;
|
2000-05-23 03:40:06 +08:00
|
|
|
yplus = ruthojd % 2;
|
1997-12-09 13:57:33 +08:00
|
|
|
|
|
|
|
ymitt = y1;
|
|
|
|
yoffs = 0;
|
2000-05-23 03:40:06 +08:00
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
/* Loop through the rows */
|
|
|
|
for (row = y1; row < y2; row++)
|
|
|
|
{
|
|
|
|
d = dest;
|
2000-05-23 03:40:06 +08:00
|
|
|
ypixel2 = ymitt + yoffs * 2;
|
|
|
|
|
2000-05-26 07:28:20 +08:00
|
|
|
if(ypixel2 < 0)
|
|
|
|
ypixel2 = 0;
|
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
if (preview_mode)
|
|
|
|
{
|
|
|
|
if (ypixel2 < height)
|
2000-05-24 02:52:14 +08:00
|
|
|
memcpy (cur_row,
|
2000-05-26 07:28:20 +08:00
|
|
|
preview_cache + (ypixel2 * preview_cache_rowstride),
|
|
|
|
preview_cache_rowstride);
|
2000-05-23 03:40:06 +08:00
|
|
|
else
|
2000-05-24 02:52:14 +08:00
|
|
|
memcpy (cur_row,
|
2000-05-26 07:28:20 +08:00
|
|
|
preview_cache + ((y2 - 1) * preview_cache_rowstride),
|
|
|
|
preview_cache_rowstride);
|
2000-05-23 03:40:06 +08:00
|
|
|
}
|
1997-12-09 13:57:33 +08:00
|
|
|
else
|
2000-05-23 03:40:06 +08:00
|
|
|
{
|
|
|
|
if (ypixel2 < height)
|
|
|
|
gimp_pixel_rgn_get_row (&srcPR, cur_row, x1, ypixel2, iwidth);
|
|
|
|
else
|
|
|
|
gimp_pixel_rgn_get_row (&srcPR, cur_row, x1, y2 - 1, iwidth);
|
|
|
|
}
|
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
yoffs++;
|
2000-05-23 03:40:06 +08:00
|
|
|
|
|
|
|
if (yoffs == yhalv)
|
|
|
|
{
|
|
|
|
ymitt += ruthojd;
|
|
|
|
yoffs =- yhalv;
|
|
|
|
yoffs -= yplus;
|
|
|
|
}
|
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
xmitt = 0;
|
|
|
|
xoffs = 0;
|
2000-05-23 03:40:06 +08:00
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
for (col = 0; col < (x2 - x1); col++) /* one pixel */
|
|
|
|
{
|
|
|
|
xpixel1 = (xmitt + xoffs) * bytes;
|
|
|
|
xpixel2 = (xmitt + xoffs * 2) * bytes;
|
2000-05-23 03:40:06 +08:00
|
|
|
|
|
|
|
if (xpixel2 < ((x2 - x1) * bytes))
|
|
|
|
{
|
2000-05-26 07:28:20 +08:00
|
|
|
if(xpixel2 < 0)
|
|
|
|
xpixel2 = 0;
|
|
|
|
for (i = 0; i < bytes; i++)
|
2000-05-23 03:40:06 +08:00
|
|
|
d[xpixel1 + i] = cur_row[xpixel2 + i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-05-26 07:28:20 +08:00
|
|
|
for (i = 0; i < bytes; i++)
|
2000-05-23 03:40:06 +08:00
|
|
|
d[xpixel1 + i]=cur_row[xpixel1 + i];
|
|
|
|
}
|
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
xoffs++;
|
2000-05-23 03:40:06 +08:00
|
|
|
|
|
|
|
if (xoffs == xhalv)
|
|
|
|
{
|
|
|
|
xmitt += rutbredd;
|
|
|
|
xoffs =- xhalv;
|
|
|
|
xoffs -= xplus;
|
|
|
|
}
|
1997-12-09 13:57:33 +08:00
|
|
|
}
|
2000-05-23 03:40:06 +08:00
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
/* Store the dest */
|
2000-05-23 03:40:06 +08:00
|
|
|
if (preview_mode)
|
2000-05-26 07:28:20 +08:00
|
|
|
preview_do_row(row,width,even,odd,dest);
|
2000-05-23 03:40:06 +08:00
|
|
|
else
|
|
|
|
gimp_pixel_rgn_set_row (&destPR, dest, x1, row, iwidth);
|
1997-12-09 13:57:33 +08:00
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
if ((row % 5) == 0 && !preview_mode)
|
|
|
|
gimp_progress_update ((double) row / (double) (y2 - y1));
|
1997-12-09 13:57:33 +08:00
|
|
|
}
|
|
|
|
|
2000-05-26 07:28:20 +08:00
|
|
|
|
|
|
|
if(even)
|
|
|
|
g_free(even);
|
|
|
|
|
|
|
|
if(odd)
|
|
|
|
g_free(odd);
|
|
|
|
|
|
|
|
|
1997-12-09 13:57:33 +08:00
|
|
|
/* Update region */
|
2000-05-23 03:40:06 +08:00
|
|
|
if (preview_mode)
|
|
|
|
{
|
|
|
|
gtk_widget_queue_draw (preview);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_drawable_flush (drawable);
|
2001-06-15 04:07:38 +08:00
|
|
|
gimp_drawable_merge_shadow (drawable->drawable_id, TRUE);
|
|
|
|
gimp_drawable_update (drawable->drawable_id, x1, y1, (x2 - x1), (y2 - y1));
|
2000-05-23 03:40:06 +08:00
|
|
|
}
|
1997-12-09 13:57:33 +08:00
|
|
|
|
2000-05-23 03:40:06 +08:00
|
|
|
g_free (cur_row);
|
|
|
|
g_free (dest);
|
1997-12-09 13:57:33 +08:00
|
|
|
}
|
2000-05-24 02:52:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|