2001-12-09 07:12:59 +08:00
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CORE_ENUMS_H__
|
|
|
|
#define __CORE_ENUMS_H__
|
|
|
|
|
2004-07-28 19:50:20 +08:00
|
|
|
|
2001-12-12 02:11:56 +08:00
|
|
|
#if 0
|
2003-04-15 22:20:19 +08:00
|
|
|
This file is parsed by two scripts, enumgen.pl in tools/pdbgen,
|
2003-08-26 05:25:13 +08:00
|
|
|
and gimp-mkenums. All enums that are not marked with
|
2002-03-29 11:50:29 +08:00
|
|
|
/*< pdb-skip >*/ are exported to libgimp and the PDB. Enums that are
|
2003-08-26 05:25:13 +08:00
|
|
|
not marked with /*< skip >*/ are registered with the GType system.
|
|
|
|
If you want the enum to be skipped by both scripts, you have to use
|
|
|
|
/*< pdb-skip, skip >*/.
|
2001-12-09 07:12:59 +08:00
|
|
|
|
2004-01-06 22:02:08 +08:00
|
|
|
The same syntax applies to enum values.
|
2002-03-29 11:50:29 +08:00
|
|
|
#endif
|
2001-12-12 02:11:56 +08:00
|
|
|
|
2003-03-06 21:22:11 +08:00
|
|
|
|
2003-08-26 05:25:13 +08:00
|
|
|
/*
|
2001-12-12 02:11:56 +08:00
|
|
|
* these enums that are registered with the type system
|
|
|
|
*/
|
2001-12-09 07:12:59 +08:00
|
|
|
|
2002-03-13 22:51:48 +08:00
|
|
|
|
2003-08-26 05:25:13 +08:00
|
|
|
#define GIMP_TYPE_CONTAINER_POLICY (gimp_container_policy_get_type ())
|
|
|
|
|
|
|
|
GType gimp_container_policy_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
|
|
|
GIMP_CONTAINER_POLICY_STRONG,
|
|
|
|
GIMP_CONTAINER_POLICY_WEAK
|
|
|
|
} GimpContainerPolicy;
|
|
|
|
|
|
|
|
|
2002-03-20 22:10:45 +08:00
|
|
|
#define GIMP_TYPE_CONVERT_DITHER_TYPE (gimp_convert_dither_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_convert_dither_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2004-10-14 21:44:06 +08:00
|
|
|
GIMP_NO_DITHER, /*< desc="None" >*/
|
|
|
|
GIMP_FS_DITHER, /*< desc="Floyd-Steinberg (normal)" >*/
|
|
|
|
GIMP_FSLOWBLEED_DITHER, /*< desc="Floyd-Steinberg (reduced color bleeding)" >*/
|
|
|
|
GIMP_FIXED_DITHER, /*< desc="Positioned" >*/
|
|
|
|
GIMP_NODESTRUCT_DITHER /*< pdb-skip, skip >*/
|
2002-03-20 22:10:45 +08:00
|
|
|
} GimpConvertDitherType;
|
|
|
|
|
|
|
|
|
2004-10-14 21:44:06 +08:00
|
|
|
#define GIMP_TYPE_CONVERT_PALETTE_TYPE (gimp_convert_palette_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_convert_palette_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GIMP_MAKE_PALETTE, /*< desc="Generate optimum palette" >*/
|
|
|
|
GIMP_REUSE_PALETTE, /*< skip >*/
|
|
|
|
GIMP_WEB_PALETTE, /*< desc="Use web-optimized palette" >*/
|
|
|
|
GIMP_MONO_PALETTE, /*< desc="Use black and white (1-bit) palette" >*/
|
|
|
|
GIMP_CUSTOM_PALETTE /*< desc="Use custom palette" >*/
|
|
|
|
} GimpConvertPaletteType;
|
|
|
|
|
|
|
|
|
2003-01-31 21:36:27 +08:00
|
|
|
#define GIMP_TYPE_GRAVITY_TYPE (gimp_gravity_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_gravity_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
2003-02-01 04:21:01 +08:00
|
|
|
GIMP_GRAVITY_NONE,
|
2003-01-31 21:36:27 +08:00
|
|
|
GIMP_GRAVITY_NORTH_WEST,
|
2003-02-01 04:21:01 +08:00
|
|
|
GIMP_GRAVITY_NORTH,
|
2003-01-31 21:36:27 +08:00
|
|
|
GIMP_GRAVITY_NORTH_EAST,
|
|
|
|
GIMP_GRAVITY_WEST,
|
2003-02-01 04:21:01 +08:00
|
|
|
GIMP_GRAVITY_CENTER,
|
|
|
|
GIMP_GRAVITY_EAST,
|
|
|
|
GIMP_GRAVITY_SOUTH_WEST,
|
|
|
|
GIMP_GRAVITY_SOUTH,
|
|
|
|
GIMP_GRAVITY_SOUTH_EAST
|
2003-01-31 21:36:27 +08:00
|
|
|
} GimpGravityType;
|
|
|
|
|
|
|
|
|
2005-06-04 01:05:01 +08:00
|
|
|
#define GIMP_TYPE_ALIGNMENT (gimp_alignment_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_alignment_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
|
|
|
GIMP_ALIGN_LEFT,
|
|
|
|
GIMP_ALIGN_CENTER,
|
|
|
|
GIMP_ALIGN_RIGHT,
|
|
|
|
GIMP_ALIGN_TOP,
|
|
|
|
GIMP_ALIGN_MIDDLE,
|
|
|
|
GIMP_ALIGN_BOTTOM
|
|
|
|
} GimpAlignmentType;
|
|
|
|
|
|
|
|
|
2002-05-13 23:35:27 +08:00
|
|
|
#define GIMP_TYPE_FILL_TYPE (gimp_fill_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_fill_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2004-06-30 23:47:32 +08:00
|
|
|
GIMP_FOREGROUND_FILL, /*< desc="Foreground color" >*/
|
|
|
|
GIMP_BACKGROUND_FILL, /*< desc="Background color" >*/
|
2004-05-07 23:45:56 +08:00
|
|
|
GIMP_WHITE_FILL, /*< desc="White" >*/
|
|
|
|
GIMP_TRANSPARENT_FILL, /*< desc="Transparency" >*/
|
|
|
|
GIMP_PATTERN_FILL, /*< desc="Pattern" >*/
|
|
|
|
GIMP_NO_FILL /*< desc="None", pdb-skip >*/
|
2002-05-13 23:35:27 +08:00
|
|
|
} GimpFillType;
|
|
|
|
|
|
|
|
|
2004-10-22 20:32:31 +08:00
|
|
|
#define GIMP_TYPE_STROKE_METHOD (gimp_stroke_method_get_type ())
|
|
|
|
|
|
|
|
GType gimp_stroke_method_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
|
|
|
GIMP_STROKE_METHOD_LIBART, /*< desc="Stroke line" >*/
|
|
|
|
GIMP_STROKE_METHOD_PAINT_CORE /*< desc="Stroke with a paint tool" >*/
|
|
|
|
} GimpStrokeMethod;
|
|
|
|
|
|
|
|
|
2003-09-28 04:04:07 +08:00
|
|
|
#define GIMP_TYPE_STROKE_STYLE (gimp_stroke_style_get_type ())
|
|
|
|
|
|
|
|
GType gimp_stroke_style_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
|
|
|
GIMP_STROKE_STYLE_SOLID, /*< desc="Solid" >*/
|
|
|
|
GIMP_STROKE_STYLE_PATTERN /*< desc="Pattern" >*/
|
|
|
|
} GimpStrokeStyle;
|
|
|
|
|
|
|
|
|
2003-09-21 18:45:19 +08:00
|
|
|
#define GIMP_TYPE_JOIN_STYLE (gimp_join_style_get_type ())
|
2003-09-21 03:58:26 +08:00
|
|
|
|
2003-09-21 18:45:19 +08:00
|
|
|
GType gimp_join_style_get_type (void) G_GNUC_CONST;
|
2003-09-21 03:58:26 +08:00
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
|
|
|
GIMP_JOIN_MITER, /*< desc="Miter" >*/
|
|
|
|
GIMP_JOIN_ROUND, /*< desc="Round" >*/
|
|
|
|
GIMP_JOIN_BEVEL /*< desc="Bevel" >*/
|
2003-09-21 18:45:19 +08:00
|
|
|
} GimpJoinStyle;
|
2003-09-21 03:58:26 +08:00
|
|
|
|
|
|
|
|
2003-09-21 18:45:19 +08:00
|
|
|
#define GIMP_TYPE_CAP_STYLE (gimp_cap_style_get_type ())
|
2003-09-21 03:58:26 +08:00
|
|
|
|
2003-09-25 03:47:59 +08:00
|
|
|
GType gimp_cap_style_get_type (void) G_GNUC_CONST;
|
2003-09-21 03:58:26 +08:00
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
|
|
|
GIMP_CAP_BUTT, /*< desc="Butt" >*/
|
|
|
|
GIMP_CAP_ROUND, /*< desc="Round" >*/
|
|
|
|
GIMP_CAP_SQUARE /*< desc="Square" >*/
|
2003-09-21 18:45:19 +08:00
|
|
|
} GimpCapStyle;
|
2003-09-21 03:58:26 +08:00
|
|
|
|
|
|
|
|
2003-12-29 01:09:41 +08:00
|
|
|
#define GIMP_TYPE_DASH_PRESET (gimp_dash_preset_get_type ())
|
|
|
|
|
|
|
|
GType gimp_dash_preset_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
2005-05-22 21:12:14 +08:00
|
|
|
GIMP_DASH_CUSTOM, /*< desc="Custom" >*/
|
|
|
|
GIMP_DASH_LINE, /*< desc="Line" >*/
|
|
|
|
GIMP_DASH_LONG_DASH, /*< desc="Long dashes" >*/
|
|
|
|
GIMP_DASH_MEDIUM_DASH, /*< desc="Medium dashes" >*/
|
|
|
|
GIMP_DASH_SHORT_DASH, /*< desc="Short dashes" >*/
|
|
|
|
GIMP_DASH_SPARSE_DOTS, /*< desc="Sparse dots" >*/
|
|
|
|
GIMP_DASH_NORMAL_DOTS, /*< desc="Normal dots" >*/
|
|
|
|
GIMP_DASH_DENSE_DOTS, /*< desc="Dense dots" >*/
|
|
|
|
GIMP_DASH_STIPPLES, /*< desc="Stipples" >*/
|
|
|
|
GIMP_DASH_DASH_DOT, /*< desc="Dash, dot" >*/
|
|
|
|
GIMP_DASH_DASH_DOT_DOT /*< desc="Dash, dot, dot" >*/
|
2003-12-29 01:09:41 +08:00
|
|
|
} GimpDashPreset;
|
|
|
|
|
|
|
|
|
2004-08-01 11:06:58 +08:00
|
|
|
#define GIMP_TYPE_BRUSH_GENERATED_SHAPE (gimp_brush_generated_shape_get_type ())
|
|
|
|
|
|
|
|
GType gimp_brush_generated_shape_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2006-03-22 17:58:08 +08:00
|
|
|
typedef enum
|
2004-08-01 11:06:58 +08:00
|
|
|
{
|
|
|
|
GIMP_BRUSH_GENERATED_CIRCLE, /*< desc="Circle" >*/
|
|
|
|
GIMP_BRUSH_GENERATED_SQUARE, /*< desc="Square" >*/
|
|
|
|
GIMP_BRUSH_GENERATED_DIAMOND /*< desc="Diamond" >*/
|
|
|
|
} GimpBrushGeneratedShape;
|
|
|
|
|
|
|
|
|
2003-03-06 21:22:11 +08:00
|
|
|
#define GIMP_TYPE_ORIENTATION_TYPE (gimp_orientation_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_orientation_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GIMP_ORIENTATION_HORIZONTAL, /*< desc="Horizontal" >*/
|
|
|
|
GIMP_ORIENTATION_VERTICAL, /*< desc="Vertical" >*/
|
|
|
|
GIMP_ORIENTATION_UNKNOWN /*< desc="Unknown" >*/
|
|
|
|
} GimpOrientationType;
|
|
|
|
|
|
|
|
|
2006-05-19 22:50:46 +08:00
|
|
|
#define GIMP_TYPE_ITEM_SET (gimp_item_set_get_type ())
|
2005-02-25 00:39:12 +08:00
|
|
|
|
2006-05-19 22:50:46 +08:00
|
|
|
GType gimp_item_set_get_type (void) G_GNUC_CONST;
|
2005-02-25 00:39:12 +08:00
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
2006-05-19 22:50:46 +08:00
|
|
|
GIMP_ITEM_SET_NONE, /*< desc="None" >*/
|
|
|
|
GIMP_ITEM_SET_ALL, /*< desc="All layers" >*/
|
|
|
|
GIMP_ITEM_SET_IMAGE_SIZED, /*< desc="Image-sized layers" >*/
|
|
|
|
GIMP_ITEM_SET_VISIBLE, /*< desc="All visible layers" >*/
|
|
|
|
GIMP_ITEM_SET_LINKED /*< desc="All linked layers" >*/
|
|
|
|
} GimpItemSet;
|
2005-02-25 00:39:12 +08:00
|
|
|
|
|
|
|
|
2003-05-20 18:36:29 +08:00
|
|
|
#define GIMP_TYPE_ROTATION_TYPE (gimp_rotation_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_rotation_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2003-12-09 17:03:52 +08:00
|
|
|
typedef enum
|
2003-05-20 18:36:29 +08:00
|
|
|
{
|
|
|
|
GIMP_ROTATE_90,
|
|
|
|
GIMP_ROTATE_180,
|
|
|
|
GIMP_ROTATE_270
|
|
|
|
} GimpRotationType;
|
|
|
|
|
|
|
|
|
2004-08-29 19:58:05 +08:00
|
|
|
#define GIMP_TYPE_VIEW_SIZE (gimp_view_size_get_type ())
|
2002-03-19 06:26:41 +08:00
|
|
|
|
2004-08-29 19:58:05 +08:00
|
|
|
GType gimp_view_size_get_type (void) G_GNUC_CONST;
|
2002-03-19 06:26:41 +08:00
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
2004-08-29 19:58:05 +08:00
|
|
|
GIMP_VIEW_SIZE_TINY = 12, /*< desc="Tiny" >*/
|
|
|
|
GIMP_VIEW_SIZE_EXTRA_SMALL = 16, /*< desc="Very small" >*/
|
|
|
|
GIMP_VIEW_SIZE_SMALL = 24, /*< desc="Small" >*/
|
|
|
|
GIMP_VIEW_SIZE_MEDIUM = 32, /*< desc="Medium" >*/
|
|
|
|
GIMP_VIEW_SIZE_LARGE = 48, /*< desc="Large" >*/
|
|
|
|
GIMP_VIEW_SIZE_EXTRA_LARGE = 64, /*< desc="Very large" >*/
|
|
|
|
GIMP_VIEW_SIZE_HUGE = 96, /*< desc="Huge" >*/
|
|
|
|
GIMP_VIEW_SIZE_ENORMOUS = 128, /*< desc="Enormous" >*/
|
|
|
|
GIMP_VIEW_SIZE_GIGANTIC = 192 /*< desc="Gigantic" >*/
|
|
|
|
} GimpViewSize;
|
2002-03-19 06:26:41 +08:00
|
|
|
|
|
|
|
|
2006-01-14 08:09:22 +08:00
|
|
|
#define GIMP_TYPE_VIEW_TYPE (gimp_view_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_view_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
|
|
|
GIMP_VIEW_TYPE_LIST, /*< desc="View as list" >*/
|
|
|
|
GIMP_VIEW_TYPE_GRID /*< desc="View as grid" >*/
|
|
|
|
} GimpViewType;
|
|
|
|
|
|
|
|
|
2002-03-19 06:26:41 +08:00
|
|
|
#define GIMP_TYPE_SELECTION_CONTROL (gimp_selection_control_get_type ())
|
|
|
|
|
|
|
|
GType gimp_selection_control_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
|
|
|
GIMP_SELECTION_OFF,
|
|
|
|
GIMP_SELECTION_LAYER_OFF,
|
|
|
|
GIMP_SELECTION_ON,
|
|
|
|
GIMP_SELECTION_PAUSE,
|
|
|
|
GIMP_SELECTION_RESUME
|
|
|
|
} GimpSelectionControl;
|
|
|
|
|
|
|
|
|
2002-04-30 03:41:45 +08:00
|
|
|
#define GIMP_TYPE_THUMBNAIL_SIZE (gimp_thumbnail_size_get_type ())
|
|
|
|
|
|
|
|
GType gimp_thumbnail_size_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
2004-06-30 23:47:32 +08:00
|
|
|
GIMP_THUMBNAIL_SIZE_NONE = 0, /*< desc="No thumbnails" >*/
|
2002-04-30 03:41:45 +08:00
|
|
|
GIMP_THUMBNAIL_SIZE_NORMAL = 128, /*< desc="Normal (128x128)" >*/
|
|
|
|
GIMP_THUMBNAIL_SIZE_LARGE = 256 /*< desc="Large (256x256)" >*/
|
|
|
|
} GimpThumbnailSize;
|
|
|
|
|
|
|
|
|
2003-02-13 01:11:34 +08:00
|
|
|
#define GIMP_TYPE_UNDO_MODE (gimp_undo_mode_get_type ())
|
|
|
|
|
|
|
|
GType gimp_undo_mode_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2003-02-13 17:38:39 +08:00
|
|
|
typedef enum /*< pdb-skip >*/
|
2003-02-13 01:11:34 +08:00
|
|
|
{
|
|
|
|
GIMP_UNDO_MODE_UNDO,
|
|
|
|
GIMP_UNDO_MODE_REDO
|
|
|
|
} GimpUndoMode;
|
|
|
|
|
|
|
|
|
2003-02-20 20:47:42 +08:00
|
|
|
#define GIMP_TYPE_UNDO_EVENT (gimp_undo_event_get_type ())
|
|
|
|
|
|
|
|
GType gimp_undo_event_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
|
|
|
GIMP_UNDO_EVENT_UNDO_PUSHED, /* a new undo has been added to the undo stack */
|
|
|
|
GIMP_UNDO_EVENT_UNDO_EXPIRED, /* an undo has been freed from the undo stack */
|
|
|
|
GIMP_UNDO_EVENT_REDO_EXPIRED, /* a redo has been freed from the redo stack */
|
|
|
|
GIMP_UNDO_EVENT_UNDO, /* an undo has been executed */
|
|
|
|
GIMP_UNDO_EVENT_REDO, /* a redo has been executed */
|
2003-11-26 00:12:53 +08:00
|
|
|
GIMP_UNDO_EVENT_UNDO_FREE, /* all undo and redo info has been cleared */
|
|
|
|
GIMP_UNDO_EVENT_UNDO_FREEZE, /* undo has been frozen */
|
|
|
|
GIMP_UNDO_EVENT_UNDO_THAW /* undo has been thawn */
|
2003-02-20 20:47:42 +08:00
|
|
|
} GimpUndoEvent;
|
|
|
|
|
|
|
|
|
2003-02-13 01:11:34 +08:00
|
|
|
#define GIMP_TYPE_UNDO_TYPE (gimp_undo_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_undo_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
|
|
|
/* Type NO_UNDO_GROUP (0) is special - in the gimpimage structure it
|
|
|
|
* means there is no undo group currently being added to.
|
|
|
|
*/
|
Made drawable/layer properties (visibility, opacity etc.) undoable (fixes
2003-03-17 Michael Natterer <mitch@gimp.org>
Made drawable/layer properties (visibility, opacity etc.)
undoable (fixes bug #73893).
* app/core/core-enums.[ch]: added undo types/groups for
visibility, mode, opacity, linked and preserve_trans.
* app/core/Makefile.am
* app/core/core-types.h
* app/core/gimpitemundo.[ch]: new GimpUndo subclass which holds a
ref'ed GimpItem pointer so (1) this doesn't need to be done by all
undo steps related to an item and (2) the item the undo step is
for can be determined from outside the undo system.
* app/core/gimpimage-undo.[ch]: added gimp_image_undo_push_item()
which returns a new GimpItemUndo.
* app/core/gimpimage-undo-push.[ch]: use it for all item related
undo steps. Removed lots of GimpItem, GimpLayer, GimpDrawable
and GimpVectors pointers from the private undo structs. Added
undo push functions for the new undo types added above.
* app/core/gimpdrawable.[ch] (gimp_drawable_set_visible): added
"gboolean push_undo" parameter.
* app/core/gimplayer.[ch] (gimp_layer_set_opacity, _mode,
_preserve_trans, _linked): added "gboolean push_undo" parameters.
* app/core/gimpimage-mask.c
* app/core/gimpimage-merge.c
* app/core/gimplayer-floating-sel.c
* app/tools/gimpmovetool.c
* app/xcf/xcf-load.c
* app/widgets/gimpdrawablelistitem.c
* app/widgets/gimplayerlistitem.c
* app/widgets/gimplayerlistview.c: changed accordingly.
* tools/pdbgen/pdb/channel.pdb
* tools/pdbgen/pdb/layer.pdb: ditto. Added '$undo' paramaters to
the foo_accessors() functions. Removed $func from foo_accesors()
because we don't manipulate items without using getters/setters
any longer.
* app/pdb/channel_cmds.c
* app/pdb/layer_cmds.c: regenerated.
* app/widgets/gimpcellrenderertoggle.[ch]: added "clicked" signal
which carries an additional "GdkModifierType state" parameter as
in GimpCellRendererViewable .
* app/widgets/gimpcontainertreeview.c: emit "clicked" from
the toggle renderer, not "toggled" so the callbacks get the
modifier state.
* app/widgets/gimpdrawabletreeview.c: resurrected the "exclusive
visible by <shift>+click" feature as in 1.2.
* app/widgets/gimplayertreeview.c: compress layer opacity undos by
looking at the top of the undo stack and not pushing an undo if
there already is a GIMP_UNDO_DRAWABLE_OPACITY for the active
layer.
2003-03-18 02:02:41 +08:00
|
|
|
GIMP_UNDO_GROUP_NONE = 0, /*< desc="<<invalid>>" >*/
|
2003-02-13 19:23:50 +08:00
|
|
|
|
|
|
|
GIMP_UNDO_GROUP_FIRST = GIMP_UNDO_GROUP_NONE, /*< skip >*/
|
|
|
|
|
2004-06-30 23:47:32 +08:00
|
|
|
GIMP_UNDO_GROUP_IMAGE_SCALE, /*< desc="Scale image" >*/
|
|
|
|
GIMP_UNDO_GROUP_IMAGE_RESIZE, /*< desc="Resize image" >*/
|
|
|
|
GIMP_UNDO_GROUP_IMAGE_FLIP, /*< desc="Flip image" >*/
|
|
|
|
GIMP_UNDO_GROUP_IMAGE_ROTATE, /*< desc="Rotate image" >*/
|
|
|
|
GIMP_UNDO_GROUP_IMAGE_CROP, /*< desc="Crop image" >*/
|
2004-07-29 22:16:21 +08:00
|
|
|
GIMP_UNDO_GROUP_IMAGE_CONVERT, /*< desc="Convert image" >*/
|
2005-04-05 07:12:50 +08:00
|
|
|
GIMP_UNDO_GROUP_IMAGE_ITEM_REMOVE, /*< desc="Remove item" >*/
|
2004-06-30 23:47:32 +08:00
|
|
|
GIMP_UNDO_GROUP_IMAGE_LAYERS_MERGE, /*< desc="Merge layers" >*/
|
2005-09-12 03:26:59 +08:00
|
|
|
GIMP_UNDO_GROUP_IMAGE_VECTORS_MERGE,/*< desc="Merge paths" >*/
|
2005-09-19 20:44:06 +08:00
|
|
|
GIMP_UNDO_GROUP_IMAGE_QUICK_MASK, /*< desc="Quick Mask" >*/
|
Made drawable/layer properties (visibility, opacity etc.) undoable (fixes
2003-03-17 Michael Natterer <mitch@gimp.org>
Made drawable/layer properties (visibility, opacity etc.)
undoable (fixes bug #73893).
* app/core/core-enums.[ch]: added undo types/groups for
visibility, mode, opacity, linked and preserve_trans.
* app/core/Makefile.am
* app/core/core-types.h
* app/core/gimpitemundo.[ch]: new GimpUndo subclass which holds a
ref'ed GimpItem pointer so (1) this doesn't need to be done by all
undo steps related to an item and (2) the item the undo step is
for can be determined from outside the undo system.
* app/core/gimpimage-undo.[ch]: added gimp_image_undo_push_item()
which returns a new GimpItemUndo.
* app/core/gimpimage-undo-push.[ch]: use it for all item related
undo steps. Removed lots of GimpItem, GimpLayer, GimpDrawable
and GimpVectors pointers from the private undo structs. Added
undo push functions for the new undo types added above.
* app/core/gimpdrawable.[ch] (gimp_drawable_set_visible): added
"gboolean push_undo" parameter.
* app/core/gimplayer.[ch] (gimp_layer_set_opacity, _mode,
_preserve_trans, _linked): added "gboolean push_undo" parameters.
* app/core/gimpimage-mask.c
* app/core/gimpimage-merge.c
* app/core/gimplayer-floating-sel.c
* app/tools/gimpmovetool.c
* app/xcf/xcf-load.c
* app/widgets/gimpdrawablelistitem.c
* app/widgets/gimplayerlistitem.c
* app/widgets/gimplayerlistview.c: changed accordingly.
* tools/pdbgen/pdb/channel.pdb
* tools/pdbgen/pdb/layer.pdb: ditto. Added '$undo' paramaters to
the foo_accessors() functions. Removed $func from foo_accesors()
because we don't manipulate items without using getters/setters
any longer.
* app/pdb/channel_cmds.c
* app/pdb/layer_cmds.c: regenerated.
* app/widgets/gimpcellrenderertoggle.[ch]: added "clicked" signal
which carries an additional "GdkModifierType state" parameter as
in GimpCellRendererViewable .
* app/widgets/gimpcontainertreeview.c: emit "clicked" from
the toggle renderer, not "toggled" so the callbacks get the
modifier state.
* app/widgets/gimpdrawabletreeview.c: resurrected the "exclusive
visible by <shift>+click" feature as in 1.2.
* app/widgets/gimplayertreeview.c: compress layer opacity undos by
looking at the top of the undo stack and not pushing an undo if
there already is a GIMP_UNDO_DRAWABLE_OPACITY for the active
layer.
2003-03-18 02:02:41 +08:00
|
|
|
GIMP_UNDO_GROUP_IMAGE_GUIDE, /*< desc="Guide" >*/
|
2005-03-05 08:10:40 +08:00
|
|
|
GIMP_UNDO_GROUP_IMAGE_GRID, /*< desc="Grid" >*/
|
2005-03-05 00:34:59 +08:00
|
|
|
GIMP_UNDO_GROUP_IMAGE_SAMPLE_POINT, /*< desc="Sample Point" >*/
|
2005-09-12 03:26:59 +08:00
|
|
|
GIMP_UNDO_GROUP_DRAWABLE, /*< desc="Layer/Channel" >*/
|
|
|
|
GIMP_UNDO_GROUP_DRAWABLE_MOD, /*< desc="Layer/Channel modification" >*/
|
2004-06-30 23:47:32 +08:00
|
|
|
GIMP_UNDO_GROUP_MASK, /*< desc="Selection mask" >*/
|
|
|
|
GIMP_UNDO_GROUP_ITEM_VISIBILITY, /*< desc="Item visibility" >*/
|
2005-09-12 03:26:59 +08:00
|
|
|
GIMP_UNDO_GROUP_ITEM_LINKED, /*< desc="Link/Unlink item" >*/
|
2004-06-30 23:47:32 +08:00
|
|
|
GIMP_UNDO_GROUP_ITEM_PROPERTIES, /*< desc="Item properties" >*/
|
|
|
|
GIMP_UNDO_GROUP_ITEM_DISPLACE, /*< desc="Move item" >*/
|
|
|
|
GIMP_UNDO_GROUP_ITEM_SCALE, /*< desc="Scale item" >*/
|
|
|
|
GIMP_UNDO_GROUP_ITEM_RESIZE, /*< desc="Resize item" >*/
|
|
|
|
GIMP_UNDO_GROUP_LAYER_ADD_MASK, /*< desc="Add layer mask" >*/
|
|
|
|
GIMP_UNDO_GROUP_LAYER_APPLY_MASK, /*< desc="Apply layer mask" >*/
|
|
|
|
GIMP_UNDO_GROUP_FS_TO_LAYER, /*< desc="Floating selection to layer" >*/
|
|
|
|
GIMP_UNDO_GROUP_FS_FLOAT, /*< desc="Float selection" >*/
|
|
|
|
GIMP_UNDO_GROUP_FS_ANCHOR, /*< desc="Anchor floating selection" >*/
|
|
|
|
GIMP_UNDO_GROUP_FS_REMOVE, /*< desc="Remove floating selection" >*/
|
Made drawable/layer properties (visibility, opacity etc.) undoable (fixes
2003-03-17 Michael Natterer <mitch@gimp.org>
Made drawable/layer properties (visibility, opacity etc.)
undoable (fixes bug #73893).
* app/core/core-enums.[ch]: added undo types/groups for
visibility, mode, opacity, linked and preserve_trans.
* app/core/Makefile.am
* app/core/core-types.h
* app/core/gimpitemundo.[ch]: new GimpUndo subclass which holds a
ref'ed GimpItem pointer so (1) this doesn't need to be done by all
undo steps related to an item and (2) the item the undo step is
for can be determined from outside the undo system.
* app/core/gimpimage-undo.[ch]: added gimp_image_undo_push_item()
which returns a new GimpItemUndo.
* app/core/gimpimage-undo-push.[ch]: use it for all item related
undo steps. Removed lots of GimpItem, GimpLayer, GimpDrawable
and GimpVectors pointers from the private undo structs. Added
undo push functions for the new undo types added above.
* app/core/gimpdrawable.[ch] (gimp_drawable_set_visible): added
"gboolean push_undo" parameter.
* app/core/gimplayer.[ch] (gimp_layer_set_opacity, _mode,
_preserve_trans, _linked): added "gboolean push_undo" parameters.
* app/core/gimpimage-mask.c
* app/core/gimpimage-merge.c
* app/core/gimplayer-floating-sel.c
* app/tools/gimpmovetool.c
* app/xcf/xcf-load.c
* app/widgets/gimpdrawablelistitem.c
* app/widgets/gimplayerlistitem.c
* app/widgets/gimplayerlistview.c: changed accordingly.
* tools/pdbgen/pdb/channel.pdb
* tools/pdbgen/pdb/layer.pdb: ditto. Added '$undo' paramaters to
the foo_accessors() functions. Removed $func from foo_accesors()
because we don't manipulate items without using getters/setters
any longer.
* app/pdb/channel_cmds.c
* app/pdb/layer_cmds.c: regenerated.
* app/widgets/gimpcellrenderertoggle.[ch]: added "clicked" signal
which carries an additional "GdkModifierType state" parameter as
in GimpCellRendererViewable .
* app/widgets/gimpcontainertreeview.c: emit "clicked" from
the toggle renderer, not "toggled" so the callbacks get the
modifier state.
* app/widgets/gimpdrawabletreeview.c: resurrected the "exclusive
visible by <shift>+click" feature as in 1.2.
* app/widgets/gimplayertreeview.c: compress layer opacity undos by
looking at the top of the undo stack and not pushing an undo if
there already is a GIMP_UNDO_DRAWABLE_OPACITY for the active
layer.
2003-03-18 02:02:41 +08:00
|
|
|
GIMP_UNDO_GROUP_EDIT_PASTE, /*< desc="Paste" >*/
|
|
|
|
GIMP_UNDO_GROUP_EDIT_CUT, /*< desc="Cut" >*/
|
|
|
|
GIMP_UNDO_GROUP_TEXT, /*< desc="Text" >*/
|
|
|
|
GIMP_UNDO_GROUP_TRANSFORM, /*< desc="Transform" >*/
|
|
|
|
GIMP_UNDO_GROUP_PAINT, /*< desc="Paint" >*/
|
2004-06-30 23:47:32 +08:00
|
|
|
GIMP_UNDO_GROUP_PARASITE_ATTACH, /*< desc="Attach parasite" >*/
|
|
|
|
GIMP_UNDO_GROUP_PARASITE_REMOVE, /*< desc="Remove parasite" >*/
|
|
|
|
GIMP_UNDO_GROUP_VECTORS_IMPORT, /*< desc="Import paths" >*/
|
Made drawable/layer properties (visibility, opacity etc.) undoable (fixes
2003-03-17 Michael Natterer <mitch@gimp.org>
Made drawable/layer properties (visibility, opacity etc.)
undoable (fixes bug #73893).
* app/core/core-enums.[ch]: added undo types/groups for
visibility, mode, opacity, linked and preserve_trans.
* app/core/Makefile.am
* app/core/core-types.h
* app/core/gimpitemundo.[ch]: new GimpUndo subclass which holds a
ref'ed GimpItem pointer so (1) this doesn't need to be done by all
undo steps related to an item and (2) the item the undo step is
for can be determined from outside the undo system.
* app/core/gimpimage-undo.[ch]: added gimp_image_undo_push_item()
which returns a new GimpItemUndo.
* app/core/gimpimage-undo-push.[ch]: use it for all item related
undo steps. Removed lots of GimpItem, GimpLayer, GimpDrawable
and GimpVectors pointers from the private undo structs. Added
undo push functions for the new undo types added above.
* app/core/gimpdrawable.[ch] (gimp_drawable_set_visible): added
"gboolean push_undo" parameter.
* app/core/gimplayer.[ch] (gimp_layer_set_opacity, _mode,
_preserve_trans, _linked): added "gboolean push_undo" parameters.
* app/core/gimpimage-mask.c
* app/core/gimpimage-merge.c
* app/core/gimplayer-floating-sel.c
* app/tools/gimpmovetool.c
* app/xcf/xcf-load.c
* app/widgets/gimpdrawablelistitem.c
* app/widgets/gimplayerlistitem.c
* app/widgets/gimplayerlistview.c: changed accordingly.
* tools/pdbgen/pdb/channel.pdb
* tools/pdbgen/pdb/layer.pdb: ditto. Added '$undo' paramaters to
the foo_accessors() functions. Removed $func from foo_accesors()
because we don't manipulate items without using getters/setters
any longer.
* app/pdb/channel_cmds.c
* app/pdb/layer_cmds.c: regenerated.
* app/widgets/gimpcellrenderertoggle.[ch]: added "clicked" signal
which carries an additional "GdkModifierType state" parameter as
in GimpCellRendererViewable .
* app/widgets/gimpcontainertreeview.c: emit "clicked" from
the toggle renderer, not "toggled" so the callbacks get the
modifier state.
* app/widgets/gimpdrawabletreeview.c: resurrected the "exclusive
visible by <shift>+click" feature as in 1.2.
* app/widgets/gimplayertreeview.c: compress layer opacity undos by
looking at the top of the undo stack and not pushing an undo if
there already is a GIMP_UNDO_DRAWABLE_OPACITY for the active
layer.
2003-03-18 02:02:41 +08:00
|
|
|
GIMP_UNDO_GROUP_MISC, /*< desc="Plug-In" >*/
|
2003-02-13 19:23:50 +08:00
|
|
|
|
|
|
|
GIMP_UNDO_GROUP_LAST = GIMP_UNDO_GROUP_MISC, /*< skip >*/
|
2003-02-13 01:11:34 +08:00
|
|
|
|
|
|
|
/* Undo types which actually do something */
|
|
|
|
|
2005-09-12 03:26:59 +08:00
|
|
|
GIMP_UNDO_IMAGE_TYPE, /*< desc="Image type" >*/
|
|
|
|
GIMP_UNDO_IMAGE_SIZE, /*< desc="Image size" >*/
|
|
|
|
GIMP_UNDO_IMAGE_RESOLUTION, /*< desc="Image resolution change" >*/
|
|
|
|
GIMP_UNDO_IMAGE_GUIDE, /*< desc="Guide" >*/
|
|
|
|
GIMP_UNDO_IMAGE_GRID, /*< desc="Grid" >*/
|
|
|
|
GIMP_UNDO_IMAGE_SAMPLE_POINT, /*< desc="Sample Point" >*/
|
|
|
|
GIMP_UNDO_IMAGE_COLORMAP, /*< desc="Change indexed palette" >*/
|
|
|
|
GIMP_UNDO_DRAWABLE, /*< desc="Layer/Channel" >*/
|
|
|
|
GIMP_UNDO_DRAWABLE_MOD, /*< desc="Layer/Channel modification" >*/
|
|
|
|
GIMP_UNDO_MASK, /*< desc="Selection mask" >*/
|
|
|
|
GIMP_UNDO_ITEM_RENAME, /*< desc="Rename item" >*/
|
|
|
|
GIMP_UNDO_ITEM_DISPLACE, /*< desc="Move item" >*/
|
|
|
|
GIMP_UNDO_ITEM_VISIBILITY, /*< desc="Item visibility" >*/
|
|
|
|
GIMP_UNDO_ITEM_LINKED, /*< desc="Link/Unlink item" >*/
|
|
|
|
GIMP_UNDO_LAYER_ADD, /*< desc="New layer" >*/
|
|
|
|
GIMP_UNDO_LAYER_REMOVE, /*< desc="Delete layer" >*/
|
|
|
|
GIMP_UNDO_LAYER_REPOSITION, /*< desc="Reposition layer" >*/
|
|
|
|
GIMP_UNDO_LAYER_MODE, /*< desc="Set layer mode" >*/
|
|
|
|
GIMP_UNDO_LAYER_OPACITY, /*< desc="Set layer opacity" >*/
|
|
|
|
GIMP_UNDO_LAYER_LOCK_ALPHA, /*< desc="Lock/Unlock alpha channel" >*/
|
|
|
|
GIMP_UNDO_TEXT_LAYER, /*< desc="Text layer" >*/
|
|
|
|
GIMP_UNDO_TEXT_LAYER_MODIFIED, /*< desc="Text layer modification" >*/
|
|
|
|
GIMP_UNDO_LAYER_MASK_ADD, /*< desc="Add layer mask" >*/
|
|
|
|
GIMP_UNDO_LAYER_MASK_REMOVE, /*< desc="Delete layer mask" >*/
|
|
|
|
GIMP_UNDO_LAYER_MASK_APPLY, /*< desc="Apply layer mask" >*/
|
|
|
|
GIMP_UNDO_LAYER_MASK_SHOW, /*< desc="Show layer mask" >*/
|
|
|
|
GIMP_UNDO_CHANNEL_ADD, /*< desc="New channel" >*/
|
|
|
|
GIMP_UNDO_CHANNEL_REMOVE, /*< desc="Delete channel" >*/
|
|
|
|
GIMP_UNDO_CHANNEL_REPOSITION, /*< desc="Reposition channel" >*/
|
|
|
|
GIMP_UNDO_CHANNEL_COLOR, /*< desc="Channel color" >*/
|
|
|
|
GIMP_UNDO_VECTORS_ADD, /*< desc="New path" >*/
|
|
|
|
GIMP_UNDO_VECTORS_REMOVE, /*< desc="Delete path" >*/
|
|
|
|
GIMP_UNDO_VECTORS_MOD, /*< desc="Path modification" >*/
|
|
|
|
GIMP_UNDO_VECTORS_REPOSITION, /*< desc="Reposition path" >*/
|
|
|
|
GIMP_UNDO_FS_TO_LAYER, /*< desc="Floating selection to layer" >*/
|
|
|
|
GIMP_UNDO_FS_RIGOR, /*< desc="FS rigor" >*/
|
|
|
|
GIMP_UNDO_FS_RELAX, /*< desc="FS relax" >*/
|
|
|
|
GIMP_UNDO_TRANSFORM, /*< desc="Transform" >*/
|
|
|
|
GIMP_UNDO_PAINT, /*< desc="Paint" >*/
|
|
|
|
GIMP_UNDO_INK, /*< desc="Ink" >*/
|
|
|
|
GIMP_UNDO_FOREGROUND_SELECT, /*< desc="Select foreground" >*/
|
|
|
|
GIMP_UNDO_PARASITE_ATTACH, /*< desc="Attach parasite" >*/
|
|
|
|
GIMP_UNDO_PARASITE_REMOVE, /*< desc="Remove parasite" >*/
|
|
|
|
|
|
|
|
GIMP_UNDO_CANT /*< desc="EEK: can't undo" >*/
|
2003-02-13 01:11:34 +08:00
|
|
|
} GimpUndoType;
|
|
|
|
|
|
|
|
|
2004-07-28 19:50:20 +08:00
|
|
|
#define GIMP_TYPE_DIRTY_MASK (gimp_dirty_mask_get_type ())
|
|
|
|
|
|
|
|
GType gimp_dirty_mask_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum /*< pdb-skip >*/
|
|
|
|
{
|
|
|
|
GIMP_DIRTY_NONE = 0,
|
|
|
|
|
|
|
|
GIMP_DIRTY_IMAGE = 1 << 0,
|
2004-07-29 22:16:21 +08:00
|
|
|
GIMP_DIRTY_IMAGE_SIZE = 1 << 1,
|
|
|
|
GIMP_DIRTY_IMAGE_META = 1 << 2,
|
|
|
|
GIMP_DIRTY_IMAGE_STRUCTURE = 1 << 3,
|
|
|
|
GIMP_DIRTY_ITEM = 1 << 4,
|
|
|
|
GIMP_DIRTY_ITEM_META = 1 << 5,
|
|
|
|
GIMP_DIRTY_DRAWABLE = 1 << 6,
|
|
|
|
GIMP_DIRTY_VECTORS = 1 << 7,
|
|
|
|
GIMP_DIRTY_SELECTION = 1 << 8,
|
|
|
|
|
|
|
|
GIMP_DIRTY_ALL = 0xffff
|
2004-07-28 19:50:20 +08:00
|
|
|
} GimpDirtyMask;
|
|
|
|
|
|
|
|
|
2006-03-27 21:49:19 +08:00
|
|
|
#define GIMP_TYPE_OFFSET_TYPE (gimp_offset_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_offset_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GIMP_OFFSET_BACKGROUND,
|
|
|
|
GIMP_OFFSET_TRANSPARENT
|
|
|
|
} GimpOffsetType;
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_GRADIENT_SEGMENT_TYPE (gimp_gradient_segment_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_gradient_segment_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GIMP_GRADIENT_SEGMENT_LINEAR,
|
|
|
|
GIMP_GRADIENT_SEGMENT_CURVED,
|
|
|
|
GIMP_GRADIENT_SEGMENT_SINE,
|
|
|
|
GIMP_GRADIENT_SEGMENT_SPHERE_INCREASING,
|
|
|
|
GIMP_GRADIENT_SEGMENT_SPHERE_DECREASING
|
|
|
|
} GimpGradientSegmentType;
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_GRADIENT_SEGMENT_COLOR (gimp_gradient_segment_color_get_type ())
|
|
|
|
|
|
|
|
GType gimp_gradient_segment_color_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GIMP_GRADIENT_SEGMENT_RGB, /* normal RGB */
|
|
|
|
GIMP_GRADIENT_SEGMENT_HSV_CCW, /* counterclockwise hue */
|
|
|
|
GIMP_GRADIENT_SEGMENT_HSV_CW /* clockwise hue */
|
|
|
|
} GimpGradientSegmentColor;
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_MASK_APPLY_MODE (gimp_mask_apply_mode_get_type ())
|
|
|
|
|
|
|
|
GType gimp_mask_apply_mode_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GIMP_MASK_APPLY,
|
|
|
|
GIMP_MASK_DISCARD
|
|
|
|
} GimpMaskApplyMode;
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_MERGE_TYPE (gimp_merge_type_get_type ())
|
|
|
|
|
|
|
|
GType gimp_merge_type_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GIMP_EXPAND_AS_NECESSARY,
|
|
|
|
GIMP_CLIP_TO_IMAGE,
|
|
|
|
GIMP_CLIP_TO_BOTTOM_LAYER,
|
|
|
|
GIMP_FLATTEN_IMAGE
|
|
|
|
} GimpMergeType;
|
|
|
|
|
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
/*
|
|
|
|
* non-registered enums; register them if needed
|
|
|
|
*/
|
|
|
|
|
2006-05-19 22:50:46 +08:00
|
|
|
|
2003-06-30 05:54:09 +08:00
|
|
|
typedef enum /*< pdb-skip, skip >*/
|
2003-06-28 19:20:37 +08:00
|
|
|
{
|
|
|
|
GIMP_CONTEXT_FIRST_PROP = 2,
|
|
|
|
|
|
|
|
GIMP_CONTEXT_PROP_IMAGE = GIMP_CONTEXT_FIRST_PROP,
|
|
|
|
GIMP_CONTEXT_PROP_DISPLAY = 3,
|
|
|
|
GIMP_CONTEXT_PROP_TOOL = 4,
|
2005-12-28 02:57:01 +08:00
|
|
|
GIMP_CONTEXT_PROP_PAINT_INFO = 5,
|
|
|
|
GIMP_CONTEXT_PROP_FOREGROUND = 6,
|
|
|
|
GIMP_CONTEXT_PROP_BACKGROUND = 7,
|
|
|
|
GIMP_CONTEXT_PROP_OPACITY = 8,
|
|
|
|
GIMP_CONTEXT_PROP_PAINT_MODE = 9,
|
|
|
|
GIMP_CONTEXT_PROP_BRUSH = 10,
|
|
|
|
GIMP_CONTEXT_PROP_PATTERN = 11,
|
|
|
|
GIMP_CONTEXT_PROP_GRADIENT = 12,
|
|
|
|
GIMP_CONTEXT_PROP_PALETTE = 13,
|
|
|
|
GIMP_CONTEXT_PROP_FONT = 14,
|
|
|
|
GIMP_CONTEXT_PROP_BUFFER = 15,
|
|
|
|
GIMP_CONTEXT_PROP_IMAGEFILE = 16,
|
|
|
|
GIMP_CONTEXT_PROP_TEMPLATE = 17,
|
2003-06-28 19:20:37 +08:00
|
|
|
|
|
|
|
GIMP_CONTEXT_LAST_PROP = GIMP_CONTEXT_PROP_TEMPLATE
|
|
|
|
} GimpContextPropType;
|
|
|
|
|
2006-05-19 22:50:46 +08:00
|
|
|
|
2003-06-30 05:54:09 +08:00
|
|
|
typedef enum /*< pdb-skip, skip >*/
|
2003-06-28 19:20:37 +08:00
|
|
|
{
|
|
|
|
GIMP_CONTEXT_IMAGE_MASK = 1 << 2,
|
|
|
|
GIMP_CONTEXT_DISPLAY_MASK = 1 << 3,
|
|
|
|
GIMP_CONTEXT_TOOL_MASK = 1 << 4,
|
2005-12-28 02:57:01 +08:00
|
|
|
GIMP_CONTEXT_PAINT_INFO_MASK = 1 << 5,
|
|
|
|
GIMP_CONTEXT_FOREGROUND_MASK = 1 << 6,
|
|
|
|
GIMP_CONTEXT_BACKGROUND_MASK = 1 << 7,
|
|
|
|
GIMP_CONTEXT_OPACITY_MASK = 1 << 8,
|
|
|
|
GIMP_CONTEXT_PAINT_MODE_MASK = 1 << 9,
|
|
|
|
GIMP_CONTEXT_BRUSH_MASK = 1 << 10,
|
|
|
|
GIMP_CONTEXT_PATTERN_MASK = 1 << 11,
|
|
|
|
GIMP_CONTEXT_GRADIENT_MASK = 1 << 12,
|
|
|
|
GIMP_CONTEXT_PALETTE_MASK = 1 << 13,
|
|
|
|
GIMP_CONTEXT_FONT_MASK = 1 << 14,
|
|
|
|
GIMP_CONTEXT_BUFFER_MASK = 1 << 15,
|
|
|
|
GIMP_CONTEXT_IMAGEFILE_MASK = 1 << 16,
|
|
|
|
GIMP_CONTEXT_TEMPLATE_MASK = 1 << 17,
|
2003-06-28 19:20:37 +08:00
|
|
|
|
|
|
|
/* aliases */
|
|
|
|
GIMP_CONTEXT_PAINT_PROPS_MASK = (GIMP_CONTEXT_FOREGROUND_MASK |
|
2004-08-01 11:06:58 +08:00
|
|
|
GIMP_CONTEXT_BACKGROUND_MASK |
|
|
|
|
GIMP_CONTEXT_OPACITY_MASK |
|
|
|
|
GIMP_CONTEXT_PAINT_MODE_MASK |
|
|
|
|
GIMP_CONTEXT_BRUSH_MASK |
|
|
|
|
GIMP_CONTEXT_PATTERN_MASK |
|
|
|
|
GIMP_CONTEXT_GRADIENT_MASK),
|
2003-06-28 19:20:37 +08:00
|
|
|
GIMP_CONTEXT_ALL_PROPS_MASK = (GIMP_CONTEXT_IMAGE_MASK |
|
2004-08-01 11:06:58 +08:00
|
|
|
GIMP_CONTEXT_DISPLAY_MASK |
|
|
|
|
GIMP_CONTEXT_TOOL_MASK |
|
2005-12-28 02:57:01 +08:00
|
|
|
GIMP_CONTEXT_PAINT_INFO_MASK |
|
2004-08-01 11:06:58 +08:00
|
|
|
GIMP_CONTEXT_PALETTE_MASK |
|
|
|
|
GIMP_CONTEXT_FONT_MASK |
|
|
|
|
GIMP_CONTEXT_BUFFER_MASK |
|
|
|
|
GIMP_CONTEXT_IMAGEFILE_MASK |
|
|
|
|
GIMP_CONTEXT_TEMPLATE_MASK |
|
|
|
|
GIMP_CONTEXT_PAINT_PROPS_MASK)
|
2003-06-28 19:20:37 +08:00
|
|
|
} GimpContextPropMask;
|
|
|
|
|
2006-05-19 22:50:46 +08:00
|
|
|
|
2003-12-09 05:56:22 +08:00
|
|
|
typedef enum /*< pdb-skip, skip >*/
|
|
|
|
{
|
2003-12-09 19:49:47 +08:00
|
|
|
GIMP_IMAGE_SCALE_OK,
|
|
|
|
GIMP_IMAGE_SCALE_TOO_SMALL,
|
|
|
|
GIMP_IMAGE_SCALE_TOO_BIG
|
2003-12-09 05:56:22 +08:00
|
|
|
} GimpImageScaleCheckType;
|
2001-12-12 02:11:56 +08:00
|
|
|
|
2004-07-28 19:50:20 +08:00
|
|
|
|
2006-05-19 22:50:46 +08:00
|
|
|
typedef enum /*< pdb-skip, skip >*/
|
|
|
|
{
|
|
|
|
GIMP_ITEM_TYPE_LAYERS = 1 << 0,
|
|
|
|
GIMP_ITEM_TYPE_CHANNELS = 1 << 1,
|
|
|
|
GIMP_ITEM_TYPE_VECTORS = 1 << 2,
|
|
|
|
|
|
|
|
GIMP_ITEM_TYPE_ALL = (GIMP_ITEM_TYPE_LAYERS |
|
|
|
|
GIMP_ITEM_TYPE_CHANNELS |
|
|
|
|
GIMP_ITEM_TYPE_VECTORS)
|
|
|
|
} GimpItemTypeMask;
|
|
|
|
|
|
|
|
|
2002-03-29 11:50:29 +08:00
|
|
|
#endif /* __CORE_ENUMS_H__ */
|