2005-02-07 06:15:54 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2016-06-07 03:05:16 +08:00
|
|
|
* gimpconfigenums.h
|
2005-02-07 06:15:54 +08:00
|
|
|
* Copyright (C) 2004 Stefan Döhla <stefan@doehla.de>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2005-02-07 06:15:54 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2005-02-07 06:15:54 +08:00
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2005-02-07 06:15:54 +08:00
|
|
|
*/
|
|
|
|
|
2016-06-07 03:05:16 +08:00
|
|
|
#ifndef __GIMP_CONFIG_ENUMS_H__
|
|
|
|
#define __GIMP_CONFIG_ENUMS_H__
|
2005-02-07 06:15:54 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_COLOR_MANAGEMENT_MODE (gimp_color_management_mode_get_type ())
|
|
|
|
|
|
|
|
GType gimp_color_management_mode_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2019-07-24 07:18:30 +08:00
|
|
|
/**
|
|
|
|
* GimpColorManagementMode:
|
|
|
|
* @GIMP_COLOR_MANAGEMENT_OFF: Color management is off
|
|
|
|
* @GIMP_COLOR_MANAGEMENT_DISPLAY: Color managed display
|
|
|
|
* @GIMP_COLOR_MANAGEMENT_SOFTPROOF: Soft-proofing
|
|
|
|
*
|
|
|
|
* Modes of color management.
|
|
|
|
**/
|
2005-02-07 06:15:54 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GIMP_COLOR_MANAGEMENT_OFF, /*< desc="No color management" >*/
|
2016-06-08 05:21:51 +08:00
|
|
|
GIMP_COLOR_MANAGEMENT_DISPLAY, /*< desc="Color-managed display" >*/
|
|
|
|
GIMP_COLOR_MANAGEMENT_SOFTPROOF /*< desc="Soft-proofing" >*/
|
2005-02-07 06:15:54 +08:00
|
|
|
} GimpColorManagementMode;
|
|
|
|
|
|
|
|
|
2016-06-07 03:05:16 +08:00
|
|
|
#define GIMP_TYPE_COLOR_RENDERING_INTENT (gimp_color_rendering_intent_get_type ())
|
2005-02-07 06:15:54 +08:00
|
|
|
|
|
|
|
GType gimp_color_rendering_intent_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2019-07-24 07:18:30 +08:00
|
|
|
/**
|
|
|
|
* GimpColorRenderingIntent:
|
2022-03-04 23:09:09 +08:00
|
|
|
* @GIMP_COLOR_RENDERING_INTENT_PERCEPTUAL: Perceptual
|
2019-07-24 07:18:30 +08:00
|
|
|
* @GIMP_COLOR_RENDERING_INTENT_RELATIVE_COLORIMETRIC: Relative colorimetric
|
|
|
|
* @GIMP_COLOR_RENDERING_INTENT_SATURATION: Saturation
|
|
|
|
* @GIMP_COLOR_RENDERING_INTENT_ABSOLUTE_COLORIMETRIC: Absolute colorimetric
|
|
|
|
*
|
|
|
|
* Intents for color management.
|
|
|
|
**/
|
2005-02-07 06:15:54 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
2005-02-08 08:04:50 +08:00
|
|
|
GIMP_COLOR_RENDERING_INTENT_PERCEPTUAL, /*< desc="Perceptual" >*/
|
2005-08-23 08:18:08 +08:00
|
|
|
GIMP_COLOR_RENDERING_INTENT_RELATIVE_COLORIMETRIC, /*< desc="Relative colorimetric" >*/
|
2008-11-06 16:28:28 +08:00
|
|
|
GIMP_COLOR_RENDERING_INTENT_SATURATION, /*< desc="Saturation" >*/
|
2005-08-23 08:18:08 +08:00
|
|
|
GIMP_COLOR_RENDERING_INTENT_ABSOLUTE_COLORIMETRIC /*< desc="Absolute colorimetric" >*/
|
2005-02-07 06:15:54 +08:00
|
|
|
} GimpColorRenderingIntent;
|
|
|
|
|
|
|
|
|
2016-06-07 03:05:16 +08:00
|
|
|
#endif /* __GIMP_CONFIG_ENUMS_H__ */
|