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 "actionarea.h"
# include "channel_ops.h"
# include "drawable.h"
# include "floating_sel.h"
# include "general.h"
# include "gdisplay.h"
# include "interface.h"
# include "palette.h"
1998-01-22 15:02:57 +08:00
# include "channel_pvt.h"
1997-11-25 06:05:25 +08:00
# define ENTRY_WIDTH 60
# define OFFSET_BACKGROUND 0
# define OFFSET_TRANSPARENT 1
typedef struct
{
GtkWidget * dlg ;
GtkWidget * fill_options ;
GtkWidget * off_x_entry ;
GtkWidget * off_y_entry ;
int wrap_around ;
int transparent ;
int background ;
1998-06-29 08:24:44 +08:00
GimpImage * gimage ;
1997-11-25 06:05:25 +08:00
} OffsetDialog ;
/* Local procedures */
static void offset ( GImage * gimage ,
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ,
1997-11-25 06:05:25 +08:00
int wrap_around ,
int fill_type ,
int offset_x ,
int offset_y ) ;
static void offset_ok_callback ( GtkWidget * widget ,
gpointer data ) ;
static void offset_cancel_callback ( GtkWidget * widget ,
gpointer data ) ;
static gint offset_delete_callback ( GtkWidget * widget ,
GdkEvent * event ,
gpointer data ) ;
static void offset_toggle_update ( GtkWidget * widget ,
gpointer data ) ;
static void offset_wraparound_update ( GtkWidget * widget ,
gpointer data ) ;
static void offset_halfheight_update ( GtkWidget * widget ,
gpointer data ) ;
static Argument * channel_ops_offset_invoker ( Argument * args ) ;
void
1998-06-29 08:24:44 +08:00
channel_ops_offset ( GimpImage * gimage )
1997-11-25 06:05:25 +08:00
{
OffsetDialog * off_d ;
GtkWidget * button ;
GtkWidget * label ;
GtkWidget * check ;
GtkWidget * push ;
GtkWidget * toggle ;
GtkWidget * vbox ;
GtkWidget * toggle_vbox ;
GtkWidget * table ;
GSList * group = NULL ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
1998-01-22 15:02:57 +08:00
drawable = gimage_active_drawable ( gimage ) ;
1997-11-25 06:05:25 +08:00
off_d = g_new ( OffsetDialog , 1 ) ;
off_d - > wrap_around = TRUE ;
1998-01-22 15:02:57 +08:00
off_d - > transparent = drawable_has_alpha ( drawable ) ;
1997-11-25 06:05:25 +08:00
off_d - > background = ! off_d - > transparent ;
1998-06-29 08:24:44 +08:00
off_d - > gimage = gimage ;
1997-11-25 06:05:25 +08:00
off_d - > dlg = gtk_dialog_new ( ) ;
1998-01-26 06:13:00 +08:00
gtk_window_set_wmclass ( GTK_WINDOW ( off_d - > dlg ) , " offset " , " Gimp " ) ;
1997-11-25 06:05:25 +08:00
gtk_window_set_title ( GTK_WINDOW ( off_d - > dlg ) , " Offset " ) ;
/* handle the wm close signal */
gtk_signal_connect ( GTK_OBJECT ( off_d - > dlg ) , " delete_event " ,
GTK_SIGNAL_FUNC ( offset_delete_callback ) ,
off_d ) ;
/* Action area */
button = gtk_button_new_with_label ( " OK " ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) offset_ok_callback ,
off_d ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( off_d - > dlg ) - > action_area ) , button , TRUE , TRUE , 0 ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
button = gtk_button_new_with_label ( " Cancel " ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) offset_cancel_callback ,
off_d ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( off_d - > dlg ) - > action_area ) , button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
/* The vbox for first column of options */
vbox = gtk_vbox_new ( FALSE , 1 ) ;
1998-12-04 07:01:44 +08:00
gtk_container_set_border_width ( GTK_CONTAINER ( vbox ) , 1 ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( off_d - > dlg ) - > vbox ) , vbox , TRUE , TRUE , 0 ) ;
/* the table for offsets */
table = gtk_table_new ( 2 , 2 , FALSE ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , table , TRUE , TRUE , 0 ) ;
label = gtk_label_new ( " Offset X: " ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0.0 , 0.5 ) ;
gtk_table_attach ( GTK_TABLE ( table ) , label , 0 , 1 , 0 , 1 , GTK_FILL , GTK_FILL , 2 , 2 ) ;
off_d - > off_x_entry = gtk_entry_new ( ) ;
gtk_entry_set_text ( GTK_ENTRY ( off_d - > off_x_entry ) , " 0 " ) ;
gtk_widget_set_usize ( off_d - > off_x_entry , ENTRY_WIDTH , 0 ) ;
gtk_table_attach ( GTK_TABLE ( table ) , off_d - > off_x_entry , 1 , 2 , 0 , 1 , GTK_FILL | GTK_EXPAND , GTK_FILL , 2 , 2 ) ;
gtk_widget_show ( label ) ;
gtk_widget_show ( off_d - > off_x_entry ) ;
label = gtk_label_new ( " Offset Y: " ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0.0 , 0.5 ) ;
gtk_table_attach ( GTK_TABLE ( table ) , label , 0 , 1 , 1 , 2 , GTK_FILL , GTK_FILL , 2 , 2 ) ;
off_d - > off_y_entry = gtk_entry_new ( ) ;
gtk_entry_set_text ( GTK_ENTRY ( off_d - > off_y_entry ) , " 0 " ) ;
gtk_widget_set_usize ( off_d - > off_y_entry , ENTRY_WIDTH , 0 ) ;
gtk_table_attach ( GTK_TABLE ( table ) , off_d - > off_y_entry , 1 , 2 , 1 , 2 , GTK_FILL | GTK_EXPAND , GTK_FILL , 2 , 2 ) ;
gtk_widget_show ( label ) ;
gtk_widget_show ( off_d - > off_y_entry ) ;
gtk_widget_show ( table ) ;
/* the wrap around option */
check = gtk_check_button_new_with_label ( " Wrap-Around " ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , check , FALSE , FALSE , 0 ) ;
gtk_widget_show ( check ) ;
/* The fill options */
off_d - > fill_options = gtk_frame_new ( " Fill Options " ) ;
gtk_frame_set_shadow_type ( GTK_FRAME ( off_d - > fill_options ) , GTK_SHADOW_ETCHED_IN ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , off_d - > fill_options , FALSE , TRUE , 0 ) ;
toggle_vbox = gtk_vbox_new ( FALSE , 1 ) ;
1998-12-04 07:01:44 +08:00
gtk_container_set_border_width ( GTK_CONTAINER ( toggle_vbox ) , 5 ) ;
1997-11-25 06:05:25 +08:00
gtk_container_add ( GTK_CONTAINER ( off_d - > fill_options ) , toggle_vbox ) ;
toggle = gtk_radio_button_new_with_label ( group , " Background " ) ;
group = gtk_radio_button_group ( GTK_RADIO_BUTTON ( toggle ) ) ;
gtk_box_pack_start ( GTK_BOX ( toggle_vbox ) , toggle , FALSE , FALSE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( toggle ) , " toggled " ,
( GtkSignalFunc ) offset_toggle_update ,
& off_d - > background ) ;
gtk_toggle_button_set_state ( GTK_TOGGLE_BUTTON ( toggle ) , off_d - > background ) ;
gtk_widget_show ( toggle ) ;
1998-01-22 15:02:57 +08:00
if ( drawable_has_alpha ( drawable ) )
1997-11-25 06:05:25 +08:00
{
toggle = gtk_radio_button_new_with_label ( group , " Transparent " ) ;
group = gtk_radio_button_group ( GTK_RADIO_BUTTON ( toggle ) ) ;
gtk_box_pack_start ( GTK_BOX ( toggle_vbox ) , toggle , FALSE , FALSE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( toggle ) , " toggled " ,
( GtkSignalFunc ) offset_toggle_update ,
& off_d - > transparent ) ;
gtk_toggle_button_set_state ( GTK_TOGGLE_BUTTON ( toggle ) , off_d - > transparent ) ;
gtk_widget_show ( toggle ) ;
}
/* the by half height and half width offtion */
push = gtk_button_new_with_label ( " Offset by (x/2),(y/2) " ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , push , FALSE , FALSE , 0 ) ;
gtk_widget_show ( push ) ;
gtk_widget_show ( toggle_vbox ) ;
gtk_widget_show ( off_d - > fill_options ) ;
gtk_widget_show ( vbox ) ;
gtk_widget_show ( off_d - > dlg ) ;
/* Hook up the wrap around */
gtk_signal_connect ( GTK_OBJECT ( check ) , " toggled " ,
( GtkSignalFunc ) offset_wraparound_update ,
off_d ) ;
gtk_toggle_button_set_state ( GTK_TOGGLE_BUTTON ( check ) , off_d - > wrap_around ) ;
/* Hook up the by half */
gtk_signal_connect ( GTK_OBJECT ( push ) , " clicked " ,
( GtkSignalFunc ) offset_halfheight_update ,
off_d ) ;
}
static void
offset ( GImage * gimage ,
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ,
1997-11-25 06:05:25 +08:00
int wrap_around ,
int fill_type ,
int offset_x ,
int offset_y )
{
PixelRegion srcPR , destPR ;
TileManager * new_tiles ;
int width , height ;
int src_x , src_y ;
int dest_x , dest_y ;
unsigned char fill [ MAX_CHANNELS ] = { 0 } ;
1998-01-22 15:02:57 +08:00
if ( ! drawable )
return ;
1997-11-25 06:05:25 +08:00
width = drawable_width ( drawable ) ;
height = drawable_height ( drawable ) ;
if ( wrap_around )
{
offset_x % = width ;
offset_y % = height ;
}
else
{
offset_x = BOUNDS ( offset_x , - width , width ) ;
offset_y = BOUNDS ( offset_y , - height , height ) ;
}
if ( offset_x = = 0 & & offset_y = = 0 )
return ;
new_tiles = tile_manager_new ( width , height , drawable_bytes ( drawable ) ) ;
if ( offset_x > = 0 )
{
src_x = 0 ;
dest_x = offset_x ;
width = BOUNDS ( ( width - offset_x ) , 0 , width ) ;
}
else
{
src_x = - offset_x ;
dest_x = 0 ;
width = BOUNDS ( ( width + offset_x ) , 0 , width ) ;
}
if ( offset_y > = 0 )
{
src_y = 0 ;
dest_y = offset_y ;
height = BOUNDS ( ( height - offset_y ) , 0 , height ) ;
}
else
{
src_y = - offset_y ;
dest_y = 0 ;
height = BOUNDS ( ( height + offset_y ) , 0 , height ) ;
}
/* Copy the center region */
if ( width & & height )
{
pixel_region_init ( & srcPR , drawable_data ( drawable ) , src_x , src_y , width , height , FALSE ) ;
pixel_region_init ( & destPR , new_tiles , dest_x , dest_y , width , height , TRUE ) ;
copy_region ( & srcPR , & destPR ) ;
}
/* Copy appropriately for wrap around */
if ( wrap_around = = TRUE )
{
if ( offset_x > = 0 & & offset_y > = 0 )
{
src_x = drawable_width ( drawable ) - offset_x ;
src_y = drawable_height ( drawable ) - offset_y ;
}
else if ( offset_x > = 0 & & offset_y < 0 )
{
src_x = drawable_width ( drawable ) - offset_x ;
src_y = 0 ;
}
else if ( offset_x < 0 & & offset_y > = 0 )
{
src_x = 0 ;
src_y = drawable_height ( drawable ) - offset_y ;
}
else if ( offset_x < 0 & & offset_y < 0 )
{
src_x = 0 ;
src_y = 0 ;
}
dest_x = ( src_x + offset_x ) % drawable_width ( drawable ) ;
if ( dest_x < 0 )
dest_x = drawable_width ( drawable ) + dest_x ;
dest_y = ( src_y + offset_y ) % drawable_height ( drawable ) ;
if ( dest_y < 0 )
dest_y = drawable_height ( drawable ) + dest_y ;
/* intersecting region */
if ( offset_x ! = 0 & & offset_y ! = 0 )
{
pixel_region_init ( & srcPR , drawable_data ( drawable ) , src_x , src_y ,
ABS ( offset_x ) , ABS ( offset_y ) , FALSE ) ;
pixel_region_init ( & destPR , new_tiles , dest_x , dest_y , ABS ( offset_x ) , ABS ( offset_y ) , TRUE ) ;
copy_region ( & srcPR , & destPR ) ;
}
/* X offset */
if ( offset_x ! = 0 )
{
if ( offset_y > = 0 )
{
pixel_region_init ( & srcPR , drawable_data ( drawable ) , src_x , 0 ,
ABS ( offset_x ) , drawable_height ( drawable ) - ABS ( offset_y ) , FALSE ) ;
pixel_region_init ( & destPR , new_tiles , dest_x , dest_y + offset_y ,
ABS ( offset_x ) , drawable_height ( drawable ) - ABS ( offset_y ) , TRUE ) ;
}
else if ( offset_y < 0 )
{
pixel_region_init ( & srcPR , drawable_data ( drawable ) , src_x , src_y - offset_y ,
ABS ( offset_x ) , drawable_height ( drawable ) - ABS ( offset_y ) , FALSE ) ;
pixel_region_init ( & destPR , new_tiles , dest_x , 0 ,
ABS ( offset_x ) , drawable_height ( drawable ) - ABS ( offset_y ) , TRUE ) ;
}
copy_region ( & srcPR , & destPR ) ;
}
/* X offset */
if ( offset_y ! = 0 )
{
if ( offset_x > = 0 )
{
pixel_region_init ( & srcPR , drawable_data ( drawable ) , 0 , src_y ,
drawable_width ( drawable ) - ABS ( offset_x ) , ABS ( offset_y ) , FALSE ) ;
pixel_region_init ( & destPR , new_tiles , dest_x + offset_x , dest_y ,
drawable_width ( drawable ) - ABS ( offset_x ) , ABS ( offset_y ) , TRUE ) ;
}
else if ( offset_x < 0 )
{
pixel_region_init ( & srcPR , drawable_data ( drawable ) , src_x - offset_x , src_y ,
drawable_width ( drawable ) - ABS ( offset_x ) , ABS ( offset_y ) , FALSE ) ;
pixel_region_init ( & destPR , new_tiles , 0 , dest_y ,
drawable_width ( drawable ) - ABS ( offset_x ) , ABS ( offset_y ) , TRUE ) ;
}
copy_region ( & srcPR , & destPR ) ;
}
}
/* Otherwise, fill the vacated regions */
else
{
if ( fill_type = = OFFSET_BACKGROUND )
{
palette_get_background ( & fill [ 0 ] , & fill [ 1 ] , & fill [ 2 ] ) ;
if ( drawable_has_alpha ( drawable ) )
1998-01-25 09:24:46 +08:00
fill [ drawable_bytes ( drawable ) - 1 ] = OPAQUE_OPACITY ;
1997-11-25 06:05:25 +08:00
}
if ( offset_x > = 0 & & offset_y > = 0 )
{
dest_x = 0 ;
dest_y = 0 ;
}
else if ( offset_x > = 0 & & offset_y < 0 )
{
dest_x = 0 ;
dest_y = drawable_height ( drawable ) + offset_y ;
}
else if ( offset_x < 0 & & offset_y > = 0 )
{
dest_x = drawable_width ( drawable ) + offset_x ;
dest_y = 0 ;
}
else if ( offset_x < 0 & & offset_y < 0 )
{
dest_x = drawable_width ( drawable ) + offset_x ;
dest_y = drawable_height ( drawable ) + offset_y ;
}
/* intersecting region */
if ( offset_x ! = 0 & & offset_y ! = 0 )
{
pixel_region_init ( & destPR , new_tiles , dest_x , dest_y , ABS ( offset_x ) , ABS ( offset_y ) , TRUE ) ;
color_region ( & destPR , fill ) ;
}
/* X offset */
if ( offset_x ! = 0 )
{
if ( offset_y > = 0 )
pixel_region_init ( & destPR , new_tiles , dest_x , dest_y + offset_y ,
ABS ( offset_x ) , drawable_height ( drawable ) - ABS ( offset_y ) , TRUE ) ;
else if ( offset_y < 0 )
pixel_region_init ( & destPR , new_tiles , dest_x , 0 ,
ABS ( offset_x ) , drawable_height ( drawable ) - ABS ( offset_y ) , TRUE ) ;
color_region ( & destPR , fill ) ;
}
/* X offset */
if ( offset_y ! = 0 )
{
if ( offset_x > = 0 )
pixel_region_init ( & destPR , new_tiles , dest_x + offset_x , dest_y ,
drawable_width ( drawable ) - ABS ( offset_x ) , ABS ( offset_y ) , TRUE ) ;
else if ( offset_x < 0 )
pixel_region_init ( & destPR , new_tiles , 0 , dest_y ,
drawable_width ( drawable ) - ABS ( offset_x ) , ABS ( offset_y ) , TRUE ) ;
color_region ( & destPR , fill ) ;
}
}
/* push an undo */
1998-10-04 04:14:00 +08:00
drawable_apply_image ( drawable , 0 , 0 ,
drawable_width ( drawable ) , drawable_height ( drawable ) ,
1997-11-25 06:05:25 +08:00
drawable_data ( drawable ) , FALSE ) ;
/* swap the tiles */
1998-01-22 15:02:57 +08:00
drawable - > tiles = new_tiles ;
1997-11-25 06:05:25 +08:00
1998-09-27 04:07:46 +08:00
1997-11-25 06:05:25 +08:00
/* update the drawable */
1998-10-04 04:14:00 +08:00
drawable_update ( drawable , 0 , 0 ,
drawable_width ( drawable ) , drawable_height ( drawable ) ) ;
1997-11-25 06:05:25 +08:00
}
/*
* Interface callbacks
*/
static void
offset_ok_callback ( GtkWidget * widget ,
gpointer data )
{
OffsetDialog * off_d ;
GImage * gimage ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
int offset_x , offset_y ;
int fill_type ;
off_d = ( OffsetDialog * ) data ;
1998-06-29 08:24:44 +08:00
if ( ( gimage = off_d - > gimage ) ! = NULL )
1997-11-25 06:05:25 +08:00
{
1998-01-22 15:02:57 +08:00
drawable = gimage_active_drawable ( gimage ) ;
1997-11-25 06:05:25 +08:00
offset_x = ( int ) atof ( gtk_entry_get_text ( GTK_ENTRY ( off_d - > off_x_entry ) ) ) ;
offset_y = ( int ) atof ( gtk_entry_get_text ( GTK_ENTRY ( off_d - > off_y_entry ) ) ) ;
if ( off_d - > transparent )
fill_type = OFFSET_TRANSPARENT ;
else
fill_type = OFFSET_BACKGROUND ;
1998-01-22 15:02:57 +08:00
offset ( gimage , drawable , off_d - > wrap_around , fill_type , offset_x , offset_y ) ;
1997-11-25 06:05:25 +08:00
gdisplays_flush ( ) ;
}
gtk_widget_destroy ( off_d - > dlg ) ;
g_free ( off_d ) ;
}
static gint
offset_delete_callback ( GtkWidget * widget ,
GdkEvent * event ,
gpointer data )
{
offset_cancel_callback ( widget , data ) ;
1998-03-13 06:01:43 +08:00
return TRUE ;
1997-11-25 06:05:25 +08:00
}
static void
offset_cancel_callback ( GtkWidget * widget ,
gpointer data )
{
OffsetDialog * off_d ;
off_d = ( OffsetDialog * ) data ;
gtk_widget_destroy ( off_d - > dlg ) ;
g_free ( off_d ) ;
}
static void
offset_toggle_update ( GtkWidget * widget ,
gpointer data )
{
int * toggle_val ;
toggle_val = ( int * ) data ;
if ( GTK_TOGGLE_BUTTON ( widget ) - > active )
* toggle_val = TRUE ;
else
* toggle_val = FALSE ;
}
static void
offset_wraparound_update ( GtkWidget * widget ,
gpointer data )
{
OffsetDialog * off_d ;
off_d = ( OffsetDialog * ) data ;
if ( GTK_TOGGLE_BUTTON ( widget ) - > active )
off_d - > wrap_around = TRUE ;
else
off_d - > wrap_around = FALSE ;
gtk_widget_set_sensitive ( off_d - > fill_options , ! off_d - > wrap_around ) ;
}
static void
offset_halfheight_update ( GtkWidget * widget ,
gpointer data )
{
OffsetDialog * off_d ;
GImage * gimage ;
gchar buffer [ 16 ] ;
off_d = ( OffsetDialog * ) data ;
1998-06-29 08:24:44 +08:00
gimage = off_d - > gimage ;
1997-11-25 06:05:25 +08:00
sprintf ( buffer , " %d " , gimage - > width / 2 ) ;
gtk_entry_set_text ( GTK_ENTRY ( off_d - > off_x_entry ) , buffer ) ;
sprintf ( buffer , " %d " , gimage - > height / 2 ) ;
gtk_entry_set_text ( GTK_ENTRY ( off_d - > off_y_entry ) , buffer ) ;
}
/*
* Procedure database functions and data structures
*/
/*
* Procedure database functions and data structures
*/
/* The offset procedure definition */
ProcArg channel_ops_offset_args [ ] =
{
{ PDB_DRAWABLE ,
" drawable " ,
" the drawable to offset "
} ,
{ PDB_INT32 ,
" wrap_around " ,
" wrap image around or fill vacated regions "
} ,
{ PDB_INT32 ,
" fill_type " ,
" fill vacated regions of drawable with background or transparent: { OFFSET_BACKGROUND (0), OFFSET_TRANSPARENT (1) } "
} ,
{ PDB_INT32 ,
" offset_x " ,
" offset by this amount in X direction "
} ,
{ PDB_INT32 ,
" offset_y " ,
" offset by this amount in Y direction "
}
} ;
ProcRecord channel_ops_offset_proc =
{
" gimp_channel_ops_offset " ,
" Offset the drawable by the specified amounts in the X and Y directions " ,
" This procedure offsets the specified drawable by the amounts specified by 'offset_x' and 'offset_y'. If 'wrap_around' is set to TRUE, then portions of the drawable which are offset out of bounds are wrapped around. Alternatively, the undefined regions of the drawable can be filled with transparency or the background color, as specified by the 'fill_type' parameter. " ,
" Spencer Kimball & Peter Mattis " ,
" Spencer Kimball & Peter Mattis " ,
" 1997 " ,
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
5 ,
1997-11-25 06:05:25 +08:00
channel_ops_offset_args ,
/* Output arguments */
0 ,
NULL ,
/* Exec method */
{ { channel_ops_offset_invoker } } ,
} ;
static Argument *
channel_ops_offset_invoker ( Argument * args )
{
int success = TRUE ;
int int_value ;
GImage * gimage ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
int wrap_around ;
int fill_type ;
int offset_x ;
int offset_y ;
if ( success )
{
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
}
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
wrap_around = ( args [ 1 ] . value . pdb_int ) ? TRUE : FALSE ;
1997-11-25 06:05:25 +08:00
}
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
fill_type = args [ 2 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
if ( fill_type < OFFSET_BACKGROUND | | fill_type > OFFSET_TRANSPARENT )
success = FALSE ;
}
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
offset_x = args [ 3 ] . value . pdb_int ;
offset_y = args [ 4 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
}
if ( success )
1998-01-22 15:02:57 +08:00
offset ( gimage , drawable , wrap_around , fill_type , offset_x , offset_y ) ;
1997-11-25 06:05:25 +08:00
return procedural_db_return_args ( & channel_ops_offset_proc , success ) ;
}