app: make the shift-coordinates-by-anchor functions public API

This commit is contained in:
Michael Natterer 2010-11-09 11:27:51 +01:00
parent 3f6a70f7fe
commit 1541d8b666
4 changed files with 207 additions and 134 deletions

View File

@ -37,6 +37,8 @@ libappdisplay_a_sources = \
gimpcanvashandle.h \
gimpcanvasitem.c \
gimpcanvasitem.h \
gimpcanvasitem-utils.c \
gimpcanvasitem-utils.h \
gimpcanvaslayerboundary.c \
gimpcanvaslayerboundary.h \
gimpcanvasline.c \

View File

@ -31,6 +31,7 @@
#include "widgets/gimpcairo.h"
#include "gimpcanvashandle.h"
#include "gimpcanvasitem-utils.h"
#include "gimpdisplayshell.h"
#include "gimpdisplayshell-transform.h"
@ -245,130 +246,6 @@ gimp_canvas_handle_get_property (GObject *object,
}
}
static inline void
gimp_canvas_handle_shift_to_north_west (GimpHandleAnchor anchor,
gdouble x,
gdouble y,
gint handle_width,
gint handle_height,
gdouble *shifted_x,
gdouble *shifted_y)
{
switch (anchor)
{
case GIMP_HANDLE_ANCHOR_CENTER:
x -= handle_width / 2;
y -= handle_height / 2;
break;
case GIMP_HANDLE_ANCHOR_NORTH:
x -= handle_width / 2;
break;
case GIMP_HANDLE_ANCHOR_NORTH_WEST:
/* nothing, this is the default */
break;
case GIMP_HANDLE_ANCHOR_NORTH_EAST:
x -= handle_width;
break;
case GIMP_HANDLE_ANCHOR_SOUTH:
x -= handle_width / 2;
y -= handle_height;
break;
case GIMP_HANDLE_ANCHOR_SOUTH_WEST:
y -= handle_height;
break;
case GIMP_HANDLE_ANCHOR_SOUTH_EAST:
x -= handle_width;
y -= handle_height;
break;
case GIMP_HANDLE_ANCHOR_WEST:
y -= handle_height / 2;
break;
case GIMP_HANDLE_ANCHOR_EAST:
x -= handle_width;
y -= handle_height / 2;
break;
default:
break;
}
if (shifted_x)
*shifted_x = x;
if (shifted_y)
*shifted_y = y;
}
static inline void
gimp_canvas_handle_shift_to_center (GimpHandleAnchor anchor,
gdouble x,
gdouble y,
gint width,
gint height,
gdouble *shifted_x,
gdouble *shifted_y)
{
switch (anchor)
{
case GIMP_HANDLE_ANCHOR_CENTER:
/* nothing, this is the default */
break;
case GIMP_HANDLE_ANCHOR_NORTH:
y += height / 2;
break;
case GIMP_HANDLE_ANCHOR_NORTH_WEST:
x += width / 2;
y += height / 2;
break;
case GIMP_HANDLE_ANCHOR_NORTH_EAST:
x -= width / 2;
y += height / 2;
break;
case GIMP_HANDLE_ANCHOR_SOUTH:
y -= height / 2;
break;
case GIMP_HANDLE_ANCHOR_SOUTH_WEST:
x += width / 2;
y -= height / 2;
break;
case GIMP_HANDLE_ANCHOR_SOUTH_EAST:
x -= width / 2;
y -= height / 2;
break;
case GIMP_HANDLE_ANCHOR_WEST:
x += width / 2;
break;
case GIMP_HANDLE_ANCHOR_EAST:
x -= width / 2;
break;
default:
break;
}
if (shifted_x)
*shifted_x = x;
if (shifted_y)
*shifted_y = y;
}
static void
gimp_canvas_handle_transform (GimpCanvasItem *item,
GimpDisplayShell *shell,
@ -385,21 +262,21 @@ gimp_canvas_handle_transform (GimpCanvasItem *item,
{
case GIMP_HANDLE_SQUARE:
case GIMP_HANDLE_FILLED_SQUARE:
gimp_canvas_handle_shift_to_north_west (private->anchor,
*x, *y,
private->width,
private->height,
x, y);
gimp_canvas_item_shift_to_north_west (private->anchor,
*x, *y,
private->width,
private->height,
x, y);
break;
case GIMP_HANDLE_CIRCLE:
case GIMP_HANDLE_FILLED_CIRCLE:
case GIMP_HANDLE_CROSS:
gimp_canvas_handle_shift_to_center (private->anchor,
*x, *y,
private->width,
private->height,
x, y);
gimp_canvas_item_shift_to_center (private->anchor,
*x, *y,
private->width,
private->height,
x, y);
break;
default:

View File

@ -0,0 +1,153 @@
/* GIMP - The GNU Image Manipulation Program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* gimpcanvasitem-utils.c
* Copyright (C) 2010 Michael Natterer <mitch@gimp.org>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <gegl.h>
#include <gtk/gtk.h>
#include "display-types.h"
#include "gimpcanvasitem-utils.h"
void
gimp_canvas_item_shift_to_north_west (GimpHandleAnchor anchor,
gdouble x,
gdouble y,
gint width,
gint height,
gdouble *shifted_x,
gdouble *shifted_y)
{
switch (anchor)
{
case GIMP_HANDLE_ANCHOR_CENTER:
x -= width / 2;
y -= height / 2;
break;
case GIMP_HANDLE_ANCHOR_NORTH:
x -= width / 2;
break;
case GIMP_HANDLE_ANCHOR_NORTH_WEST:
/* nothing, this is the default */
break;
case GIMP_HANDLE_ANCHOR_NORTH_EAST:
x -= width;
break;
case GIMP_HANDLE_ANCHOR_SOUTH:
x -= width / 2;
y -= height;
break;
case GIMP_HANDLE_ANCHOR_SOUTH_WEST:
y -= height;
break;
case GIMP_HANDLE_ANCHOR_SOUTH_EAST:
x -= width;
y -= height;
break;
case GIMP_HANDLE_ANCHOR_WEST:
y -= height / 2;
break;
case GIMP_HANDLE_ANCHOR_EAST:
x -= width;
y -= height / 2;
break;
default:
break;
}
if (shifted_x)
*shifted_x = x;
if (shifted_y)
*shifted_y = y;
}
void
gimp_canvas_item_shift_to_center (GimpHandleAnchor anchor,
gdouble x,
gdouble y,
gint width,
gint height,
gdouble *shifted_x,
gdouble *shifted_y)
{
switch (anchor)
{
case GIMP_HANDLE_ANCHOR_CENTER:
/* nothing, this is the default */
break;
case GIMP_HANDLE_ANCHOR_NORTH:
y += height / 2;
break;
case GIMP_HANDLE_ANCHOR_NORTH_WEST:
x += width / 2;
y += height / 2;
break;
case GIMP_HANDLE_ANCHOR_NORTH_EAST:
x -= width / 2;
y += height / 2;
break;
case GIMP_HANDLE_ANCHOR_SOUTH:
y -= height / 2;
break;
case GIMP_HANDLE_ANCHOR_SOUTH_WEST:
x += width / 2;
y -= height / 2;
break;
case GIMP_HANDLE_ANCHOR_SOUTH_EAST:
x -= width / 2;
y -= height / 2;
break;
case GIMP_HANDLE_ANCHOR_WEST:
x += width / 2;
break;
case GIMP_HANDLE_ANCHOR_EAST:
x -= width / 2;
break;
default:
break;
}
if (shifted_x)
*shifted_x = x;
if (shifted_y)
*shifted_y = y;
}

View File

@ -0,0 +1,41 @@
/* GIMP - The GNU Image Manipulation Program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* gimpcanvasitem-utils.h
* Copyright (C) 2010 Michael Natterer <mitch@gimp.org>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef __GIMP_CANVAS_ITEM_UTILS_H__
#define __GIMP_CANVAS_ITEM_UTILS_H__
void gimp_canvas_item_shift_to_north_west (GimpHandleAnchor anchor,
gdouble x,
gdouble y,
gint width,
gint height,
gdouble *shifted_x,
gdouble *shifted_y);
void gimp_canvas_item_shift_to_center (GimpHandleAnchor anchor,
gdouble x,
gdouble y,
gint width,
gint height,
gdouble *shifted_x,
gdouble *shifted_y);
#endif /* __GIMP_CANVAS_ITEM_UTILS_H__ */