gimp/app/gegl/gimpcageconfig.h

145 lines
5.3 KiB
C
Raw Normal View History

/* GIMP - The GNU Image Manipulation Program
*
* gimpcageconfig.h
* Copyright (C) 2010 Michael Muré <batolettre@gmail.com>
*
* 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_CAGE_CONFIG_H__
#define __GIMP_CAGE_CONFIG_H__
#include "core/gimpimagemapconfig.h"
2010-07-24 05:06:00 +08:00
#include <gegl.h>
#include "gimp-gegl-types.h"
2010-11-05 02:25:32 +08:00
#include "tools/tools-enums.h"
#define GIMP_TYPE_CAGE_CONFIG (gimp_cage_config_get_type ())
#define GIMP_CAGE_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_CAGE_CONFIG, GimpCageConfig))
#define GIMP_CAGE_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_CAGE_CONFIG, GimpCageConfigClass))
#define GIMP_IS_CAGE_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_CAGE_CONFIG))
#define GIMP_IS_CAGE_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_CAGE_CONFIG))
#define GIMP_CAGE_CONFIG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_CAGE_CONFIG, GimpCageConfigClass))
typedef struct _GimpCageConfigClass GimpCageConfigClass;
struct _GimpCageConfig
{
GimpImageMapConfig parent_instance;
gint cage_vertice_number; /* number of vertices used by the cage */
gint cage_vertices_max; /* number of vertices allocated in memory */
gint offset_x;
gint offset_y;
GimpVector2 *cage_vertices; /* cage before deformation */
GimpVector2 *cage_vertices_d; /* cage after deformation */
gdouble *scaling_factor;
2010-08-15 05:52:41 +08:00
GimpVector2 *normal_d;
};
struct _GimpCageConfigClass
{
GimpImageMapConfigClass parent_class;
};
GType gimp_cage_config_get_type (void) G_GNUC_CONST;
/**
* gimp_cage_config_add_cage_point:
* @gcc: the cage config
* @x: x value of the new point
* @y: y value of the new point
*
* Add a new point in the polygon of the cage, and make allocation if needed.
* Point is added in both source and destination cage
*/
2010-07-24 03:54:53 +08:00
void gimp_cage_config_add_cage_point (GimpCageConfig *gcc,
gdouble x,
gdouble y);
/**
* gimp_cage_config_remove_last_cage_point:
* @gcc: the cage config
*
* Remove the last point of the cage, in both source and destination cage
*/
2010-07-24 03:54:53 +08:00
void gimp_cage_config_remove_last_cage_point (GimpCageConfig *gcc);
2010-09-05 18:33:26 +08:00
/**
* gimp_cage_config_move_cage_point:
* @gcc: the cage config
* @mode: the actual mode of the cage, GIMP_CAGE_MODE_CAGE_CHANGE or GIMP_CAGE_MODE_DEFORM
* @point_number: the point of the cage to move
* @x: new x value
* @y: new y value
*
* Move a point of the source or destination cage, according to the cage mode provided
*/
2010-07-24 03:54:53 +08:00
void gimp_cage_config_move_cage_point (GimpCageConfig *gcc,
GimpCageMode mode,
gint point_number,
gdouble x,
gdouble y);
/**
* gimp_cage_config_get_bounding_box:
* @gcc: the cage config
*
* Compute the bounding box of the destination cage
*
* Returns: the bounding box of the destination cage, as a GeglRectangle
*/
2010-07-24 03:54:53 +08:00
GeglRectangle gimp_cage_config_get_bounding_box (GimpCageConfig *gcc);
/**
* gimp_cage_config_reverse_cage_if_needed:
* @gcc: the cage config
*
* Since the cage need to be defined counter-clockwise to have the topological inside in the actual 'physical' inside of the cage,
* this function compute if the cage is clockwise or not, and reverse the cage if needed.
*/
2010-07-24 03:54:53 +08:00
void gimp_cage_config_reverse_cage_if_needed (GimpCageConfig *gcc);
/**
* gimp_cage_config_reverse_cage:
* @gcc: the cage config
*
* When using non-simple cage (like a cage in 8), user may want to manually inverse inside and outside of the cage.
* This function reverse the cage
*/
2010-07-24 03:54:53 +08:00
void gimp_cage_config_reverse_cage (GimpCageConfig *gcc);
/**
* gimp_cage_config_point_inside:
* @gcc: the cage config
* @x: x coordinate of the point to test
* @y: y coordinate of the point to test
*
* Check if the given point is inside the cage. This test is done in the regard of the topological inside of the cage.
*
* Returns: TRUE if the point is inside, FALSE if not.
*/
gboolean gimp_cage_config_point_inside (GimpCageConfig *gcc,
gfloat x,
gfloat y);
#endif /* __GIMP_CAGE_CONFIG_H__ */