
2007-12-25 Michael Natterer <mitch@gimp.org> * app/actions/channels-commands.c * app/actions/colormap-actions.c * app/actions/colormap-commands.c * app/actions/image-commands.c * app/core/gimp-edit.c * app/core/gimpdrawable-preview.c * app/core/gimpimage-colorhash.c * app/core/gimpimage-colormap.c * app/core/gimpimage-convert.c * app/core/gimpimage-crop.c * app/core/gimpimage-duplicate.c * app/core/gimpimage-flip.c * app/core/gimpimage-guides.c * app/core/gimpimage-merge.c * app/core/gimpimage-preview.c * app/core/gimpimage-quick-mask.c * app/core/gimpimage-resize.c * app/core/gimpimage-rotate.c * app/core/gimpimage-sample-points.c * app/core/gimpimage-scale.c * app/core/gimpimage-snap.c * app/core/gimpimage.c * app/core/gimpimagefile.c * app/core/gimpimageundo.c * app/core/gimpitem-preview.c * app/core/gimpitem.c * app/core/gimplayer.c * app/core/gimppalette-import.c * app/core/gimpprojection-construct.c * app/core/gimpprojection.c * app/core/gimpselection.c * app/core/gimpundo.c * app/dialogs/layer-options-dialog.c * app/dialogs/print-size-dialog.c * app/display/gimpdisplay.c * app/display/gimpdisplayshell-draw.c * app/display/gimpdisplayshell-scale.c * app/display/gimpdisplayshell-scroll.c * app/display/gimpdisplayshell-title.c * app/display/gimpdisplayshell-transform.c * app/display/gimpdisplayshell.c * app/display/gimpstatusbar.c * app/file/file-open.c * app/paint/gimppaintoptions.c * app/tools/gimpaligntool.c * app/tools/gimpcolortool.c * app/tools/gimpeditselectiontool.c * app/tools/gimpiscissorstool.c * app/tools/gimpmeasuretool.c * app/tools/gimpmovetool.c * app/tools/gimpperspectiveclonetool.c * app/tools/gimprectangleselecttool.c * app/tools/gimprectangletool.c * app/tools/gimprotatetool.c * app/vectors/gimpvectors-export.c * app/vectors/gimpvectors-import.c * app/vectors/gimpvectors.c * app/widgets/gimpimagepropview.c * app/widgets/gimpnavigationview.c * app/widgets/gimpselectioneditor.c * app/widgets/gimpviewrendererdrawable.c * app/widgets/gimpviewrendererimage.c * app/xcf/xcf-load.c * app/xcf/xcf-save.c * tools/pdbgen/pdb/guides.pdb * tools/pdbgen/pdb/image.pdb: use accessors for many image properties. * app/pdb/guides_cmds.c * app/pdb/image_cmds.c: regenerated. svn path=/trunk/; revision=24432
183 lines
5.4 KiB
C
183 lines
5.4 KiB
C
/* GIMP - The GNU 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 "libgimpmath/gimpmath.h"
|
|
|
|
#include "core-types.h"
|
|
|
|
#include "gimp.h"
|
|
#include "gimpimage.h"
|
|
#include "gimpimage-sample-points.h"
|
|
#include "gimpimage-undo-push.h"
|
|
#include "gimpsamplepoint.h"
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
/* public functions */
|
|
|
|
GimpSamplePoint *
|
|
gimp_image_add_sample_point_at_pos (GimpImage *image,
|
|
gint x,
|
|
gint y,
|
|
gboolean push_undo)
|
|
{
|
|
GimpSamplePoint *sample_point;
|
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL);
|
|
g_return_val_if_fail (x >= 0 && x < gimp_image_get_width (image), NULL);
|
|
g_return_val_if_fail (y >= 0 && y < gimp_image_get_height (image), NULL);
|
|
|
|
sample_point = gimp_sample_point_new (image->gimp->next_sample_point_ID++);
|
|
|
|
if (push_undo)
|
|
gimp_image_undo_push_sample_point (image, _("Add Sample Point"),
|
|
sample_point);
|
|
|
|
gimp_image_add_sample_point (image, sample_point, x, y);
|
|
gimp_sample_point_unref (sample_point);
|
|
|
|
return sample_point;
|
|
}
|
|
|
|
void
|
|
gimp_image_add_sample_point (GimpImage *image,
|
|
GimpSamplePoint *sample_point,
|
|
gint x,
|
|
gint y)
|
|
{
|
|
g_return_if_fail (GIMP_IS_IMAGE (image));
|
|
g_return_if_fail (sample_point != NULL);
|
|
g_return_if_fail (x >= 0);
|
|
g_return_if_fail (y >= 0);
|
|
g_return_if_fail (x < gimp_image_get_width (image));
|
|
g_return_if_fail (y < gimp_image_get_height (image));
|
|
|
|
image->sample_points = g_list_append (image->sample_points, sample_point);
|
|
|
|
sample_point->x = x;
|
|
sample_point->y = y;
|
|
gimp_sample_point_ref (sample_point);
|
|
|
|
gimp_image_sample_point_added (image, sample_point);
|
|
gimp_image_update_sample_point (image, sample_point);
|
|
}
|
|
|
|
void
|
|
gimp_image_remove_sample_point (GimpImage *image,
|
|
GimpSamplePoint *sample_point,
|
|
gboolean push_undo)
|
|
{
|
|
GList *list;
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (image));
|
|
g_return_if_fail (sample_point != NULL);
|
|
|
|
gimp_image_update_sample_point (image, sample_point);
|
|
|
|
if (push_undo)
|
|
gimp_image_undo_push_sample_point (image, _("Remove Sample Point"),
|
|
sample_point);
|
|
|
|
list = g_list_find (image->sample_points, sample_point);
|
|
if (list)
|
|
list = g_list_next (list);
|
|
|
|
image->sample_points = g_list_remove (image->sample_points, sample_point);
|
|
|
|
gimp_image_sample_point_removed (image, sample_point);
|
|
|
|
sample_point->x = -1;
|
|
sample_point->y = -1;
|
|
gimp_sample_point_unref (sample_point);
|
|
|
|
while (list)
|
|
{
|
|
gimp_image_update_sample_point (image, list->data);
|
|
list = g_list_next (list);
|
|
}
|
|
}
|
|
|
|
void
|
|
gimp_image_move_sample_point (GimpImage *image,
|
|
GimpSamplePoint *sample_point,
|
|
gint x,
|
|
gint y,
|
|
gboolean push_undo)
|
|
{
|
|
g_return_if_fail (GIMP_IS_IMAGE (image));
|
|
g_return_if_fail (sample_point != NULL);
|
|
g_return_if_fail (x >= 0);
|
|
g_return_if_fail (y >= 0);
|
|
g_return_if_fail (x < gimp_image_get_width (image));
|
|
g_return_if_fail (y < gimp_image_get_height (image));
|
|
|
|
if (push_undo)
|
|
gimp_image_undo_push_sample_point (image, _("Move Sample Point"),
|
|
sample_point);
|
|
|
|
gimp_image_update_sample_point (image, sample_point);
|
|
sample_point->x = x;
|
|
sample_point->y = y;
|
|
gimp_image_update_sample_point (image, sample_point);
|
|
}
|
|
|
|
GimpSamplePoint *
|
|
gimp_image_find_sample_point (GimpImage *image,
|
|
gdouble x,
|
|
gdouble y,
|
|
gdouble epsilon_x,
|
|
gdouble epsilon_y)
|
|
{
|
|
GList *list;
|
|
GimpSamplePoint *ret = NULL;
|
|
gdouble mindist = G_MAXDOUBLE;
|
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL);
|
|
g_return_val_if_fail (epsilon_x > 0 && epsilon_y > 0, NULL);
|
|
|
|
if (x < 0 || x >= gimp_image_get_width (image) ||
|
|
y < 0 || y >= gimp_image_get_height (image))
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
for (list = image->sample_points; list; list = g_list_next (list))
|
|
{
|
|
GimpSamplePoint *sample_point = list->data;
|
|
gdouble dist;
|
|
|
|
if (sample_point->x < 0 || sample_point->y < 0)
|
|
continue;
|
|
|
|
dist = hypot ((sample_point->x + 0.5) - x,
|
|
(sample_point->y + 0.5) - y);
|
|
if (dist < MIN (epsilon_y, mindist))
|
|
{
|
|
mindist = dist;
|
|
ret = sample_point;
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|