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 __ACTIONS_TYPES_H__
19 #define __ACTIONS_TYPES_H__
20 
21 
22 #include "dialogs/dialogs-types.h"
23 #include "tools/tools-types.h"
24 
25 
26 typedef enum
27 {
28   GIMP_ACTION_SELECT_SET              =  0,
29   GIMP_ACTION_SELECT_SET_TO_DEFAULT   = -1,
30   GIMP_ACTION_SELECT_FIRST            = -2,
31   GIMP_ACTION_SELECT_LAST             = -3,
32   GIMP_ACTION_SELECT_SMALL_PREVIOUS   = -4,
33   GIMP_ACTION_SELECT_SMALL_NEXT       = -5,
34   GIMP_ACTION_SELECT_PREVIOUS         = -6,
35   GIMP_ACTION_SELECT_NEXT             = -7,
36   GIMP_ACTION_SELECT_SKIP_PREVIOUS    = -8,
37   GIMP_ACTION_SELECT_SKIP_NEXT        = -9,
38   GIMP_ACTION_SELECT_PERCENT_PREVIOUS = -10,
39   GIMP_ACTION_SELECT_PERCENT_NEXT     = -11
40 } GimpActionSelectType;
41 
42 typedef enum
43 {
44   GIMP_SAVE_MODE_SAVE,
45   GIMP_SAVE_MODE_SAVE_AS,
46   GIMP_SAVE_MODE_SAVE_A_COPY,
47   GIMP_SAVE_MODE_SAVE_AND_CLOSE,
48   GIMP_SAVE_MODE_EXPORT,
49   GIMP_SAVE_MODE_EXPORT_AS,
50   GIMP_SAVE_MODE_OVERWRITE
51 } GimpSaveMode;
52 
53 
54 #endif /* __ACTIONS_TYPES_H__ */
55