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
*/
# include <stdlib.h>
# include <string.h>
# include <math.h>
# include "appenv.h"
# include "boundary.h"
# include "by_color_select.h"
# include "colormaps.h"
# include "drawable.h"
# include "draw_core.h"
# include "general.h"
# include "gimage_mask.h"
# include "gimprc.h"
# include "gdisplay.h"
# include "rect_select.h"
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
# include "libgimp/gimpintl.h"
1998-08-12 01:35:34 +08:00
# include "tile.h" /* ick. */
1998-07-08 14:41:58 +08:00
1997-11-25 06:05:25 +08:00
# define DEFAULT_FUZZINESS 15
# define PREVIEW_WIDTH 256
# define PREVIEW_HEIGHT 256
# define PREVIEW_EVENT_MASK GDK_EXPOSURE_MASK | \
GDK_BUTTON_PRESS_MASK | \
GDK_ENTER_NOTIFY_MASK
1999-04-09 06:25:54 +08:00
/* the by color selection structures */
1997-11-25 06:05:25 +08:00
typedef struct _ByColorSelect ByColorSelect ;
struct _ByColorSelect
{
int x , y ; /* Point from which to execute seed fill */
int operation ; /* add, subtract, normal color selection */
} ;
typedef struct _ByColorDialog ByColorDialog ;
struct _ByColorDialog
{
GtkWidget * shell ;
GtkWidget * preview ;
GtkWidget * gimage_name ;
int threshold ; /* threshold value for color select */
int operation ; /* Add, Subtract, Replace */
GImage * gimage ; /* gimage which is currently under examination */
} ;
1999-04-09 06:25:54 +08:00
/* by color selection tool options */
static SelectionOptions * by_color_options = NULL ;
1997-11-25 06:05:25 +08:00
1999-04-09 06:25:54 +08:00
/* the by color selection dialog */
static ByColorDialog * by_color_dialog = NULL ;
/* by_color select action functions */
1997-11-25 06:05:25 +08:00
static void by_color_select_button_press ( Tool * , GdkEventButton * , gpointer ) ;
static void by_color_select_button_release ( Tool * , GdkEventButton * , gpointer ) ;
static void by_color_select_motion ( Tool * , GdkEventMotion * , gpointer ) ;
static void by_color_select_cursor_update ( Tool * , GdkEventMotion * , gpointer ) ;
static void by_color_select_control ( Tool * , int , gpointer ) ;
static ByColorDialog * by_color_select_new_dialog ( void ) ;
static void by_color_select_render ( ByColorDialog * , GImage * ) ;
static void by_color_select_draw ( ByColorDialog * , GImage * ) ;
static gint by_color_select_preview_events ( GtkWidget * , GdkEventButton * , ByColorDialog * ) ;
static void by_color_select_type_callback ( GtkWidget * , gpointer ) ;
static void by_color_select_reset_callback ( GtkWidget * , gpointer ) ;
static void by_color_select_close_callback ( GtkWidget * , gpointer ) ;
static gint by_color_select_delete_callback ( GtkWidget * , GdkEvent * , gpointer ) ;
static void by_color_select_fuzzy_update ( GtkAdjustment * , gpointer ) ;
static void by_color_select_preview_button_press ( ByColorDialog * , GdkEventButton * ) ;
static int is_pixel_sufficiently_different ( unsigned char * , unsigned char * , int , int , int , int ) ;
1998-01-22 15:02:57 +08:00
static Channel * by_color_select_color ( GImage * , GimpDrawable * , unsigned char * , int , int , int ) ;
static void by_color_select ( GImage * , GimpDrawable * , unsigned char * , int , int , int , int , double , int ) ;
1997-11-25 06:05:25 +08:00
static Argument * by_color_select_invoker ( Argument * ) ;
/* by_color selection machinery */
static int
is_pixel_sufficiently_different ( unsigned char * col1 ,
unsigned char * col2 ,
int antialias ,
int threshold ,
int bytes ,
int has_alpha )
{
int diff ;
int max ;
int b ;
int alpha ;
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 < alpha ; b + + )
{
diff = col1 [ b ] - col2 [ b ] ;
diff = abs ( diff ) ;
if ( diff > max )
max = diff ;
}
1998-01-05 17:30:23 +08:00
if ( antialias & & threshold > 0 )
1997-11-25 06:05:25 +08:00
{
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 Channel *
by_color_select_color ( GImage * gimage ,
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ,
1997-11-25 06:05:25 +08:00
unsigned char * color ,
int antialias ,
int threshold ,
int sample_merged )
{
/* Scan over the gimage's active layer, finding pixels within the specified
* threshold from the given R , G , & B values . If antialiasing is on ,
* use the same antialiasing scheme as in fuzzy_select . Modify the gimage ' s
* mask to reflect the additional selection
*/
Channel * mask ;
PixelRegion imagePR , maskPR ;
unsigned char * image_data ;
unsigned char * mask_data ;
unsigned char * idata , * mdata ;
unsigned char rgb [ MAX_CHANNELS ] ;
1998-01-06 11:44:53 +08:00
int has_alpha , indexed ;
1997-11-25 06:05:25 +08:00
int width , height ;
1998-01-06 11:44:53 +08:00
int bytes , color_bytes , alpha ;
1997-11-25 06:05:25 +08:00
int i , j ;
void * pr ;
int d_type ;
/* Get the image information */
if ( sample_merged )
{
bytes = gimage_composite_bytes ( gimage ) ;
d_type = gimage_composite_type ( gimage ) ;
has_alpha = ( d_type = = RGBA_GIMAGE | |
d_type = = GRAYA_GIMAGE | |
d_type = = INDEXEDA_GIMAGE ) ;
1998-01-06 11:44:53 +08:00
indexed = d_type = = INDEXEDA_GIMAGE | | d_type = = INDEXED_GIMAGE ;
1997-11-25 06:05:25 +08:00
width = gimage - > width ;
height = gimage - > height ;
pixel_region_init ( & imagePR , gimage_composite ( gimage ) , 0 , 0 , width , height , FALSE ) ;
}
else
{
bytes = drawable_bytes ( drawable ) ;
d_type = drawable_type ( drawable ) ;
has_alpha = drawable_has_alpha ( drawable ) ;
1998-01-06 11:44:53 +08:00
indexed = drawable_indexed ( drawable ) ;
1997-11-25 06:05:25 +08:00
width = drawable_width ( drawable ) ;
height = drawable_height ( drawable ) ;
pixel_region_init ( & imagePR , drawable_data ( drawable ) , 0 , 0 , width , height , FALSE ) ;
}
1998-01-06 11:44:53 +08:00
if ( indexed ) {
/* indexed colors are always RGB or RGBA */
color_bytes = has_alpha ? 4 : 3 ;
} else {
/* RGB, RGBA, GRAY and GRAYA colors are shaped just like the image */
color_bytes = bytes ;
}
1997-11-25 06:05:25 +08:00
alpha = bytes - 1 ;
1998-06-29 08:24:44 +08:00
mask = channel_new_mask ( gimage , width , height ) ;
1998-01-22 15:02:57 +08:00
pixel_region_init ( & maskPR , drawable_data ( GIMP_DRAWABLE ( mask ) ) ,
0 , 0 , width , height , TRUE ) ;
1997-11-25 06:05:25 +08:00
/* iterate over the entire image */
for ( pr = pixel_regions_register ( 2 , & imagePR , & maskPR ) ; pr ! = NULL ; pr = pixel_regions_process ( pr ) )
{
image_data = imagePR . data ;
mask_data = maskPR . data ;
for ( i = 0 ; i < imagePR . h ; i + + )
{
idata = image_data ;
mdata = mask_data ;
for ( j = 0 ; j < imagePR . w ; j + + )
{
/* Get the rgb values for the color */
gimage_get_color ( gimage , d_type , rgb , idata ) ;
/* Plug the alpha channel in there */
if ( has_alpha )
1998-01-06 11:44:53 +08:00
rgb [ color_bytes - 1 ] = idata [ alpha ] ;
1997-11-25 06:05:25 +08:00
/* Find how closely the colors match */
* mdata + + = is_pixel_sufficiently_different ( color , rgb , antialias ,
1998-01-06 11:44:53 +08:00
threshold , color_bytes , has_alpha ) ;
1997-11-25 06:05:25 +08:00
idata + = bytes ;
}
image_data + = imagePR . rowstride ;
mask_data + = maskPR . rowstride ;
}
}
return mask ;
}
static void
by_color_select ( GImage * gimage ,
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ,
1997-11-25 06:05:25 +08:00
unsigned char * color ,
int threshold ,
int op ,
int antialias ,
int feather ,
double feather_radius ,
int sample_merged )
{
Channel * new_mask ;
int off_x , off_y ;
1998-01-22 15:02:57 +08:00
if ( ! drawable )
return ;
new_mask = by_color_select_color ( gimage , drawable , color , antialias , threshold , sample_merged ) ;
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 ) ;
if ( sample_merged )
{
off_x = 0 ; off_y = 0 ;
}
else
1998-01-22 15:02:57 +08:00
drawable_offsets ( drawable , & off_x , & off_y ) ;
1997-11-25 06:05:25 +08:00
if ( feather )
channel_feather ( new_mask , gimage_get_mask ( gimage ) ,
feather_radius , op , off_x , off_y ) ;
else
channel_combine_mask ( gimage_get_mask ( gimage ) ,
new_mask , op , off_x , off_y ) ;
channel_delete ( new_mask ) ;
}
/* by_color select action functions */
static void
by_color_select_button_press ( Tool * tool ,
GdkEventButton * bevent ,
gpointer gdisp_ptr )
{
GDisplay * gdisp ;
ByColorSelect * by_color_sel ;
gdisp = ( GDisplay * ) gdisp_ptr ;
by_color_sel = ( ByColorSelect * ) tool - > private ;
1998-04-02 12:51:44 +08:00
tool - > drawable = gimage_active_drawable ( gdisp - > gimage ) ;
1997-11-25 06:05:25 +08:00
if ( ! by_color_dialog )
return ;
by_color_sel - > x = bevent - > x ;
by_color_sel - > y = bevent - > y ;
tool - > state = ACTIVE ;
tool - > gdisp_ptr = gdisp_ptr ;
/* Defaults */
by_color_sel - > operation = REPLACE ;
/* Based on modifiers, and the "by color" dialog's selection mode */
if ( ( bevent - > state & GDK_SHIFT_MASK ) & & ! ( bevent - > state & GDK_CONTROL_MASK ) )
by_color_sel - > operation = ADD ;
else if ( ( bevent - > state & GDK_CONTROL_MASK ) & & ! ( bevent - > state & GDK_SHIFT_MASK ) )
by_color_sel - > operation = SUB ;
else if ( ( bevent - > state & GDK_CONTROL_MASK ) & & ( bevent - > state & GDK_SHIFT_MASK ) )
by_color_sel - > operation = INTERSECT ;
else
by_color_sel - > operation = by_color_dialog - > operation ;
/* Make sure the "by color" select dialog is visible */
if ( ! GTK_WIDGET_VISIBLE ( by_color_dialog - > shell ) )
gtk_widget_show ( by_color_dialog - > shell ) ;
/* Update the by_color_dialog's active gdisp pointer */
if ( by_color_dialog - > gimage )
by_color_dialog - > gimage - > by_color_select = FALSE ;
by_color_dialog - > gimage = gdisp - > gimage ;
gdisp - > gimage - > by_color_select = TRUE ;
}
static void
by_color_select_button_release ( Tool * tool ,
GdkEventButton * bevent ,
gpointer gdisp_ptr )
{
ByColorSelect * by_color_sel ;
GDisplay * gdisp ;
int x , y ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1999-02-16 16:53:54 +08:00
unsigned char * color ;
1997-11-25 06:05:25 +08:00
int use_offsets ;
gdisp = ( GDisplay * ) gdisp_ptr ;
by_color_sel = ( ByColorSelect * ) tool - > private ;
1998-01-22 15:02:57 +08:00
drawable = gimage_active_drawable ( gdisp - > gimage ) ;
1997-11-25 06:05:25 +08:00
tool - > state = INACTIVE ;
/* First take care of the case where the user "cancels" the action */
if ( ! ( bevent - > state & GDK_BUTTON3_MASK ) )
{
use_offsets = ( by_color_options - > sample_merged ) ? FALSE : TRUE ;
gdisplay_untransform_coords ( gdisp , by_color_sel - > x , by_color_sel - > y , & x , & y , FALSE , use_offsets ) ;
/* Get the start color */
if ( by_color_options - > sample_merged )
{
1999-02-16 16:53:54 +08:00
if ( ! ( color = gimp_image_get_color_at ( gdisp - > gimage , x , y ) ) )
1997-11-25 06:05:25 +08:00
return ;
}
else
{
1999-02-16 16:53:54 +08:00
if ( ! ( color = gimp_drawable_get_color_at ( drawable , x , y ) ) )
1997-11-25 06:05:25 +08:00
return ;
}
/* select the area */
1999-02-16 16:53:54 +08:00
by_color_select ( gdisp - > gimage , drawable , color ,
1997-11-25 06:05:25 +08:00
by_color_dialog - > threshold ,
by_color_sel - > operation ,
by_color_options - > antialias ,
by_color_options - > feather ,
by_color_options - > feather_radius ,
by_color_options - > sample_merged ) ;
1999-02-16 16:53:54 +08:00
g_free ( color ) ;
1997-11-25 06:05:25 +08:00
/* show selection on all views */
gdisplays_flush ( ) ;
/* update the preview window */
by_color_select_render ( by_color_dialog , gdisp - > gimage ) ;
by_color_select_draw ( by_color_dialog , gdisp - > gimage ) ;
}
}
static void
by_color_select_motion ( Tool * tool ,
GdkEventMotion * mevent ,
gpointer gdisp_ptr )
{
}
static void
by_color_select_cursor_update ( Tool * tool ,
GdkEventMotion * mevent ,
gpointer gdisp_ptr )
{
GDisplay * gdisp ;
Layer * layer ;
int x , y ;
gdisp = ( GDisplay * ) gdisp_ptr ;
gdisplay_untransform_coords ( gdisp , mevent - > x , mevent - > y , & x , & y , FALSE , FALSE ) ;
if ( ( layer = gimage_pick_correlate_layer ( gdisp - > gimage , x , y ) ) )
1998-01-22 15:02:57 +08:00
if ( layer = = gdisp - > gimage - > active_layer )
1997-11-25 06:05:25 +08:00
{
gdisplay_install_tool_cursor ( gdisp , GDK_TCROSS ) ;
return ;
}
gdisplay_install_tool_cursor ( gdisp , GDK_TOP_LEFT_ARROW ) ;
}
static void
by_color_select_control ( Tool * tool ,
int action ,
gpointer gdisp_ptr )
{
ByColorSelect * by_color_sel ;
by_color_sel = ( ByColorSelect * ) tool - > private ;
switch ( action )
{
case PAUSE :
break ;
case RESUME :
break ;
case HALT :
if ( by_color_dialog )
{
if ( by_color_dialog - > gimage )
by_color_dialog - > gimage - > by_color_select = FALSE ;
by_color_dialog - > gimage = NULL ;
by_color_select_close_callback ( NULL , ( gpointer ) by_color_dialog ) ;
}
break ;
}
}
1999-04-09 06:25:54 +08:00
static void
by_color_select_reset_options ( )
{
reset_selection_options ( by_color_options ) ;
}
1997-11-25 06:05:25 +08:00
Tool *
tools_new_by_color_select ( )
{
Tool * tool ;
ByColorSelect * private ;
/* The tool options */
if ( ! by_color_options )
1999-04-09 06:25:54 +08:00
by_color_options =
create_selection_options ( BY_COLOR_SELECT , by_color_select_reset_options ) ;
1997-11-25 06:05:25 +08:00
/* The "by color" dialog */
if ( ! by_color_dialog )
by_color_dialog = by_color_select_new_dialog ( ) ;
else
if ( ! GTK_WIDGET_VISIBLE ( by_color_dialog - > shell ) )
gtk_widget_show ( by_color_dialog - > shell ) ;
tool = ( Tool * ) g_malloc ( sizeof ( Tool ) ) ;
private = ( ByColorSelect * ) g_malloc ( sizeof ( ByColorSelect ) ) ;
tool - > type = BY_COLOR_SELECT ;
tool - > state = INACTIVE ;
tool - > scroll_lock = 1 ; /* Disallow scrolling */
tool - > auto_snap_to = TRUE ;
tool - > private = ( void * ) private ;
1999-04-09 06:25:54 +08:00
1997-11-25 06:05:25 +08:00
tool - > button_press_func = by_color_select_button_press ;
tool - > button_release_func = by_color_select_button_release ;
tool - > motion_func = by_color_select_motion ;
tool - > arrow_keys_func = standard_arrow_keys_func ;
tool - > cursor_update_func = by_color_select_cursor_update ;
tool - > control_func = by_color_select_control ;
1998-04-02 12:51:44 +08:00
tool - > gdisp_ptr = NULL ;
tool - > drawable = NULL ;
1998-04-08 13:50:36 +08:00
tool - > preserve = TRUE ;
1997-11-25 06:05:25 +08:00
return tool ;
}
void
tools_free_by_color_select ( Tool * tool )
{
ByColorSelect * by_color_sel ;
by_color_sel = ( ByColorSelect * ) tool - > private ;
/* Close the color select dialog */
if ( by_color_dialog )
{
if ( by_color_dialog - > gimage )
by_color_dialog - > gimage - > by_color_select = FALSE ;
by_color_select_close_callback ( NULL , ( gpointer ) by_color_dialog ) ;
}
g_free ( by_color_sel ) ;
}
void
1998-06-22 04:17:21 +08:00
by_color_select_initialize_by_image ( GImage * gimage )
1997-11-25 06:05:25 +08:00
{
/* update the preview window */
if ( by_color_dialog )
{
by_color_dialog - > gimage = gimage ;
gimage - > by_color_select = TRUE ;
by_color_select_render ( by_color_dialog , gimage ) ;
by_color_select_draw ( by_color_dialog , gimage ) ;
}
}
1998-06-22 04:17:21 +08:00
void
by_color_select_initialize ( GDisplay * gdisp )
{
/* wrap this call so the tool_info->init_func works */
by_color_select_initialize_by_image ( gdisp - > gimage ) ;
}
1997-11-25 06:05:25 +08:00
/****************************/
/* Select by Color dialog */
/****************************/
1998-03-19 06:35:31 +08:00
static ByColorDialog *
1997-11-25 06:05:25 +08:00
by_color_select_new_dialog ( )
{
ByColorDialog * bcd ;
GtkWidget * vbox ;
GtkWidget * hbox ;
GtkWidget * frame ;
GtkWidget * options_box ;
GtkWidget * label ;
GtkWidget * util_box ;
GtkWidget * push_button ;
GtkWidget * slider ;
GtkWidget * radio_box ;
GtkWidget * radio_button ;
GtkObject * data ;
GSList * group = NULL ;
int i ;
char * button_names [ 4 ] =
{
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
N_ ( " Replace " ) ,
N_ ( " Add " ) ,
N_ ( " Subtract " ) ,
N_ ( " Intersect " )
1997-11-25 06:05:25 +08:00
} ;
int button_values [ 4 ] =
{
REPLACE ,
ADD ,
SUB ,
INTERSECT
} ;
bcd = g_malloc ( sizeof ( ByColorDialog ) ) ;
bcd - > gimage = NULL ;
bcd - > operation = REPLACE ;
bcd - > threshold = DEFAULT_FUZZINESS ;
/* The shell and main vbox */
bcd - > shell = gtk_dialog_new ( ) ;
1998-01-26 06:13:00 +08:00
gtk_window_set_wmclass ( GTK_WINDOW ( bcd - > shell ) , " by_color_selection " , " Gimp " ) ;
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
gtk_window_set_title ( GTK_WINDOW ( bcd - > shell ) , _ ( " By Color Selection " ) ) ;
1999-04-09 06:25:54 +08:00
gtk_container_set_border_width ( GTK_CONTAINER ( GTK_DIALOG ( bcd - > shell ) - > action_area ) , 2 ) ;
1997-11-25 06:05:25 +08:00
/* handle the wm close signal */
gtk_signal_connect ( GTK_OBJECT ( bcd - > shell ) , " delete_event " ,
( GtkSignalFunc ) by_color_select_delete_callback ,
bcd ) ;
/* The vbox */
vbox = gtk_vbox_new ( FALSE , 2 ) ;
1999-04-09 06:25:54 +08:00
gtk_container_set_border_width ( GTK_CONTAINER ( vbox ) , 2 ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( bcd - > shell ) - > vbox ) , vbox , TRUE , TRUE , 0 ) ;
/* The horizontal box containing preview & options box */
hbox = gtk_hbox_new ( FALSE , 2 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , FALSE , 0 ) ;
/* The preview */
util_box = gtk_vbox_new ( FALSE , 2 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , util_box , FALSE , FALSE , 0 ) ;
frame = gtk_frame_new ( NULL ) ;
gtk_frame_set_shadow_type ( GTK_FRAME ( frame ) , GTK_SHADOW_IN ) ;
gtk_box_pack_start ( GTK_BOX ( util_box ) , frame , FALSE , FALSE , 0 ) ;
bcd - > preview = gtk_preview_new ( GTK_PREVIEW_GRAYSCALE ) ;
gtk_preview_size ( GTK_PREVIEW ( bcd - > preview ) , PREVIEW_WIDTH , PREVIEW_HEIGHT ) ;
gtk_widget_set_events ( bcd - > preview , PREVIEW_EVENT_MASK ) ;
gtk_signal_connect ( GTK_OBJECT ( bcd - > preview ) , " button_press_event " ,
( GtkSignalFunc ) by_color_select_preview_events ,
bcd ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , bcd - > preview ) ;
gtk_widget_show ( bcd - > preview ) ;
gtk_widget_show ( frame ) ;
gtk_widget_show ( util_box ) ;
/* options box */
options_box = gtk_vbox_new ( FALSE , 2 ) ;
1999-04-09 06:25:54 +08:00
gtk_container_set_border_width ( GTK_CONTAINER ( options_box ) , 5 ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , options_box , TRUE , TRUE , 0 ) ;
1998-03-30 20:10:54 +08:00
/* Create the active image label */
1997-11-25 06:05:25 +08:00
util_box = gtk_hbox_new ( FALSE , 2 ) ;
gtk_box_pack_start ( GTK_BOX ( options_box ) , util_box , FALSE , FALSE , 0 ) ;
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
bcd - > gimage_name = gtk_label_new ( _ ( " Inactive " ) ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( util_box ) , bcd - > gimage_name , FALSE , FALSE , 2 ) ;
gtk_widget_show ( bcd - > gimage_name ) ;
gtk_widget_show ( util_box ) ;
/* Create the selection mode radio box */
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
frame = gtk_frame_new ( _ ( " Selection Mode " ) ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( options_box ) , frame , FALSE , FALSE , 0 ) ;
radio_box = gtk_vbox_new ( FALSE , 2 ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , radio_box ) ;
/* the radio buttons */
for ( i = 0 ; i < ( sizeof ( button_names ) / sizeof ( button_names [ 0 ] ) ) ; i + + )
{
radio_button = gtk_radio_button_new_with_label ( group , button_names [ i ] ) ;
group = gtk_radio_button_group ( GTK_RADIO_BUTTON ( radio_button ) ) ;
gtk_box_pack_start ( GTK_BOX ( radio_box ) , radio_button , FALSE , FALSE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( radio_button ) , " toggled " ,
( GtkSignalFunc ) by_color_select_type_callback ,
( gpointer ) ( ( long ) button_values [ i ] ) ) ;
gtk_widget_show ( radio_button ) ;
}
gtk_widget_show ( radio_box ) ;
gtk_widget_show ( frame ) ;
/* Create the opacity scale widget */
util_box = gtk_vbox_new ( FALSE , 2 ) ;
gtk_box_pack_start ( GTK_BOX ( options_box ) , util_box , FALSE , FALSE , 0 ) ;
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
label = gtk_label_new ( _ ( " Fuzziness Threshold " ) ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( util_box ) , label , FALSE , FALSE , 2 ) ;
data = gtk_adjustment_new ( bcd - > threshold , 0.0 , 255.0 , 1.0 , 1.0 , 0.0 ) ;
slider = gtk_hscale_new ( GTK_ADJUSTMENT ( data ) ) ;
gtk_box_pack_start ( GTK_BOX ( util_box ) , slider , TRUE , TRUE , 0 ) ;
gtk_scale_set_value_pos ( GTK_SCALE ( slider ) , GTK_POS_TOP ) ;
gtk_range_set_update_policy ( GTK_RANGE ( slider ) , GTK_UPDATE_DELAYED ) ;
gtk_signal_connect ( GTK_OBJECT ( data ) , " value_changed " ,
( GtkSignalFunc ) by_color_select_fuzzy_update ,
bcd ) ;
gtk_widget_show ( label ) ;
gtk_widget_show ( slider ) ;
gtk_widget_show ( util_box ) ;
/* The reset push button */
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
push_button = gtk_button_new_with_label ( _ ( " Reset " ) ) ;
1997-11-25 06:05:25 +08:00
GTK_WIDGET_SET_FLAGS ( push_button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( bcd - > shell ) - > action_area ) , push_button , TRUE , TRUE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( push_button ) , " clicked " ,
( GtkSignalFunc ) by_color_select_reset_callback ,
bcd ) ;
gtk_widget_grab_default ( push_button ) ;
gtk_widget_show ( push_button ) ;
/* The close push button */
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
push_button = gtk_button_new_with_label ( _ ( " Close " ) ) ;
1997-11-25 06:05:25 +08:00
GTK_WIDGET_SET_FLAGS ( push_button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( bcd - > shell ) - > action_area ) , push_button , TRUE , TRUE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( push_button ) , " clicked " ,
( GtkSignalFunc ) by_color_select_close_callback ,
bcd ) ;
gtk_widget_show ( push_button ) ;
gtk_widget_show ( options_box ) ;
gtk_widget_show ( hbox ) ;
gtk_widget_show ( vbox ) ;
gtk_widget_show ( bcd - > shell ) ;
return bcd ;
}
static void
by_color_select_render ( ByColorDialog * bcd ,
GImage * gimage )
{
Channel * mask ;
MaskBuf * scaled_buf = NULL ;
unsigned char * buf ;
PixelRegion srcPR , destPR ;
unsigned char * src ;
int subsample ;
int width , height ;
int srcwidth ;
int i ;
int scale ;
mask = gimage_get_mask ( gimage ) ;
1998-01-22 15:02:57 +08:00
if ( ( drawable_width ( GIMP_DRAWABLE ( mask ) ) > PREVIEW_WIDTH ) | |
( drawable_height ( GIMP_DRAWABLE ( mask ) ) > PREVIEW_HEIGHT ) )
1997-11-25 06:05:25 +08:00
{
1998-01-22 15:02:57 +08:00
if ( ( ( float ) drawable_width ( GIMP_DRAWABLE ( mask ) ) / ( float ) PREVIEW_WIDTH ) >
( ( float ) drawable_height ( GIMP_DRAWABLE ( mask ) ) / ( float ) PREVIEW_HEIGHT ) )
1997-11-25 06:05:25 +08:00
{
width = PREVIEW_WIDTH ;
1998-01-22 15:02:57 +08:00
height = ( drawable_height ( GIMP_DRAWABLE ( mask ) ) * PREVIEW_WIDTH ) / drawable_width ( GIMP_DRAWABLE ( mask ) ) ;
1997-11-25 06:05:25 +08:00
}
else
{
1998-01-22 15:02:57 +08:00
width = ( drawable_width ( GIMP_DRAWABLE ( mask ) ) * PREVIEW_HEIGHT ) / drawable_height ( GIMP_DRAWABLE ( mask ) ) ;
1997-11-25 06:05:25 +08:00
height = PREVIEW_HEIGHT ;
}
scale = TRUE ;
}
else
{
1998-01-22 15:02:57 +08:00
width = drawable_width ( GIMP_DRAWABLE ( mask ) ) ;
height = drawable_height ( GIMP_DRAWABLE ( mask ) ) ;
1997-11-25 06:05:25 +08:00
scale = FALSE ;
}
if ( ( width ! = bcd - > preview - > requisition . width ) | |
( height ! = bcd - > preview - > requisition . height ) )
gtk_preview_size ( GTK_PREVIEW ( bcd - > preview ) , width , height ) ;
/* clear the image buf */
buf = ( unsigned char * ) g_malloc ( bcd - > preview - > requisition . width ) ;
memset ( buf , 0 , bcd - > preview - > requisition . width ) ;
for ( i = 0 ; i < bcd - > preview - > requisition . height ; i + + )
gtk_preview_draw_row ( GTK_PREVIEW ( bcd - > preview ) , buf , 0 , i , bcd - > preview - > requisition . width ) ;
g_free ( buf ) ;
/* if the mask is empty, no need to scale and update again */
if ( gimage_mask_is_empty ( gimage ) )
return ;
if ( scale )
{
/* calculate 'acceptable' subsample */
subsample = 1 ;
1998-01-22 15:02:57 +08:00
while ( ( width * ( subsample + 1 ) * 2 < drawable_width ( GIMP_DRAWABLE ( mask ) ) ) & &
( height * ( subsample + 1 ) * 2 < drawable_height ( GIMP_DRAWABLE ( mask ) ) ) )
1997-11-25 06:05:25 +08:00
subsample = subsample + 1 ;
1998-01-22 15:02:57 +08:00
pixel_region_init ( & srcPR , drawable_data ( GIMP_DRAWABLE ( mask ) ) ,
0 , 0 ,
drawable_width ( GIMP_DRAWABLE ( mask ) ) ,
drawable_height ( GIMP_DRAWABLE ( mask ) ) , FALSE ) ;
1997-11-25 06:05:25 +08:00
scaled_buf = mask_buf_new ( width , height ) ;
destPR . bytes = 1 ;
destPR . x = 0 ;
destPR . y = 0 ;
destPR . w = width ;
destPR . h = height ;
destPR . rowstride = srcPR . bytes * width ;
destPR . data = mask_buf_data ( scaled_buf ) ;
destPR . tiles = NULL ;
subsample_region ( & srcPR , & destPR , subsample ) ;
}
else
{
1998-01-22 15:02:57 +08:00
pixel_region_init ( & srcPR , drawable_data ( GIMP_DRAWABLE ( mask ) ) ,
0 , 0 ,
drawable_width ( GIMP_DRAWABLE ( mask ) ) ,
drawable_height ( GIMP_DRAWABLE ( mask ) ) , FALSE ) ;
1997-11-25 06:05:25 +08:00
scaled_buf = mask_buf_new ( width , height ) ;
destPR . bytes = 1 ;
destPR . x = 0 ;
destPR . y = 0 ;
destPR . w = width ;
destPR . h = height ;
destPR . rowstride = srcPR . bytes * width ;
destPR . data = mask_buf_data ( scaled_buf ) ;
destPR . tiles = NULL ;
copy_region ( & srcPR , & destPR ) ;
}
src = mask_buf_data ( scaled_buf ) ;
srcwidth = scaled_buf - > width ;
for ( i = 0 ; i < height ; i + + )
{
gtk_preview_draw_row ( GTK_PREVIEW ( bcd - > preview ) , src , 0 , i , width ) ;
src + = srcwidth ;
}
mask_buf_free ( scaled_buf ) ;
}
static void
by_color_select_draw ( ByColorDialog * bcd ,
GImage * gimage )
{
/* Draw the image buf to the preview window */
gtk_widget_draw ( bcd - > preview , NULL ) ;
/* Update the gimage label to reflect the displayed gimage name */
1999-02-07 18:45:56 +08:00
gtk_label_set_text ( GTK_LABEL ( bcd - > gimage_name ) , g_basename ( gimage_filename ( gimage ) ) ) ;
1997-11-25 06:05:25 +08:00
}
static gint
by_color_select_preview_events ( GtkWidget * widget ,
GdkEventButton * bevent ,
ByColorDialog * bcd )
{
switch ( bevent - > type )
{
case GDK_BUTTON_PRESS :
by_color_select_preview_button_press ( bcd , bevent ) ;
break ;
default :
break ;
}
return FALSE ;
}
static void
by_color_select_type_callback ( GtkWidget * widget ,
gpointer client_data )
{
if ( by_color_dialog )
by_color_dialog - > operation = ( long ) client_data ;
}
static void
by_color_select_reset_callback ( GtkWidget * widget ,
gpointer client_data )
{
ByColorDialog * bcd ;
bcd = ( ByColorDialog * ) client_data ;
1998-03-30 20:10:54 +08:00
1997-11-25 06:05:25 +08:00
if ( ! bcd - > gimage )
return ;
1998-03-30 20:10:54 +08:00
/* check if the image associated to the mask still exists */
if ( ! drawable_gimage ( GIMP_DRAWABLE ( gimage_get_mask ( bcd - > gimage ) ) ) )
return ;
1997-11-25 06:05:25 +08:00
/* reset the mask */
gimage_mask_clear ( bcd - > gimage ) ;
/* show selection on all views */
gdisplays_flush ( ) ;
/* update the preview window */
by_color_select_render ( bcd , bcd - > gimage ) ;
by_color_select_draw ( bcd , bcd - > gimage ) ;
}
static gint
by_color_select_delete_callback ( GtkWidget * w ,
GdkEvent * e ,
gpointer client_data )
{
by_color_select_close_callback ( w , client_data ) ;
1998-03-13 06:01:43 +08:00
return TRUE ;
1997-11-25 06:05:25 +08:00
}
static void
by_color_select_close_callback ( GtkWidget * widget ,
gpointer client_data )
{
ByColorDialog * bcd ;
bcd = ( ByColorDialog * ) client_data ;
if ( GTK_WIDGET_VISIBLE ( bcd - > shell ) )
gtk_widget_hide ( bcd - > shell ) ;
}
static void
by_color_select_fuzzy_update ( GtkAdjustment * adjustment ,
gpointer data )
{
ByColorDialog * bcd ;
bcd = ( ByColorDialog * ) data ;
bcd - > threshold = ( int ) adjustment - > value ;
}
static void
by_color_select_preview_button_press ( ByColorDialog * bcd ,
GdkEventButton * bevent )
{
int x , y ;
int replace , operation ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
Tile * tile ;
unsigned char * col ;
if ( ! bcd - > gimage )
return ;
1998-03-30 20:10:54 +08:00
1998-01-22 15:02:57 +08:00
drawable = gimage_active_drawable ( bcd - > gimage ) ;
1997-11-25 06:05:25 +08:00
1998-03-30 20:10:54 +08:00
/* check if the gimage associated to the drawable still exists */
if ( ! drawable_gimage ( drawable ) )
return ;
1997-11-25 06:05:25 +08:00
/* Defaults */
replace = FALSE ;
operation = REPLACE ;
/* Based on modifiers, and the "by color" dialog's selection mode */
if ( ( bevent - > state & GDK_SHIFT_MASK ) & & ! ( bevent - > state & GDK_CONTROL_MASK ) )
operation = ADD ;
else if ( ( bevent - > state & GDK_CONTROL_MASK ) & & ! ( bevent - > state & GDK_SHIFT_MASK ) )
operation = SUB ;
else if ( ( bevent - > state & GDK_CONTROL_MASK ) & & ( bevent - > state & GDK_SHIFT_MASK ) )
operation = INTERSECT ;
else
operation = by_color_dialog - > operation ;
/* Find x, y and modify selection */
/* Get the start color */
if ( by_color_options - > sample_merged )
{
x = bcd - > gimage - > width * bevent - > x / bcd - > preview - > requisition . width ;
y = bcd - > gimage - > height * bevent - > y / bcd - > preview - > requisition . height ;
if ( x < 0 | | y < 0 | | x > = bcd - > gimage - > width | | y > = bcd - > gimage - > height )
return ;
1998-08-16 03:17:36 +08:00
tile = tile_manager_get_tile ( gimage_composite ( bcd - > gimage ) , x , y , TRUE , FALSE ) ;
1998-08-12 01:35:34 +08:00
col = tile_data_pointer ( tile , x % TILE_WIDTH , y % TILE_HEIGHT ) ;
1997-11-25 06:05:25 +08:00
}
else
{
int offx , offy ;
1998-01-22 15:02:57 +08:00
drawable_offsets ( drawable , & offx , & offy ) ;
x = drawable_width ( drawable ) * bevent - > x / bcd - > preview - > requisition . width - offx ;
y = drawable_height ( drawable ) * bevent - > y / bcd - > preview - > requisition . height - offy ;
if ( x < 0 | | y < 0 | | x > = drawable_width ( drawable ) | | y > = drawable_height ( drawable ) )
1997-11-25 06:05:25 +08:00
return ;
1998-08-16 03:17:36 +08:00
tile = tile_manager_get_tile ( drawable_data ( drawable ) , x , y , TRUE , FALSE ) ;
1998-08-12 01:35:34 +08:00
col = tile_data_pointer ( tile , x % TILE_WIDTH , y % TILE_HEIGHT ) ;
1997-11-25 06:05:25 +08:00
}
1998-01-22 15:02:57 +08:00
by_color_select ( bcd - > gimage , drawable , col ,
1997-11-25 06:05:25 +08:00
bcd - > threshold ,
operation ,
by_color_options - > antialias ,
by_color_options - > feather ,
by_color_options - > feather_radius ,
by_color_options - > sample_merged ) ;
1998-07-10 10:43:12 +08:00
tile_release ( tile , FALSE ) ;
1997-11-25 06:05:25 +08:00
/* show selection on all views */
gdisplays_flush ( ) ;
/* update the preview window */
by_color_select_render ( bcd , bcd - > gimage ) ;
by_color_select_draw ( bcd , bcd - > gimage ) ;
}
/* The by_color_select procedure definition */
ProcArg by_color_select_args [ ] =
{
{ PDB_DRAWABLE ,
" drawable " ,
1998-12-26 02:22:01 +08:00
" the drawable "
1997-11-25 06:05:25 +08:00
} ,
{ PDB_COLOR ,
" color " ,
1998-12-26 02:22:01 +08:00
" the color to select "
1997-11-25 06:05:25 +08:00
} ,
{ PDB_INT32 ,
" threshold " ,
1998-12-26 02:22:01 +08:00
" threshold in intensity levels: 0 <= threshold <= 255 "
1997-11-25 06:05:25 +08:00
} ,
{ PDB_INT32 ,
" operation " ,
1998-12-26 02:22:01 +08:00
" the selection operation: { ADD (0), SUB (1), REPLACE (2), INTERSECT (3) } "
1997-11-25 06:05:25 +08:00
} ,
{ PDB_INT32 ,
" antialias " ,
1998-12-26 02:22:01 +08:00
" antialiasing On/Off "
1997-11-25 06:05:25 +08:00
} ,
{ PDB_INT32 ,
" feather " ,
1998-12-26 02:22:01 +08:00
" feather option for selections "
1997-11-25 06:05:25 +08:00
} ,
{ PDB_FLOAT ,
" feather_radius " ,
1998-12-26 02:22:01 +08:00
" radius for feather operation "
1997-11-25 06:05:25 +08:00
} ,
{ PDB_INT32 ,
" sample_merged " ,
1998-12-26 02:22:01 +08:00
" use the composite image, not the drawable "
1997-11-25 06:05:25 +08:00
}
} ;
ProcRecord by_color_select_proc =
{
" gimp_by_color_select " ,
1998-12-26 02:22:01 +08:00
" Create a selection by selecting all pixels (in the specified drawable) with the same (or similar) color to that specified. " ,
" This tool creates a selection over the specified image. A by-color selection is determined by the supplied color under the constraints of the specified threshold. Essentially, all pixels (in the drawable) that have color sufficiently close to the specified color (as determined by the threshold value) are included in the selection. The antialiasing parameter allows the final selection mask to contain intermediate values based on close misses to the threshold bar. Feathering can be enabled optionally and is controlled with the \" feather_radius \" paramter. If the sample_merged parameter is non-zero, the data of the composite image will be used instead of that for the specified drawable. This is equivalent to sampling for colors after merging all visible layers. In the case of a merged sampling, the supplied drawable is ignored. " ,
1997-11-25 06:05:25 +08:00
" Spencer Kimball & Peter Mattis " ,
" Spencer Kimball & Peter Mattis " ,
" 1995-1996 " ,
PDB_INTERNAL ,
/* Input arguments */
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
8 ,
1997-11-25 06:05:25 +08:00
by_color_select_args ,
/* Output arguments */
0 ,
NULL ,
/* Exec method */
{ { by_color_select_invoker } } ,
} ;
static Argument *
by_color_select_invoker ( Argument * args )
{
int success = TRUE ;
GImage * gimage ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
int op ;
int threshold ;
int antialias ;
int feather ;
int sample_merged ;
unsigned char color [ 3 ] ;
double feather_radius ;
int int_value ;
1998-01-22 15:02:57 +08:00
drawable = NULL ;
1997-11-25 06:05:25 +08:00
op = REPLACE ;
threshold = 0 ;
/* the drawable */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 0 ] . value . pdb_int ;
1998-01-22 15:02:57 +08:00
drawable = drawable_get_ID ( int_value ) ;
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
if ( drawable = = NULL )
success = FALSE ;
else
gimage = drawable_gimage ( drawable ) ;
1997-11-25 06:05:25 +08:00
}
/* color */
if ( success )
{
int i ;
unsigned char * color_array ;
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
color_array = ( unsigned char * ) args [ 1 ] . value . pdb_pointer ;
1997-11-25 06:05:25 +08:00
for ( i = 0 ; i < 3 ; i + + )
color [ i ] = color_array [ i ] ;
}
/* threshold */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 2 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
if ( int_value > = 0 & & int_value < = 255 )
threshold = int_value ;
else
success = FALSE ;
}
/* operation */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 3 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
switch ( int_value )
{
case 0 : op = ADD ; break ;
case 1 : op = SUB ; break ;
case 2 : op = REPLACE ; break ;
case 3 : op = INTERSECT ; break ;
default : success = FALSE ;
}
}
/* antialiasing? */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 4 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
antialias = ( int_value ) ? TRUE : FALSE ;
}
/* feathering */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 5 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
feather = ( int_value ) ? TRUE : FALSE ;
}
/* feather radius */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
feather_radius = args [ 6 ] . value . pdb_float ;
1997-11-25 06:05:25 +08:00
}
/* sample merged */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 7 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
sample_merged = ( int_value ) ? TRUE : FALSE ;
}
/* call the ellipse_select procedure */
if ( success )
1998-01-22 15:02:57 +08:00
by_color_select ( gimage , drawable , color , threshold , op ,
1997-11-25 06:05:25 +08:00
antialias , feather , feather_radius , sample_merged ) ;
return procedural_db_return_args ( & by_color_select_proc , success ) ;
}