
2004-05-12 Michael Natterer <mitch@gimp.org> * app/config/gimpconfig-deserialize.c * app/config/gimpscanner.c * app/core/gimp-edit.c * app/core/gimpchannel-combine.c * app/core/gimpcontainer.c * app/core/gimpdrawable-bucket-fill.c * app/core/gimpdrawable-combine.c * app/core/gimpdrawable.c * app/core/gimpgradient.c * app/core/gimpimage-flip.c * app/core/gimpimage-merge.c * app/core/gimpimage-projection.c * app/core/gimpimage.c * app/display/gimpdisplay-handlers.c * app/display/gimpdisplayshell-callbacks.c * app/display/gimpprogress.c * app/gui/info-dialog.c * app/gui/module-browser.c * app/gui/offset-dialog.c * app/plug-in/plug-in.c * app/tools/gimpdrawtool.c * app/tools/tool_manager.c * app/widgets/gimpactiongroup.c * app/widgets/gimpdialogfactory.c * app/widgets/gimpgradienteditor.c * app/widgets/gimpitemfactory.c * app/widgets/gimppropwidgets.c * app/widgets/gimpwidgets-utils.c * app/xcf/xcf-save.c * libgimp/gimpexport.c * libgimpwidgets/gimphelpui.c * libgimpwidgets/gimppixmap.c * libgimpwidgets/gimpunitmenu.c: replaced G_GNUC_FUNCTION, G_GNUC_PRETTY_FUNCTION, G_STRLOC and hardcoded function names in g_warning()s by G_STRFUNC.
150 lines
4.1 KiB
C
150 lines
4.1 KiB
C
/* 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
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include "core-types.h"
|
|
|
|
#include "gimp.h"
|
|
#include "gimpcontext.h"
|
|
#include "gimpimage.h"
|
|
#include "gimpimage-flip.h"
|
|
#include "gimpimage-guides.h"
|
|
#include "gimpimage-undo.h"
|
|
#include "gimpimage-undo-push.h"
|
|
#include "gimpitem.h"
|
|
#include "gimplist.h"
|
|
|
|
|
|
void
|
|
gimp_image_flip (GimpImage *gimage,
|
|
GimpContext *context,
|
|
GimpOrientationType flip_type,
|
|
GimpProgressFunc progress_func,
|
|
gpointer progress_data)
|
|
{
|
|
GimpItem *item;
|
|
GList *list;
|
|
gdouble axis;
|
|
gint progress_max;
|
|
gint progress_current = 1;
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (gimage));
|
|
g_return_if_fail (GIMP_IS_CONTEXT (context));
|
|
|
|
gimp_set_busy (gimage->gimp);
|
|
|
|
switch (flip_type)
|
|
{
|
|
case GIMP_ORIENTATION_HORIZONTAL:
|
|
axis = (gdouble) gimage->width / 2.0;
|
|
break;
|
|
|
|
case GIMP_ORIENTATION_VERTICAL:
|
|
axis = (gdouble) gimage->height / 2.0;
|
|
break;
|
|
|
|
default:
|
|
g_warning ("%s: unknown flip_type", G_STRFUNC);
|
|
return;
|
|
}
|
|
|
|
progress_max = (gimage->channels->num_children +
|
|
gimage->layers->num_children +
|
|
gimage->vectors->num_children +
|
|
1 /* selection */);
|
|
|
|
gimp_image_undo_group_start (gimage, GIMP_UNDO_GROUP_IMAGE_FLIP, NULL);
|
|
|
|
/* Flip all channels */
|
|
for (list = GIMP_LIST (gimage->channels)->list;
|
|
list;
|
|
list = g_list_next (list))
|
|
{
|
|
item = (GimpItem *) list->data;
|
|
|
|
gimp_item_flip (item, context, flip_type, axis, TRUE);
|
|
|
|
if (progress_func)
|
|
(* progress_func) (0, progress_max, progress_current++, progress_data);
|
|
}
|
|
|
|
/* Flip all vectors */
|
|
for (list = GIMP_LIST (gimage->vectors)->list;
|
|
list;
|
|
list = g_list_next (list))
|
|
{
|
|
item = (GimpItem *) list->data;
|
|
|
|
gimp_item_flip (item, context, flip_type, axis, FALSE);
|
|
|
|
if (progress_func)
|
|
(* progress_func) (0, progress_max, progress_current++, progress_data);
|
|
}
|
|
|
|
/* Don't forget the selection mask! */
|
|
gimp_item_flip (GIMP_ITEM (gimp_image_get_mask (gimage)), context,
|
|
flip_type, axis, TRUE);
|
|
|
|
if (progress_func)
|
|
(* progress_func) (0, progress_max, progress_current++, progress_data);
|
|
|
|
/* Flip all layers */
|
|
for (list = GIMP_LIST (gimage->layers)->list;
|
|
list;
|
|
list = g_list_next (list))
|
|
{
|
|
item = (GimpItem *) list->data;
|
|
|
|
gimp_item_flip (item, context, flip_type, axis, FALSE);
|
|
|
|
if (progress_func)
|
|
(* progress_func) (0, progress_max, progress_current++, progress_data);
|
|
}
|
|
|
|
/* Flip all Guides */
|
|
for (list = gimage->guides; list; list = g_list_next (list))
|
|
{
|
|
GimpGuide *guide = list->data;
|
|
|
|
switch (guide->orientation)
|
|
{
|
|
case GIMP_ORIENTATION_HORIZONTAL:
|
|
if (flip_type == GIMP_ORIENTATION_VERTICAL)
|
|
gimp_image_move_guide (gimage, guide,
|
|
gimage->height - guide->position, TRUE);
|
|
break;
|
|
|
|
case GIMP_ORIENTATION_VERTICAL:
|
|
if (flip_type == GIMP_ORIENTATION_HORIZONTAL)
|
|
gimp_image_move_guide (gimage, guide,
|
|
gimage->width - guide->position, TRUE);
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
gimp_image_undo_group_end (gimage);
|
|
|
|
gimp_unset_busy (gimage->gimp);
|
|
}
|