1 /* GIMP - The GNU Image Manipulation Program
2  * Copyright (C) 1995 Spencer Kimball and Peter Mattis
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef __PAINT_ENUMS_H__
19 #define __PAINT_ENUMS_H__
20 
21 #if 0
22    This file is parsed by two scripts, enumgen.pl in pdb,
23    and gimp-mkenums. All enums that are not marked with
24    /*< pdb-skip >*/ are exported to libgimp and the PDB. Enums that are
25    not marked with /*< skip >*/ are registered with the GType system.
26    If you want the enum to be skipped by both scripts, you have to use
27    /*< pdb-skip, skip >*/.
28 
29    The same syntax applies to enum values.
30 #endif
31 
32 
33 /*
34  * enums that are registered with the type system
35  */
36 
37 #define GIMP_TYPE_BRUSH_APPLICATION_MODE (gimp_brush_application_mode_get_type ())
38 
39 GType gimp_brush_application_mode_get_type (void) G_GNUC_CONST;
40 
41 typedef enum
42 {
43   GIMP_BRUSH_HARD,
44   GIMP_BRUSH_SOFT,
45   GIMP_BRUSH_PRESSURE  /*< pdb-skip, skip >*/
46 } GimpBrushApplicationMode;
47 
48 
49 #define GIMP_TYPE_PERSPECTIVE_CLONE_MODE (gimp_perspective_clone_mode_get_type ())
50 
51 GType gimp_perspective_clone_mode_get_type (void) G_GNUC_CONST;
52 
53 typedef enum  /*< pdb-skip >*/
54 {
55   GIMP_PERSPECTIVE_CLONE_MODE_ADJUST,  /*< desc="Modify Perspective" >*/
56   GIMP_PERSPECTIVE_CLONE_MODE_PAINT    /*< desc="Perspective Clone"  >*/
57 } GimpPerspectiveCloneMode;
58 
59 
60 #define GIMP_TYPE_SOURCE_ALIGN_MODE (gimp_source_align_mode_get_type ())
61 
62 GType gimp_source_align_mode_get_type (void) G_GNUC_CONST;
63 
64 typedef enum /*< pdb-skip >*/
65 {
66   GIMP_SOURCE_ALIGN_NO,          /*< desc="None"        >*/
67   GIMP_SOURCE_ALIGN_YES,         /*< desc="Aligned"     >*/
68   GIMP_SOURCE_ALIGN_REGISTERED,  /*< desc="Registered"  >*/
69   GIMP_SOURCE_ALIGN_FIXED        /*< desc="Fixed"       >*/
70 } GimpSourceAlignMode;
71 
72 
73 /*
74  * non-registered enums; register them if needed
75  */
76 
77 typedef enum  /*< skip, pdb-skip >*/
78 {
79   GIMP_PAINT_STATE_INIT,    /*  Setup PaintFunc internals                    */
80   GIMP_PAINT_STATE_MOTION,  /*  PaintFunc performs motion-related rendering  */
81   GIMP_PAINT_STATE_FINISH   /*  Cleanup and/or reset PaintFunc operation     */
82 } GimpPaintState;
83 
84 
85 #endif /* __PAINT_ENUMS_H__ */
86