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 "appenv.h"
# include "cursorutil.h"
# include "drawable.h"
# include "flip_tool.h"
# include "gdisplay.h"
# include "temp_buf.h"
# include "transform_core.h"
# include "undo.h"
1998-01-22 15:02:57 +08:00
# include "gimage.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-01-22 15:02:57 +08:00
# include "tile_manager_pvt.h" /* ick. */
1997-11-25 06:05:25 +08:00
# define FLIP 0
typedef struct _FlipOptions FlipOptions ;
struct _FlipOptions
{
ToolType type ;
} ;
/* forward function declarations */
static Tool * tools_new_flip_horz ( void ) ;
static Tool * tools_new_flip_vert ( void ) ;
1998-01-22 15:02:57 +08:00
static TileManager * flip_tool_flip_horz ( GImage * , GimpDrawable * , TileManager * , int ) ;
static TileManager * flip_tool_flip_vert ( GImage * , GimpDrawable * , TileManager * , int ) ;
1997-11-25 06:05:25 +08:00
static void flip_change_type ( int ) ;
static Argument * flip_invoker ( Argument * ) ;
/* Static variables */
static FlipOptions * flip_options = NULL ;
static void
flip_type_callback ( GtkWidget * w ,
gpointer client_data )
{
flip_change_type ( ( long ) client_data ) ;
}
static FlipOptions *
create_flip_options ( void )
{
FlipOptions * options ;
GtkWidget * vbox ;
GtkWidget * label ;
GtkWidget * radio_box ;
GtkWidget * radio_button ;
GSList * group = NULL ;
int i ;
char * button_names [ 2 ] =
{
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_ ( " Horizontal " ) ,
N_ ( " Vertical " ) ,
1997-11-25 06:05:25 +08:00
} ;
/* the new options structure */
options = ( FlipOptions * ) g_malloc ( sizeof ( FlipOptions ) ) ;
options - > type = FLIP_HORZ ;
/* the main vbox */
vbox = gtk_vbox_new ( FALSE , 1 ) ;
/* the main label */
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 ( _ ( " Flip Tool Options " ) ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , label , FALSE , FALSE , 0 ) ;
gtk_widget_show ( label ) ;
radio_box = gtk_vbox_new ( FALSE , 2 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , radio_box , FALSE , FALSE , 0 ) ;
/* the radio buttons */
for ( i = 0 ; i < 2 ; 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 ) flip_type_callback ,
( gpointer ) ( ( long ) ( FLIP_HORZ + i ) ) ) ;
gtk_widget_show ( radio_button ) ;
}
gtk_widget_show ( radio_box ) ;
/* Register this selection options widget with the main tools options dialog */
tools_register_options ( FLIP_HORZ , vbox ) ;
tools_register_options ( FLIP_VERT , vbox ) ;
return options ;
}
static void *
flip_tool_transform_horz ( Tool * tool ,
gpointer gdisp_ptr ,
int state )
{
TransformCore * transform_core ;
GDisplay * gdisp ;
transform_core = ( TransformCore * ) tool - > private ;
gdisp = ( GDisplay * ) gdisp_ptr ;
switch ( state )
{
case INIT :
transform_info = NULL ;
break ;
case MOTION :
break ;
case RECALC :
break ;
case FINISH :
transform_core - > trans_info [ FLIP ] * = - 1.0 ;
return flip_tool_flip_horz ( gdisp - > gimage , gimage_active_drawable ( gdisp - > gimage ) ,
transform_core - > original , transform_core - > trans_info [ FLIP ] ) ;
break ;
}
return NULL ;
}
static void *
flip_tool_transform_vert ( Tool * tool ,
gpointer gdisp_ptr ,
int state )
{
TransformCore * transform_core ;
GDisplay * gdisp ;
transform_core = ( TransformCore * ) tool - > private ;
gdisp = ( GDisplay * ) gdisp_ptr ;
switch ( state )
{
case INIT :
transform_info = NULL ;
break ;
case MOTION :
break ;
case RECALC :
break ;
case FINISH :
transform_core - > trans_info [ FLIP ] * = - 1.0 ;
return flip_tool_flip_vert ( gdisp - > gimage , gimage_active_drawable ( gdisp - > gimage ) ,
transform_core - > original , transform_core - > trans_info [ FLIP ] ) ;
break ;
}
return NULL ;
}
Tool *
tools_new_flip ( )
{
if ( ! flip_options )
flip_options = create_flip_options ( ) ;
switch ( flip_options - > type )
{
case FLIP_HORZ :
return tools_new_flip_horz ( ) ;
break ;
case FLIP_VERT :
return tools_new_flip_vert ( ) ;
break ;
default :
return NULL ;
break ;
}
}
void
tools_free_flip_tool ( Tool * tool )
{
transform_core_free ( tool ) ;
}
static Tool *
tools_new_flip_horz ( )
{
Tool * tool ;
TransformCore * private ;
tool = transform_core_new ( FLIP_HORZ , NON_INTERACTIVE ) ;
private = tool - > private ;
/* set the rotation specific transformation attributes */
private - > trans_func = flip_tool_transform_horz ;
private - > trans_info [ FLIP ] = 1.0 ;
return tool ;
}
static Tool *
tools_new_flip_vert ( )
{
Tool * tool ;
TransformCore * private ;
tool = transform_core_new ( FLIP_VERT , NON_INTERACTIVE ) ;
private = tool - > private ;
/* set the rotation specific transformation attributes */
private - > trans_func = flip_tool_transform_vert ;
private - > trans_info [ FLIP ] = 1.0 ;
return tool ;
}
static TileManager *
flip_tool_flip_horz ( GImage * gimage ,
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ,
1997-11-25 06:05:25 +08:00
TileManager * orig ,
int flip )
{
TileManager * new ;
PixelRegion srcPR , destPR ;
int i ;
if ( ! orig )
return NULL ;
if ( flip > 0 )
{
1998-08-16 03:17:36 +08:00
new = tile_manager_new ( orig - > width , orig - > height , orig - > bpp ) ;
pixel_region_init ( & srcPR , orig , 0 , 0 , orig - > width , orig - > height , FALSE ) ;
pixel_region_init ( & destPR , new , 0 , 0 , orig - > width , orig - > height , TRUE ) ;
1997-11-25 06:05:25 +08:00
copy_region ( & srcPR , & destPR ) ;
new - > x = orig - > x ;
new - > y = orig - > y ;
}
else
{
1998-08-16 03:17:36 +08:00
new = tile_manager_new ( orig - > width , orig - > height , orig - > bpp ) ;
1997-11-25 06:05:25 +08:00
new - > x = orig - > x ;
new - > y = orig - > y ;
1998-08-16 03:17:36 +08:00
for ( i = 0 ; i < orig - > width ; i + + )
1997-11-25 06:05:25 +08:00
{
1998-08-16 03:17:36 +08:00
pixel_region_init ( & srcPR , orig , i , 0 , 1 , orig - > height , FALSE ) ;
pixel_region_init ( & destPR , new , ( orig - > width - i - 1 ) , 0 , 1 , orig - > height , TRUE ) ;
1997-11-25 06:05:25 +08:00
copy_region ( & srcPR , & destPR ) ;
}
}
return new ;
}
static TileManager *
flip_tool_flip_vert ( GImage * gimage ,
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ,
1997-11-25 06:05:25 +08:00
TileManager * orig ,
int flip )
{
TileManager * new ;
PixelRegion srcPR , destPR ;
int i ;
if ( ! orig )
return NULL ;
if ( flip > 0 )
{
1998-08-16 03:17:36 +08:00
new = tile_manager_new ( orig - > width , orig - > height , orig - > bpp ) ;
pixel_region_init ( & srcPR , orig , 0 , 0 , orig - > width , orig - > height , FALSE ) ;
pixel_region_init ( & destPR , new , 0 , 0 , orig - > width , orig - > height , TRUE ) ;
1997-11-25 06:05:25 +08:00
copy_region ( & srcPR , & destPR ) ;
new - > x = orig - > x ;
new - > y = orig - > y ;
}
else
{
1998-08-16 03:17:36 +08:00
new = tile_manager_new ( orig - > width , orig - > height , orig - > bpp ) ;
1997-11-25 06:05:25 +08:00
new - > x = orig - > x ;
new - > y = orig - > y ;
1998-08-16 03:17:36 +08:00
for ( i = 0 ; i < orig - > height ; i + + )
1997-11-25 06:05:25 +08:00
{
1998-08-16 03:17:36 +08:00
pixel_region_init ( & srcPR , orig , 0 , i , orig - > width , 1 , FALSE ) ;
pixel_region_init ( & destPR , new , 0 , ( orig - > height - i - 1 ) , orig - > width , 1 , TRUE ) ;
1997-11-25 06:05:25 +08:00
copy_region ( & srcPR , & destPR ) ;
}
}
return new ;
}
static void
flip_change_type ( int new_type )
{
if ( flip_options - > type ! = new_type )
{
/* change the type, free the old tool, create the new tool */
flip_options - > type = new_type ;
tools_select ( flip_options - > type ) ;
}
}
/* The flip procedure definition */
ProcArg flip_args [ ] =
{
{ PDB_DRAWABLE ,
" drawable " ,
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_ ( " the affected drawable " )
1997-11-25 06:05:25 +08:00
} ,
{ PDB_INT32 ,
" flip_type " ,
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_ ( " Type of flip: { HORIZONTAL (0), VERTICAL (1) } " )
1997-11-25 06:05:25 +08:00
}
} ;
ProcArg flip_out_args [ ] =
{
{ PDB_DRAWABLE ,
" drawable " ,
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_ ( " the flipped drawable " )
1997-11-25 06:05:25 +08:00
}
} ;
ProcRecord flip_proc =
{
" gimp_flip " ,
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_ ( " Flip the specified drawable about its center either vertically or horizontally " ) ,
N_ ( " This tool flips the specified drawable if no selection exists. If a selection exists, the portion of the drawable which lies under the selection is cut from the drawable and made into a floating selection which is then flipd by the specified amount. The return value is the ID of the flipped drawable. If there was no selection, this will be equal to the drawable ID supplied as input. Otherwise, this will be the newly created and flipd drawable. The flip type parameter indicates whether the flip will be applied horizontally or vertically. " ) ,
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
2 ,
1997-11-25 06:05:25 +08:00
flip_args ,
/* Output arguments */
1 ,
flip_out_args ,
/* Exec method */
{ { flip_invoker } } ,
} ;
static Argument *
flip_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 flip_type ;
int int_value ;
TileManager * float_tiles ;
TileManager * new_tiles ;
int new_layer ;
Layer * layer ;
Argument * return_args ;
1998-01-22 15:02:57 +08:00
drawable = NULL ;
1997-11-25 06:05:25 +08:00
flip_type = 0 ;
new_tiles = NULL ;
layer = NULL ;
/* 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
}
/* flip type */
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 [ 1 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
switch ( int_value )
{
case 0 : flip_type = 0 ; break ;
case 1 : flip_type = 1 ; break ;
default : success = FALSE ;
}
}
/* call the flip procedure */
if ( success )
{
/* Start a transform undo group */
undo_push_group_start ( gimage , TRANSFORM_CORE_UNDO ) ;
/* Cut/Copy from the specified drawable */
1998-01-22 15:02:57 +08:00
float_tiles = transform_core_cut ( gimage , drawable , & new_layer ) ;
1997-11-25 06:05:25 +08:00
/* flip the buffer */
switch ( flip_type )
{
case 0 : /* horz */
1998-01-22 15:02:57 +08:00
new_tiles = flip_tool_flip_horz ( gimage , drawable , float_tiles , - 1 ) ;
1997-11-25 06:05:25 +08:00
break ;
case 1 : /* vert */
1998-01-22 15:02:57 +08:00
new_tiles = flip_tool_flip_vert ( gimage , drawable , float_tiles , - 1 ) ;
1997-11-25 06:05:25 +08:00
break ;
}
/* free the cut/copied buffer */
tile_manager_destroy ( float_tiles ) ;
if ( new_tiles )
1998-01-22 15:02:57 +08:00
success = ( layer = transform_core_paste ( gimage , drawable , new_tiles , new_layer ) ) ! = NULL ;
1997-11-25 06:05:25 +08:00
else
success = FALSE ;
/* push the undo group end */
undo_push_group_end ( gimage ) ;
}
return_args = procedural_db_return_args ( & flip_proc , success ) ;
if ( success )
1998-01-22 15:02:57 +08:00
return_args [ 1 ] . value . pdb_int = drawable_ID ( GIMP_DRAWABLE ( layer ) ) ;
1997-11-25 06:05:25 +08:00
return return_args ;
}