2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2004-04-19 23:19:14 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2004-04-19 23:19:14 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2004-04-19 23:19:14 +08:00
|
|
|
* (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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-04-19 23:19:14 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ACTIONS_TYPES_H__
|
|
|
|
#define __ACTIONS_TYPES_H__
|
|
|
|
|
|
|
|
|
2006-10-15 00:51:30 +08:00
|
|
|
#include "dialogs/dialogs-types.h"
|
2004-09-13 23:15:23 +08:00
|
|
|
#include "tools/tools-types.h"
|
2004-04-19 23:19:14 +08:00
|
|
|
|
|
|
|
|
2004-06-23 08:23:25 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
2006-10-16 00:51:30 +08:00
|
|
|
GIMP_ACTION_SELECT_SET = 0,
|
2008-06-01 04:05:03 +08:00
|
|
|
GIMP_ACTION_SELECT_SET_TO_DEFAULT = -1,
|
|
|
|
GIMP_ACTION_SELECT_FIRST = -2,
|
|
|
|
GIMP_ACTION_SELECT_LAST = -3,
|
|
|
|
GIMP_ACTION_SELECT_SMALL_PREVIOUS = -4,
|
|
|
|
GIMP_ACTION_SELECT_SMALL_NEXT = -5,
|
|
|
|
GIMP_ACTION_SELECT_PREVIOUS = -6,
|
|
|
|
GIMP_ACTION_SELECT_NEXT = -7,
|
|
|
|
GIMP_ACTION_SELECT_SKIP_PREVIOUS = -8,
|
|
|
|
GIMP_ACTION_SELECT_SKIP_NEXT = -9,
|
|
|
|
GIMP_ACTION_SELECT_PERCENT_PREVIOUS = -10,
|
|
|
|
GIMP_ACTION_SELECT_PERCENT_NEXT = -11
|
2004-06-23 08:23:25 +08:00
|
|
|
} GimpActionSelectType;
|
|
|
|
|
2007-01-21 03:38:09 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GIMP_SAVE_MODE_SAVE,
|
|
|
|
GIMP_SAVE_MODE_SAVE_AS,
|
|
|
|
GIMP_SAVE_MODE_SAVE_A_COPY,
|
2009-04-24 00:59:40 +08:00
|
|
|
GIMP_SAVE_MODE_SAVE_AND_CLOSE,
|
|
|
|
GIMP_SAVE_MODE_EXPORT,
|
2009-08-14 03:47:47 +08:00
|
|
|
GIMP_SAVE_MODE_EXPORT_TO /* Also used for 'Overwrite' */
|
2007-01-21 03:38:09 +08:00
|
|
|
} GimpSaveMode;
|
|
|
|
|
2004-06-23 08:23:25 +08:00
|
|
|
|
2004-04-19 23:19:14 +08:00
|
|
|
#endif /* __ACTIONS_TYPES_H__ */
|