This fixes bug #65198 * app/core/Makefile.am * app/core/core-types.h: * app/core/gimpgrid.[ch]: added new class GimpGrid. * app/core/core-enums.[ch]: added new enum GimpGridType. * app/core/gimpimage-guides.[ch]: removed the gimp_image_snap_*() functions... * app/core/gimpimage-snap.[ch]: ...and added them here since they are no longer guide specific. * app/core/gimpimage-undo-push.[ch]: added gimp_image_undo_push_image_grid() * app/display/gimpdisplayshell-handlers.c: * app/core/gimpimage.[ch]: added grid member to _GimpImage. Added new signal "grid_changed", added gimp_image_grid_changed(), gimp_image_get_grid() and gimp_image_set_grid(). * app/display/gimpdisplayshell-appearance.[ch]: added gimp_display_shell_set_show_grid(), gimp_display_shell_get_show_grid(), gimp_display_shell_set_snap_to_grid() and gimp_display_shell_get_snap_to_grid(). * app/display/gimpdisplayshell-callbacks.c: added call to gimp_display_shell_draw_grid() * app/display/gimpdisplayshell.[ch]: added grid member to _GimpDisplayShellVisibility, added snap_to_grid and grid_dialog members to _GimpDisplayShell, added gimp_display_shell_draw_grid(), modified gimp_display_shell_snap_coords() to use the new gimp_image_snap_*() functions. * app/gui/image-menu.c: added grid entries to image_menu_entries[]. * app/gui/view-commands.[ch]: added view_configure_grid_cmd_callback(), view_toggle_grid_cmd_callback() and view_snap_to_grid_cmd_callback(). * app/gui/Makefile.am * app/gui/grid-dialog.[ch]: added a grid dialog.
255 lines
7.1 KiB
C
255 lines
7.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 "libgimpbase/gimplimits.h"
|
|
#include "libgimpcolor/gimpcolor.h"
|
|
|
|
#include "core-types.h"
|
|
|
|
#include "config/gimpconfig.h"
|
|
#include "config/gimpconfig-params.h"
|
|
|
|
#include "gimpgrid.h"
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_XSPACING,
|
|
PROP_YSPACING,
|
|
PROP_SPACING_UNIT,
|
|
PROP_XOFFSET,
|
|
PROP_YOFFSET,
|
|
PROP_OFFSET_UNIT,
|
|
PROP_FGCOLOR,
|
|
PROP_BGCOLOR,
|
|
PROP_TYPE
|
|
};
|
|
|
|
static void gimp_grid_class_init (GimpGridClass *klass);
|
|
static void gimp_grid_finalize (GObject *object);
|
|
static void gimp_grid_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec);
|
|
static void gimp_grid_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec);
|
|
|
|
|
|
static GObjectClass *parent_class = NULL;
|
|
|
|
|
|
GType
|
|
gimp_grid_get_type (void)
|
|
{
|
|
static GType grid_type = 0;
|
|
|
|
if (! grid_type)
|
|
{
|
|
static const GTypeInfo grid_info =
|
|
{
|
|
sizeof (GimpGridClass),
|
|
(GBaseInitFunc) NULL,
|
|
(GBaseFinalizeFunc) NULL,
|
|
(GClassInitFunc) gimp_grid_class_init,
|
|
NULL, /* class_finalize */
|
|
NULL, /* class_data */
|
|
sizeof (GimpGrid),
|
|
0, /* n_preallocs */
|
|
NULL /* instance_init */
|
|
};
|
|
static const GInterfaceInfo grid_iface_info =
|
|
{
|
|
NULL, /* iface_init */
|
|
NULL, /* iface_finalize */
|
|
NULL /* iface_data */
|
|
};
|
|
|
|
grid_type = g_type_register_static (G_TYPE_OBJECT,
|
|
"GimpGrid", &grid_info, 0);
|
|
|
|
g_type_add_interface_static (grid_type,
|
|
GIMP_TYPE_CONFIG_INTERFACE,
|
|
&grid_iface_info);
|
|
}
|
|
|
|
return grid_type;
|
|
}
|
|
|
|
static void
|
|
gimp_grid_class_init (GimpGridClass *klass)
|
|
{
|
|
GObjectClass *object_class;
|
|
GimpRGB black;
|
|
GimpRGB white;
|
|
|
|
object_class = G_OBJECT_CLASS (klass);
|
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
object_class->finalize = gimp_grid_finalize;
|
|
object_class->get_property = gimp_grid_get_property;
|
|
object_class->set_property = gimp_grid_set_property;
|
|
|
|
gimp_rgba_set (&black, 0.0, 0.0, 0.0, GIMP_OPACITY_OPAQUE);
|
|
gimp_rgba_set (&white, 1.0, 1.0, 1.0, GIMP_OPACITY_OPAQUE);
|
|
|
|
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_XSPACING,
|
|
"xspacing", NULL,
|
|
1.0, GIMP_MAX_IMAGE_SIZE, 10.0,
|
|
0);
|
|
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_YSPACING,
|
|
"yspacing", NULL,
|
|
1.0, GIMP_MAX_IMAGE_SIZE, 10.0,
|
|
0);
|
|
GIMP_CONFIG_INSTALL_PROP_UNIT (object_class, PROP_SPACING_UNIT,
|
|
"spacing-unit", NULL,
|
|
FALSE, GIMP_UNIT_INCH,
|
|
0);
|
|
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_XOFFSET,
|
|
"xoffset", NULL,
|
|
- GIMP_MAX_IMAGE_SIZE,
|
|
GIMP_MAX_IMAGE_SIZE, 0.0,
|
|
0);
|
|
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_YOFFSET,
|
|
"yoffset", NULL,
|
|
- GIMP_MAX_IMAGE_SIZE,
|
|
GIMP_MAX_IMAGE_SIZE, 0.0,
|
|
0);
|
|
GIMP_CONFIG_INSTALL_PROP_UNIT (object_class, PROP_OFFSET_UNIT,
|
|
"offset-unit", NULL,
|
|
FALSE, GIMP_UNIT_INCH,
|
|
0);
|
|
GIMP_CONFIG_INSTALL_PROP_COLOR (object_class, PROP_FGCOLOR,
|
|
"fgcolor", NULL,
|
|
&black,
|
|
0);
|
|
GIMP_CONFIG_INSTALL_PROP_COLOR (object_class, PROP_BGCOLOR,
|
|
"bgcolor", NULL,
|
|
&white,
|
|
0);
|
|
GIMP_CONFIG_INSTALL_PROP_ENUM (object_class, PROP_TYPE,
|
|
"type", NULL,
|
|
GIMP_TYPE_GRID_TYPE,
|
|
GIMP_GRID_TYPE_INTERSECTION,
|
|
0);
|
|
}
|
|
|
|
static void
|
|
gimp_grid_finalize (GObject *object)
|
|
{
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
}
|
|
|
|
|
|
static void
|
|
gimp_grid_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
GimpGrid *grid = GIMP_GRID (object);
|
|
|
|
switch (property_id)
|
|
{
|
|
case PROP_XSPACING:
|
|
g_value_set_double (value, grid->xspacing);
|
|
break;
|
|
case PROP_YSPACING:
|
|
g_value_set_double (value, grid->yspacing);
|
|
break;
|
|
case PROP_SPACING_UNIT:
|
|
g_value_set_int (value, grid->spacing_unit);
|
|
break;
|
|
case PROP_XOFFSET:
|
|
g_value_set_double (value, grid->xoffset);
|
|
break;
|
|
case PROP_YOFFSET:
|
|
g_value_set_double (value, grid->yoffset);
|
|
break;
|
|
case PROP_OFFSET_UNIT:
|
|
g_value_set_int (value, grid->offset_unit);
|
|
break;
|
|
case PROP_FGCOLOR:
|
|
g_value_set_boxed (value, &grid->fgcolor);
|
|
break;
|
|
case PROP_BGCOLOR:
|
|
g_value_set_boxed (value, &grid->bgcolor);
|
|
break;
|
|
case PROP_TYPE:
|
|
g_value_set_enum (value, grid->type);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
gimp_grid_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
GimpGrid *grid = GIMP_GRID (object);
|
|
GimpRGB *color;
|
|
|
|
switch (property_id)
|
|
{
|
|
case PROP_XSPACING:
|
|
grid->xspacing = g_value_get_double (value);
|
|
break;
|
|
case PROP_YSPACING:
|
|
grid->yspacing = g_value_get_double (value);
|
|
break;
|
|
case PROP_SPACING_UNIT:
|
|
grid->spacing_unit = g_value_get_int (value);
|
|
break;
|
|
case PROP_XOFFSET:
|
|
grid->xoffset = g_value_get_double (value);
|
|
break;
|
|
case PROP_YOFFSET:
|
|
grid->yoffset = g_value_get_double (value);
|
|
break;
|
|
case PROP_OFFSET_UNIT:
|
|
grid->offset_unit = g_value_get_int (value);
|
|
break;
|
|
case PROP_FGCOLOR:
|
|
color = g_value_get_boxed (value);
|
|
grid->fgcolor = *color;
|
|
break;
|
|
case PROP_BGCOLOR:
|
|
color = g_value_get_boxed (value);
|
|
grid->bgcolor = *color;
|
|
break;
|
|
case PROP_TYPE:
|
|
grid->type = g_value_get_enum (value);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|