* app/core/gimpimage-sample-points.c * app/core/gimpimage-sample-points.h: new files * app/actions/view-actions.c * app/actions/view-commands.c * app/actions/view-commands.h * app/config/gimprc-blurbs.h * app/core/Makefile.am * app/core/core-enums.c * app/core/core-enums.h * app/core/core-types.h * app/core/gimp.c * app/core/gimp.h * app/core/gimpimage-crop.c * app/core/gimpimage-duplicate.c * app/core/gimpimage-flip.c * app/core/gimpimage-rotate.c * app/core/gimpimage-scale.c * app/core/gimpimage-undo-push.c * app/core/gimpimage-undo-push.h * app/core/gimpimage.c * app/core/gimpimage.h * app/display/gimpdisplayoptions.c * app/display/gimpdisplayoptions.h * app/display/gimpdisplayshell-appearance.c * app/display/gimpdisplayshell-appearance.h * app/display/gimpdisplayshell-callbacks.c * app/display/gimpdisplayshell-draw.c * app/display/gimpdisplayshell-draw.h * app/display/gimpdisplayshell-handlers.c * app/display/gimpdisplayshell.c * app/display/gimpdisplayshell.h * app/widgets/gimphelp-ids.h * menus/image-menu.xml.in: add support for a list of "sample points" in each image, coded and handled very similarly to guides, for use mainly in color correction. See bug #137776.
188 lines
5.4 KiB
C
188 lines
5.4 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 "gimpimage.h"
|
|
#include "gimpimage-sample-points.h"
|
|
#include "gimpimage-undo-push.h"
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
/* public functions */
|
|
|
|
GimpSamplePoint *
|
|
gimp_image_add_sample_point_at_pos (GimpImage *gimage,
|
|
gint x,
|
|
gint y,
|
|
gboolean push_undo)
|
|
{
|
|
GimpSamplePoint *sample_point;
|
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (gimage), NULL);
|
|
g_return_val_if_fail (x >= 0 && x <= gimage->width, NULL);
|
|
g_return_val_if_fail (y >= 0 && y <= gimage->height, NULL);
|
|
|
|
sample_point = g_new0 (GimpSamplePoint, 1);
|
|
|
|
sample_point->ref_count = 1;
|
|
sample_point->x = -1;
|
|
sample_point->y = -1;
|
|
sample_point->sample_point_ID = gimage->gimp->next_sample_point_ID++;
|
|
|
|
if (push_undo)
|
|
gimp_image_undo_push_image_sample_point (gimage, _("Add Sample_Point"),
|
|
sample_point);
|
|
|
|
gimp_image_add_sample_point (gimage, sample_point, x, y);
|
|
gimp_image_sample_point_unref (sample_point);
|
|
|
|
return sample_point;
|
|
}
|
|
|
|
GimpSamplePoint *
|
|
gimp_image_sample_point_ref (GimpSamplePoint *sample_point)
|
|
{
|
|
g_return_val_if_fail (sample_point != NULL, NULL);
|
|
|
|
sample_point->ref_count++;
|
|
|
|
return sample_point;
|
|
}
|
|
|
|
void
|
|
gimp_image_sample_point_unref (GimpSamplePoint *sample_point)
|
|
{
|
|
g_return_if_fail (sample_point != NULL);
|
|
|
|
sample_point->ref_count--;
|
|
|
|
if (sample_point->ref_count < 1)
|
|
g_free (sample_point);
|
|
}
|
|
|
|
void
|
|
gimp_image_add_sample_point (GimpImage *gimage,
|
|
GimpSamplePoint *sample_point,
|
|
gint x,
|
|
gint y)
|
|
{
|
|
g_return_if_fail (GIMP_IS_IMAGE (gimage));
|
|
g_return_if_fail (sample_point != NULL);
|
|
g_return_if_fail (x >= 0);
|
|
g_return_if_fail (y >= 0);
|
|
g_return_if_fail (x <= gimage->width);
|
|
g_return_if_fail (y <= gimage->height);
|
|
|
|
gimage->sample_points = g_list_prepend (gimage->sample_points, sample_point);
|
|
|
|
sample_point->x = x;
|
|
sample_point->y = y;
|
|
gimp_image_sample_point_ref (sample_point);
|
|
|
|
gimp_image_update_sample_point (gimage, sample_point);
|
|
}
|
|
|
|
void
|
|
gimp_image_remove_sample_point (GimpImage *gimage,
|
|
GimpSamplePoint *sample_point,
|
|
gboolean push_undo)
|
|
{
|
|
g_return_if_fail (GIMP_IS_IMAGE (gimage));
|
|
g_return_if_fail (sample_point != NULL);
|
|
|
|
gimp_image_update_sample_point (gimage, sample_point);
|
|
|
|
if (push_undo)
|
|
gimp_image_undo_push_image_sample_point (gimage, _("Remove Sample Point"), sample_point);
|
|
|
|
gimage->sample_points = g_list_remove (gimage->sample_points, sample_point);
|
|
|
|
sample_point->x = -1;
|
|
sample_point->y = -1;
|
|
gimp_image_sample_point_unref (sample_point);
|
|
}
|
|
|
|
void
|
|
gimp_image_move_sample_point (GimpImage *gimage,
|
|
GimpSamplePoint *sample_point,
|
|
gint x,
|
|
gint y,
|
|
gboolean push_undo)
|
|
{
|
|
g_return_if_fail (GIMP_IS_IMAGE (gimage));
|
|
g_return_if_fail (sample_point != NULL);
|
|
g_return_if_fail (x >= 0);
|
|
g_return_if_fail (y >= 0);
|
|
g_return_if_fail (x <= gimage->width);
|
|
g_return_if_fail (y <= gimage->height);
|
|
|
|
if (push_undo)
|
|
gimp_image_undo_push_image_sample_point (gimage, _("Move Sample Point"), sample_point);
|
|
|
|
gimp_image_update_sample_point (gimage, sample_point);
|
|
sample_point->x = x;
|
|
sample_point->y = y;
|
|
gimp_image_update_sample_point (gimage, sample_point);
|
|
}
|
|
|
|
GimpSamplePoint *
|
|
gimp_image_find_sample_point (GimpImage *gimage,
|
|
gdouble x,
|
|
gdouble y,
|
|
gdouble epsilon_x,
|
|
gdouble epsilon_y)
|
|
{
|
|
GList *list;
|
|
GimpSamplePoint *sample_point;
|
|
GimpSamplePoint *ret = NULL;
|
|
gdouble dist;
|
|
gdouble mindist = G_MAXDOUBLE;
|
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (gimage), NULL);
|
|
g_return_val_if_fail (epsilon_x > 0 && epsilon_y > 0, NULL);
|
|
|
|
if (x < 0 || x >= gimage->width ||
|
|
y < 0 || y >= gimage->height)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
for (list = gimage->sample_points; list; list = g_list_next (list))
|
|
{
|
|
sample_point = (GimpSamplePoint *) list->data;
|
|
|
|
if (sample_point->x < 0 || sample_point->y < 0)
|
|
continue;
|
|
|
|
dist = hypot ( sample_point->x - x, sample_point->y - y);
|
|
if (dist < MIN (epsilon_y, mindist))
|
|
{
|
|
mindist = dist;
|
|
ret = sample_point;
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|