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
|
|
|
*/
|
1999-07-27 08:14:14 +08:00
|
|
|
#include "config.h"
|
2000-03-26 02:17:01 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <stdlib.h>
|
2000-03-26 02:17:01 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "appenv.h"
|
|
|
|
#include "boundary.h"
|
1999-01-11 07:36:29 +08:00
|
|
|
#include "cursorutil.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "draw_core.h"
|
|
|
|
#include "drawable.h"
|
|
|
|
#include "edit_selection.h"
|
|
|
|
#include "fuzzy_select.h"
|
|
|
|
#include "gimage_mask.h"
|
|
|
|
#include "gimprc.h"
|
2000-03-26 02:17:01 +08:00
|
|
|
#include "gimpui.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "gdisplay.h"
|
|
|
|
#include "rect_select.h"
|
1999-04-13 01:55:06 +08:00
|
|
|
#include "selection_options.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-08-12 01:35:34 +08:00
|
|
|
#include "tile.h" /* ick. */
|
1998-07-08 14:41:58 +08:00
|
|
|
|
2000-03-26 02:17:01 +08:00
|
|
|
#include "libgimp/gimpmath.h"
|
1999-07-07 02:13:59 +08:00
|
|
|
#include "libgimp/gimpintl.h"
|
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
/* the fuzzy selection structures */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-06-22 06:12:07 +08:00
|
|
|
typedef struct _FuzzySelect FuzzySelect;
|
|
|
|
struct _FuzzySelect
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-02 07:22:43 +08:00
|
|
|
DrawCore *core; /* Core select object */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-03-02 07:22:43 +08:00
|
|
|
gint op; /* selection operation (ADD, SUB, etc) */
|
1999-05-05 17:10:35 +08:00
|
|
|
|
2000-03-02 07:22:43 +08:00
|
|
|
gint current_x; /* these values are updated on every motion event */
|
|
|
|
gint current_y; /* (enables immediate cursor updating on modifier
|
|
|
|
* key events). */
|
|
|
|
|
|
|
|
gint x, y; /* Point from which to execute seed fill */
|
|
|
|
gint first_x; /* */
|
|
|
|
gint first_y; /* variables to keep track of sensitivity */
|
|
|
|
gdouble first_threshold; /* initial value of threshold slider */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
1999-04-13 01:55:06 +08:00
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
/* the fuzzy selection tool options */
|
2000-04-20 23:57:13 +08:00
|
|
|
static SelectionOptions *fuzzy_options = NULL;
|
1999-04-09 06:25:54 +08:00
|
|
|
|
|
|
|
/* XSegments which make up the fuzzy selection boundary */
|
2000-03-26 02:17:01 +08:00
|
|
|
static GdkSegment *segs = NULL;
|
|
|
|
static gint num_segs = 0;
|
1999-04-19 05:22:41 +08:00
|
|
|
|
1999-06-22 06:12:07 +08:00
|
|
|
Channel * fuzzy_mask = NULL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
/* fuzzy select action functions */
|
1999-04-13 01:55:06 +08:00
|
|
|
static void fuzzy_select_button_press (Tool *, GdkEventButton *, gpointer);
|
|
|
|
static void fuzzy_select_button_release (Tool *, GdkEventButton *, gpointer);
|
|
|
|
static void fuzzy_select_motion (Tool *, GdkEventMotion *, gpointer);
|
1999-06-22 06:12:07 +08:00
|
|
|
static void fuzzy_select_control (Tool *, ToolAction, gpointer);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-07-03 01:40:10 +08:00
|
|
|
static void fuzzy_select_draw (Tool *);
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* fuzzy select action functions */
|
1999-04-13 01:55:06 +08:00
|
|
|
static GdkSegment * fuzzy_select_calculate (Tool *, void *, int *);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/*************************************/
|
|
|
|
/* Fuzzy selection apparatus */
|
|
|
|
|
2000-03-26 02:17:01 +08:00
|
|
|
static gint
|
|
|
|
is_pixel_sufficiently_different (guchar *col1,
|
|
|
|
guchar *col2,
|
|
|
|
gboolean antialias,
|
|
|
|
gint threshold,
|
|
|
|
gint bytes,
|
|
|
|
gboolean has_alpha)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
gint diff;
|
|
|
|
gint max;
|
|
|
|
gint b;
|
|
|
|
gint alpha;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
max = 0;
|
|
|
|
alpha = (has_alpha) ? bytes - 1 : bytes;
|
|
|
|
|
|
|
|
/* if there is an alpha channel, never select transparent regions */
|
|
|
|
if (has_alpha && col2[alpha] == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (b = 0; b < bytes; b++)
|
|
|
|
{
|
|
|
|
diff = col1[b] - col2[b];
|
|
|
|
diff = abs (diff);
|
|
|
|
if (diff > max)
|
|
|
|
max = diff;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (antialias)
|
|
|
|
{
|
|
|
|
float aa;
|
|
|
|
|
|
|
|
aa = 1.5 - ((float) max / threshold);
|
|
|
|
if (aa <= 0)
|
|
|
|
return 0;
|
|
|
|
else if (aa < 0.5)
|
|
|
|
return (unsigned char) (aa * 512);
|
|
|
|
else
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (max > threshold)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-03-26 02:17:01 +08:00
|
|
|
ref_tiles (TileManager *src,
|
|
|
|
TileManager *mask,
|
|
|
|
Tile **s_tile,
|
|
|
|
Tile **m_tile,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
guchar **s,
|
|
|
|
guchar **m)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
if (*s_tile != NULL)
|
1998-07-10 10:43:12 +08:00
|
|
|
tile_release (*s_tile, FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
if (*m_tile != NULL)
|
1998-07-10 10:43:12 +08:00
|
|
|
tile_release (*m_tile, TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-08-16 03:17:36 +08:00
|
|
|
*s_tile = tile_manager_get_tile (src, x, y, TRUE, FALSE);
|
|
|
|
*m_tile = tile_manager_get_tile (mask, x, y, TRUE, TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-08-12 01:35:34 +08:00
|
|
|
*s = tile_data_pointer (*s_tile, x % TILE_WIDTH, y % TILE_HEIGHT);
|
|
|
|
*m = tile_data_pointer (*m_tile, x % TILE_WIDTH, y % TILE_HEIGHT);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-03-26 02:17:01 +08:00
|
|
|
find_contiguous_segment (guchar *col,
|
|
|
|
PixelRegion *src,
|
|
|
|
PixelRegion *mask,
|
|
|
|
gint width,
|
|
|
|
gint bytes,
|
|
|
|
gboolean has_alpha,
|
|
|
|
gboolean antialias,
|
|
|
|
gint threshold,
|
|
|
|
gint initial,
|
|
|
|
gint *start,
|
|
|
|
gint *end)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
guchar *s;
|
|
|
|
guchar *m;
|
|
|
|
guchar diff;
|
|
|
|
Tile *s_tile = NULL;
|
|
|
|
Tile *m_tile = NULL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
ref_tiles (src->tiles, mask->tiles, &s_tile, &m_tile, src->x, src->y, &s, &m);
|
|
|
|
|
|
|
|
/* check the starting pixel */
|
|
|
|
if (! (diff = is_pixel_sufficiently_different (col, s, antialias,
|
|
|
|
threshold, bytes, has_alpha)))
|
|
|
|
{
|
1998-07-10 10:43:12 +08:00
|
|
|
tile_release (s_tile, FALSE);
|
|
|
|
tile_release (m_tile, TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*m-- = diff;
|
|
|
|
s -= bytes;
|
|
|
|
*start = initial - 1;
|
|
|
|
|
|
|
|
while (*start >= 0 && diff)
|
|
|
|
{
|
|
|
|
if (! ((*start + 1) % TILE_WIDTH))
|
|
|
|
ref_tiles (src->tiles, mask->tiles, &s_tile, &m_tile, *start, src->y, &s, &m);
|
|
|
|
|
|
|
|
diff = is_pixel_sufficiently_different (col, s, antialias,
|
|
|
|
threshold, bytes, has_alpha);
|
|
|
|
if ((*m-- = diff))
|
|
|
|
{
|
|
|
|
s -= bytes;
|
|
|
|
(*start)--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
diff = 1;
|
|
|
|
*end = initial + 1;
|
|
|
|
if (*end % TILE_WIDTH && *end < width)
|
|
|
|
ref_tiles (src->tiles, mask->tiles, &s_tile, &m_tile, *end, src->y, &s, &m);
|
|
|
|
|
|
|
|
while (*end < width && diff)
|
|
|
|
{
|
|
|
|
if (! (*end % TILE_WIDTH))
|
|
|
|
ref_tiles (src->tiles, mask->tiles, &s_tile, &m_tile, *end, src->y, &s, &m);
|
|
|
|
|
|
|
|
diff = is_pixel_sufficiently_different (col, s, antialias,
|
|
|
|
threshold, bytes, has_alpha);
|
|
|
|
if ((*m++ = diff))
|
|
|
|
{
|
|
|
|
s += bytes;
|
|
|
|
(*end)++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-07-10 10:43:12 +08:00
|
|
|
tile_release (s_tile, FALSE);
|
|
|
|
tile_release (m_tile, TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-03-26 02:17:01 +08:00
|
|
|
find_contiguous_region_helper (PixelRegion *mask,
|
|
|
|
PixelRegion *src,
|
|
|
|
gboolean has_alpha,
|
|
|
|
gboolean antialias,
|
|
|
|
gint threshold,
|
|
|
|
gboolean indexed,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
guchar *col)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
gint start, end, i;
|
|
|
|
gint val;
|
|
|
|
gint bytes;
|
1998-05-02 15:44:58 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
Tile *tile;
|
|
|
|
|
|
|
|
if (threshold == 0) threshold = 1;
|
|
|
|
if (x < 0 || x >= src->w) return;
|
|
|
|
if (y < 0 || y >= src->h) return;
|
|
|
|
|
1998-08-16 03:17:36 +08:00
|
|
|
tile = tile_manager_get_tile (mask->tiles, x, y, TRUE, FALSE);
|
2000-03-26 02:17:01 +08:00
|
|
|
val = *(guchar *)(tile_data_pointer (tile,
|
|
|
|
x % TILE_WIDTH, y % TILE_HEIGHT));
|
1998-07-10 10:43:12 +08:00
|
|
|
tile_release (tile, FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
if (val != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
src->x = x;
|
|
|
|
src->y = y;
|
|
|
|
|
1998-05-02 15:44:58 +08:00
|
|
|
bytes = src->bytes;
|
|
|
|
if(indexed)
|
|
|
|
{
|
|
|
|
bytes = has_alpha ? 4 : 3;
|
|
|
|
}
|
|
|
|
|
2000-03-26 02:17:01 +08:00
|
|
|
if (! find_contiguous_segment (col, src, mask, src->w,
|
|
|
|
src->bytes, has_alpha,
|
|
|
|
antialias, threshold, x, &start, &end))
|
1997-11-25 06:05:25 +08:00
|
|
|
return;
|
|
|
|
|
1998-01-04 08:43:51 +08:00
|
|
|
for (i = start + 1; i < end; i++)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-07-07 02:13:59 +08:00
|
|
|
find_contiguous_region_helper (mask, src, has_alpha, antialias,
|
|
|
|
threshold, indexed, i, y - 1, col);
|
|
|
|
find_contiguous_region_helper (mask, src, has_alpha, antialias,
|
|
|
|
threshold, indexed, i, y + 1, col);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Channel *
|
1999-07-07 02:13:59 +08:00
|
|
|
find_contiguous_region (GImage *gimage,
|
|
|
|
GimpDrawable *drawable,
|
2000-03-26 02:17:01 +08:00
|
|
|
gboolean antialias,
|
|
|
|
gint threshold,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gboolean sample_merged)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
PixelRegion srcPR, maskPR;
|
2000-03-26 02:17:01 +08:00
|
|
|
Channel *mask;
|
|
|
|
guchar *start;
|
|
|
|
gboolean has_alpha;
|
|
|
|
gboolean indexed;
|
|
|
|
gint type;
|
|
|
|
gint bytes;
|
|
|
|
Tile *tile;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
if (sample_merged)
|
|
|
|
{
|
|
|
|
pixel_region_init (&srcPR, gimage_composite (gimage), 0, 0,
|
|
|
|
gimage->width, gimage->height, FALSE);
|
|
|
|
type = gimage_composite_type (gimage);
|
|
|
|
has_alpha = (type == RGBA_GIMAGE ||
|
|
|
|
type == GRAYA_GIMAGE ||
|
|
|
|
type == INDEXEDA_GIMAGE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-01-22 15:02:57 +08:00
|
|
|
pixel_region_init (&srcPR, drawable_data (drawable), 0, 0,
|
2000-03-26 02:17:01 +08:00
|
|
|
drawable_width (drawable), drawable_height (drawable),
|
|
|
|
FALSE);
|
1998-01-22 15:02:57 +08:00
|
|
|
has_alpha = drawable_has_alpha (drawable);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
1998-05-02 15:44:58 +08:00
|
|
|
indexed = drawable_indexed (drawable);
|
|
|
|
bytes = drawable_bytes (drawable);
|
|
|
|
|
2000-03-26 02:17:01 +08:00
|
|
|
if (indexed)
|
1998-05-02 15:44:58 +08:00
|
|
|
{
|
|
|
|
bytes = has_alpha ? 4 : 3;
|
|
|
|
}
|
1998-06-29 08:24:44 +08:00
|
|
|
mask = channel_new_mask (gimage, srcPR.w, srcPR.h);
|
1999-07-07 02:13:59 +08:00
|
|
|
pixel_region_init (&maskPR, drawable_data (GIMP_DRAWABLE(mask)), 0, 0,
|
|
|
|
drawable_width (GIMP_DRAWABLE(mask)),
|
|
|
|
drawable_height (GIMP_DRAWABLE(mask)),
|
|
|
|
TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-08-16 03:17:36 +08:00
|
|
|
tile = tile_manager_get_tile (srcPR.tiles, x, y, TRUE, FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
if (tile)
|
|
|
|
{
|
1998-08-12 01:35:34 +08:00
|
|
|
start = tile_data_pointer (tile, x%TILE_WIDTH, y%TILE_HEIGHT);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-07-07 02:13:59 +08:00
|
|
|
find_contiguous_region_helper (&maskPR, &srcPR, has_alpha, antialias,
|
|
|
|
threshold, bytes, x, y, start);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-07-10 10:43:12 +08:00
|
|
|
tile_release (tile, FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
1999-04-19 05:22:41 +08:00
|
|
|
void
|
1999-07-07 02:13:59 +08:00
|
|
|
fuzzy_select (GImage *gimage,
|
|
|
|
GimpDrawable *drawable,
|
2000-03-26 02:17:01 +08:00
|
|
|
gint op,
|
|
|
|
gboolean feather,
|
|
|
|
gdouble feather_radius)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
gint off_x, off_y;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* if applicable, replace the current selection */
|
|
|
|
if (op == REPLACE)
|
|
|
|
gimage_mask_clear (gimage);
|
|
|
|
else
|
|
|
|
gimage_mask_undo (gimage);
|
|
|
|
|
2000-03-09 19:58:03 +08:00
|
|
|
if (drawable) /* NULL if sample_merged is active */
|
|
|
|
drawable_offsets (drawable, &off_x, &off_y);
|
|
|
|
else
|
|
|
|
off_x = off_y = 0;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
if (feather)
|
|
|
|
channel_feather (fuzzy_mask, gimage_get_mask (gimage),
|
1999-05-07 07:10:29 +08:00
|
|
|
feather_radius,
|
|
|
|
feather_radius,
|
|
|
|
op, off_x, off_y);
|
1997-11-25 06:05:25 +08:00
|
|
|
else
|
|
|
|
channel_combine_mask (gimage_get_mask (gimage),
|
|
|
|
fuzzy_mask, op, off_x, off_y);
|
|
|
|
|
|
|
|
/* free the fuzzy region struct */
|
|
|
|
channel_delete (fuzzy_mask);
|
|
|
|
fuzzy_mask = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fuzzy select action functions */
|
|
|
|
|
|
|
|
static void
|
1999-07-07 02:13:59 +08:00
|
|
|
fuzzy_select_button_press (Tool *tool,
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
gpointer gdisp_ptr)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
GDisplay *gdisp;
|
1997-11-25 06:05:25 +08:00
|
|
|
FuzzySelect *fuzzy_sel;
|
|
|
|
|
|
|
|
gdisp = (GDisplay *) gdisp_ptr;
|
|
|
|
fuzzy_sel = (FuzzySelect *) tool->private;
|
|
|
|
|
|
|
|
fuzzy_sel->x = bevent->x;
|
|
|
|
fuzzy_sel->y = bevent->y;
|
2000-01-23 06:26:20 +08:00
|
|
|
fuzzy_sel->first_x = fuzzy_sel->x;
|
|
|
|
fuzzy_sel->first_y = fuzzy_sel->y;
|
|
|
|
fuzzy_sel->first_threshold = fuzzy_options->threshold;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
gdk_pointer_grab (gdisp->canvas->window, FALSE,
|
1999-06-26 19:16:47 +08:00
|
|
|
GDK_POINTER_MOTION_HINT_MASK |
|
|
|
|
GDK_BUTTON1_MOTION_MASK |
|
|
|
|
GDK_BUTTON_RELEASE_MASK,
|
1997-11-25 06:05:25 +08:00
|
|
|
NULL, NULL, bevent->time);
|
|
|
|
|
|
|
|
tool->state = ACTIVE;
|
1999-06-26 19:16:47 +08:00
|
|
|
tool->gdisp_ptr = gdisp;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-05 17:10:35 +08:00
|
|
|
if (fuzzy_sel->op == SELECTION_MOVE_MASK)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
init_edit_selection (tool, gdisp_ptr, bevent, MaskTranslate);
|
|
|
|
return;
|
|
|
|
}
|
1999-05-05 17:10:35 +08:00
|
|
|
else if (fuzzy_sel->op == SELECTION_MOVE)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-05-05 17:10:35 +08:00
|
|
|
init_edit_selection (tool, gdisp_ptr, bevent, MaskToLayerTranslate);
|
|
|
|
return;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* calculate the region boundary */
|
|
|
|
segs = fuzzy_select_calculate (tool, gdisp_ptr, &num_segs);
|
|
|
|
|
|
|
|
draw_core_start (fuzzy_sel->core,
|
|
|
|
gdisp->canvas->window,
|
|
|
|
tool);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1999-07-07 02:13:59 +08:00
|
|
|
fuzzy_select_button_release (Tool *tool,
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
gpointer gdisp_ptr)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
FuzzySelect *fuzzy_sel;
|
|
|
|
GDisplay *gdisp;
|
1998-01-22 15:02:57 +08:00
|
|
|
GimpDrawable *drawable;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
gdisp = (GDisplay *) gdisp_ptr;
|
|
|
|
fuzzy_sel = (FuzzySelect *) tool->private;
|
|
|
|
|
|
|
|
gdk_pointer_ungrab (bevent->time);
|
|
|
|
gdk_flush ();
|
|
|
|
|
|
|
|
draw_core_stop (fuzzy_sel->core, tool);
|
|
|
|
tool->state = INACTIVE;
|
|
|
|
|
|
|
|
/* First take care of the case where the user "cancels" the action */
|
|
|
|
if (! (bevent->state & GDK_BUTTON3_MASK))
|
|
|
|
{
|
2000-04-20 23:57:13 +08:00
|
|
|
drawable = (fuzzy_options->sample_merged ?
|
1999-06-26 19:16:47 +08:00
|
|
|
NULL : gimage_active_drawable (gdisp->gimage));
|
|
|
|
|
1998-01-22 15:02:57 +08:00
|
|
|
fuzzy_select (gdisp->gimage, drawable, fuzzy_sel->op,
|
2000-04-20 23:57:13 +08:00
|
|
|
fuzzy_options->feather,
|
|
|
|
fuzzy_options->feather_radius);
|
1997-11-25 06:05:25 +08:00
|
|
|
gdisplays_flush ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the segment array is allocated, free it */
|
|
|
|
if (segs)
|
|
|
|
g_free (segs);
|
|
|
|
segs = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1999-07-07 02:13:59 +08:00
|
|
|
fuzzy_select_motion (Tool *tool,
|
|
|
|
GdkEventMotion *mevent,
|
|
|
|
gpointer gdisp_ptr)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
FuzzySelect *fuzzy_sel;
|
|
|
|
GdkSegment *new_segs;
|
|
|
|
gint num_new_segs;
|
|
|
|
gint diff_x, diff_y;
|
|
|
|
gdouble diff;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-02-19 21:19:08 +08:00
|
|
|
static guint last_time = 0;
|
|
|
|
|
2000-03-02 07:22:43 +08:00
|
|
|
fuzzy_sel = (FuzzySelect *) tool->private;
|
|
|
|
|
|
|
|
/* needed for immediate cursor update on modifier event */
|
|
|
|
fuzzy_sel->current_x = mevent->x;
|
|
|
|
fuzzy_sel->current_y = mevent->y;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
if (tool->state != ACTIVE)
|
|
|
|
return;
|
|
|
|
|
2000-02-19 21:19:08 +08:00
|
|
|
/* don't let the events come in too fast, ignore below a delay of 100 ms */
|
|
|
|
if (ABS (mevent->time - last_time) < 100)
|
|
|
|
return;
|
|
|
|
|
|
|
|
last_time = mevent->time;
|
|
|
|
|
2000-01-23 06:26:20 +08:00
|
|
|
diff_x = mevent->x - fuzzy_sel->first_x;
|
|
|
|
diff_y = mevent->y - fuzzy_sel->first_y;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-23 06:26:20 +08:00
|
|
|
diff = ((ABS (diff_x) > ABS (diff_y)) ? diff_x : diff_y) / 2.0;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-07-07 02:13:59 +08:00
|
|
|
gtk_adjustment_set_value (GTK_ADJUSTMENT (fuzzy_options->threshold_w),
|
2000-01-23 06:26:20 +08:00
|
|
|
fuzzy_sel->first_threshold + diff);
|
1999-07-07 02:13:59 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* calculate the new fuzzy boundary */
|
|
|
|
new_segs = fuzzy_select_calculate (tool, gdisp_ptr, &num_new_segs);
|
|
|
|
|
|
|
|
/* stop the current boundary */
|
|
|
|
draw_core_pause (fuzzy_sel->core, tool);
|
|
|
|
|
|
|
|
/* make sure the XSegment array is freed before we assign the new one */
|
|
|
|
if (segs)
|
|
|
|
g_free (segs);
|
|
|
|
segs = new_segs;
|
|
|
|
num_segs = num_new_segs;
|
|
|
|
|
|
|
|
/* start the new boundary */
|
|
|
|
draw_core_resume (fuzzy_sel->core, tool);
|
|
|
|
}
|
|
|
|
|
1999-07-07 02:13:59 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static GdkSegment *
|
1999-07-07 02:13:59 +08:00
|
|
|
fuzzy_select_calculate (Tool *tool,
|
|
|
|
void *gdisp_ptr,
|
2000-03-26 02:17:01 +08:00
|
|
|
gint *nsegs)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
PixelRegion maskPR;
|
|
|
|
FuzzySelect *fuzzy_sel;
|
|
|
|
GDisplay *gdisp;
|
|
|
|
Channel *new;
|
|
|
|
GdkSegment *segs;
|
|
|
|
BoundSeg *bsegs;
|
1998-01-22 15:02:57 +08:00
|
|
|
GimpDrawable *drawable;
|
2000-03-26 02:17:01 +08:00
|
|
|
gint i;
|
|
|
|
gint x, y;
|
|
|
|
gboolean use_offsets;
|
1999-01-11 07:36:29 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
fuzzy_sel = (FuzzySelect *) tool->private;
|
|
|
|
gdisp = (GDisplay *) gdisp_ptr;
|
1998-01-22 15:02:57 +08:00
|
|
|
drawable = gimage_active_drawable (gdisp->gimage);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-03-26 02:17:01 +08:00
|
|
|
gimp_add_busy_cursors ();
|
|
|
|
|
2000-04-20 23:57:13 +08:00
|
|
|
use_offsets = fuzzy_options->sample_merged ? FALSE : TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
gdisplay_untransform_coords (gdisp, fuzzy_sel->x,
|
|
|
|
fuzzy_sel->y, &x, &y, FALSE, use_offsets);
|
|
|
|
|
1999-07-07 02:13:59 +08:00
|
|
|
new = find_contiguous_region (gdisp->gimage, drawable,
|
2000-04-20 23:57:13 +08:00
|
|
|
fuzzy_options->antialias,
|
1999-07-07 02:13:59 +08:00
|
|
|
fuzzy_options->threshold, x, y,
|
2000-04-20 23:57:13 +08:00
|
|
|
fuzzy_options->sample_merged);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
if (fuzzy_mask)
|
|
|
|
channel_delete (fuzzy_mask);
|
1998-02-14 08:44:47 +08:00
|
|
|
fuzzy_mask = channel_ref (new);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* calculate and allocate a new XSegment array which represents the boundary
|
|
|
|
* of the color-contiguous region
|
|
|
|
*/
|
2000-04-20 23:57:13 +08:00
|
|
|
pixel_region_init (&maskPR, drawable_data (GIMP_DRAWABLE (fuzzy_mask)), 0, 0,
|
|
|
|
drawable_width (GIMP_DRAWABLE (fuzzy_mask)),
|
|
|
|
drawable_height (GIMP_DRAWABLE (fuzzy_mask)),
|
1999-07-07 02:13:59 +08:00
|
|
|
FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
bsegs = find_mask_boundary (&maskPR, nsegs, WithinBounds,
|
|
|
|
0, 0,
|
2000-04-20 23:57:13 +08:00
|
|
|
drawable_width (GIMP_DRAWABLE (fuzzy_mask)),
|
|
|
|
drawable_height (GIMP_DRAWABLE (fuzzy_mask)));
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-03-26 02:17:01 +08:00
|
|
|
segs = g_new (GdkSegment, *nsegs);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
for (i = 0; i < *nsegs; i++)
|
|
|
|
{
|
|
|
|
gdisplay_transform_coords (gdisp, bsegs[i].x1, bsegs[i].y1, &x, &y, use_offsets);
|
|
|
|
segs[i].x1 = x; segs[i].y1 = y;
|
|
|
|
gdisplay_transform_coords (gdisp, bsegs[i].x2, bsegs[i].y2, &x, &y, use_offsets);
|
|
|
|
segs[i].x2 = x; segs[i].y2 = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free boundary segments */
|
|
|
|
g_free (bsegs);
|
|
|
|
|
1999-07-07 02:13:59 +08:00
|
|
|
gimp_remove_busy_cursors (NULL);
|
1999-01-11 07:36:29 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
return segs;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fuzzy_select_draw (Tool *tool)
|
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
FuzzySelect *fuzzy_sel;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
fuzzy_sel = (FuzzySelect *) tool->private;
|
|
|
|
|
|
|
|
if (segs)
|
|
|
|
gdk_draw_segments (fuzzy_sel->core->win, fuzzy_sel->core->gc, segs, num_segs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1999-06-22 06:12:07 +08:00
|
|
|
fuzzy_select_control (Tool *tool,
|
|
|
|
ToolAction action,
|
|
|
|
gpointer gdisp_ptr)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
FuzzySelect *fuzzy_sel;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
fuzzy_sel = (FuzzySelect *) tool->private;
|
|
|
|
|
|
|
|
switch (action)
|
|
|
|
{
|
|
|
|
case PAUSE :
|
|
|
|
draw_core_pause (fuzzy_sel->core, tool);
|
|
|
|
break;
|
1999-06-22 06:12:07 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
case RESUME :
|
|
|
|
draw_core_resume (fuzzy_sel->core, tool);
|
|
|
|
break;
|
1999-06-22 06:12:07 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
case HALT :
|
|
|
|
draw_core_stop (fuzzy_sel->core, tool);
|
|
|
|
break;
|
1999-06-22 06:12:07 +08:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
static void
|
1999-04-13 01:55:06 +08:00
|
|
|
fuzzy_select_options_reset (void)
|
1999-04-09 06:25:54 +08:00
|
|
|
{
|
2000-04-20 23:57:13 +08:00
|
|
|
selection_options_reset (fuzzy_options);
|
1999-04-09 06:25:54 +08:00
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
Tool *
|
2000-03-26 02:17:01 +08:00
|
|
|
tools_new_fuzzy_select (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
Tool *tool;
|
|
|
|
FuzzySelect *private;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* The tool options */
|
1999-04-13 01:55:06 +08:00
|
|
|
if (! fuzzy_options)
|
|
|
|
{
|
2000-04-20 23:57:13 +08:00
|
|
|
fuzzy_options = selection_options_new (FUZZY_SELECT,
|
|
|
|
fuzzy_select_options_reset);
|
1999-04-13 01:55:06 +08:00
|
|
|
tools_register (FUZZY_SELECT, (ToolOptions *) fuzzy_options);
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-07-03 01:40:10 +08:00
|
|
|
tool = tools_new_tool (FUZZY_SELECT);
|
|
|
|
private = g_new (FuzzySelect, 1);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
private->core = draw_core_new (fuzzy_select_draw);
|
|
|
|
|
1999-07-03 01:40:10 +08:00
|
|
|
tool->scroll_lock = TRUE; /* Disallow scrolling */
|
1999-04-09 06:25:54 +08:00
|
|
|
|
1999-07-03 01:40:10 +08:00
|
|
|
tool->private = (void *) private;
|
1999-06-26 19:16:47 +08:00
|
|
|
|
1999-07-03 01:40:10 +08:00
|
|
|
tool->button_press_func = fuzzy_select_button_press;
|
1997-11-25 06:05:25 +08:00
|
|
|
tool->button_release_func = fuzzy_select_button_release;
|
1999-07-03 01:40:10 +08:00
|
|
|
tool->motion_func = fuzzy_select_motion;
|
2000-03-02 07:22:43 +08:00
|
|
|
tool->modifier_key_func = rect_select_modifier_update;
|
1999-07-03 01:40:10 +08:00
|
|
|
tool->cursor_update_func = rect_select_cursor_update;
|
2000-01-20 03:06:13 +08:00
|
|
|
tool->oper_update_func = rect_select_oper_update;
|
1999-07-03 01:40:10 +08:00
|
|
|
tool->control_func = fuzzy_select_control;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
return tool;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tools_free_fuzzy_select (Tool *tool)
|
|
|
|
{
|
2000-03-26 02:17:01 +08:00
|
|
|
FuzzySelect *fuzzy_sel;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
fuzzy_sel = (FuzzySelect *) tool->private;
|
|
|
|
draw_core_free (fuzzy_sel->core);
|
|
|
|
g_free (fuzzy_sel);
|
|
|
|
}
|