app: remove base-enums.[ch]
and move its remaining content to core-enums, move the siox enum to base-types.h.
This commit is contained in:
@ -75,6 +75,18 @@ typedef enum
|
||||
} GimpConvertPaletteType;
|
||||
|
||||
|
||||
#define GIMP_TYPE_CONVOLUTION_TYPE (gimp_convolution_type_get_type ())
|
||||
|
||||
GType gimp_convolution_type_get_type (void) G_GNUC_CONST;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
GIMP_NORMAL_CONVOL, /* Negative numbers truncated */
|
||||
GIMP_ABSOLUTE_CONVOL, /* Absolute value */
|
||||
GIMP_NEGATIVE_CONVOL /* add 127 to values */
|
||||
} GimpConvolutionType;
|
||||
|
||||
|
||||
#define GIMP_TYPE_CURVE_TYPE (gimp_curve_type_get_type ())
|
||||
|
||||
GType gimp_curve_type_get_type (void) G_GNUC_CONST;
|
||||
@ -136,6 +148,41 @@ typedef enum
|
||||
} GimpHueRange;
|
||||
|
||||
|
||||
#define GIMP_TYPE_LAYER_MODE_EFFECTS (gimp_layer_mode_effects_get_type ())
|
||||
|
||||
GType gimp_layer_mode_effects_get_type (void) G_GNUC_CONST;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
GIMP_NORMAL_MODE, /*< desc="Normal" >*/
|
||||
GIMP_DISSOLVE_MODE, /*< desc="Dissolve" >*/
|
||||
GIMP_BEHIND_MODE, /*< desc="Behind" >*/
|
||||
GIMP_MULTIPLY_MODE, /*< desc="Multiply" >*/
|
||||
GIMP_SCREEN_MODE, /*< desc="Screen" >*/
|
||||
GIMP_OVERLAY_MODE, /*< desc="Overlay" >*/
|
||||
GIMP_DIFFERENCE_MODE, /*< desc="Difference" >*/
|
||||
GIMP_ADDITION_MODE, /*< desc="Addition" >*/
|
||||
GIMP_SUBTRACT_MODE, /*< desc="Subtract" >*/
|
||||
GIMP_DARKEN_ONLY_MODE, /*< desc="Darken only" >*/
|
||||
GIMP_LIGHTEN_ONLY_MODE, /*< desc="Lighten only" >*/
|
||||
GIMP_HUE_MODE, /*< desc="Hue" >*/
|
||||
GIMP_SATURATION_MODE, /*< desc="Saturation" >*/
|
||||
GIMP_COLOR_MODE, /*< desc="Color" >*/
|
||||
GIMP_VALUE_MODE, /*< desc="Value" >*/
|
||||
GIMP_DIVIDE_MODE, /*< desc="Divide" >*/
|
||||
GIMP_DODGE_MODE, /*< desc="Dodge" >*/
|
||||
GIMP_BURN_MODE, /*< desc="Burn" >*/
|
||||
GIMP_HARDLIGHT_MODE, /*< desc="Hard light" >*/
|
||||
GIMP_SOFTLIGHT_MODE, /*< desc="Soft light" >*/
|
||||
GIMP_GRAIN_EXTRACT_MODE, /*< desc="Grain extract" >*/
|
||||
GIMP_GRAIN_MERGE_MODE, /*< desc="Grain merge" >*/
|
||||
GIMP_COLOR_ERASE_MODE, /*< desc="Color erase" >*/
|
||||
GIMP_ERASE_MODE, /*< pdb-skip, desc="Erase" >*/
|
||||
GIMP_REPLACE_MODE, /*< pdb-skip, desc="Replace" >*/
|
||||
GIMP_ANTI_ERASE_MODE /*< pdb-skip, desc="Anti erase" >*/
|
||||
} GimpLayerModeEffects;
|
||||
|
||||
|
||||
#define GIMP_TYPE_ALIGNMENT_TYPE (gimp_alignment_type_get_type ())
|
||||
|
||||
GType gimp_alignment_type_get_type (void) G_GNUC_CONST;
|
||||
|
Reference in New Issue
Block a user