2005-02-06 22:15:54 +00:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* GimpColorConfig class
|
|
|
|
* Copyright (C) 2004 Stefan Döhla <stefan@doehla.de>
|
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2005-02-06 22:15:54 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-17 22:28:01 +00:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2005-02-06 22:15:54 +00: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-17 22:28:01 +00:00
|
|
|
* License along with this library. If not, see
|
2018-07-11 23:27:07 +02:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2005-02-06 22:15:54 +00:00
|
|
|
*/
|
|
|
|
|
2011-04-28 14:30:41 +02:00
|
|
|
#if !defined (__GIMP_CONFIG_H_INSIDE__) && !defined (GIMP_CONFIG_COMPILATION)
|
|
|
|
#error "Only <libgimpconfig/gimpconfig.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2005-02-06 22:15:54 +00:00
|
|
|
#ifndef __GIMP_COLOR_CONFIG_H__
|
|
|
|
#define __GIMP_COLOR_CONFIG_H__
|
|
|
|
|
|
|
|
|
2024-08-02 14:02:30 +00:00
|
|
|
#define GIMP_TYPE_COLOR_CONFIG (gimp_color_config_get_type ())
|
2024-10-17 21:41:41 +02:00
|
|
|
G_DECLARE_FINAL_TYPE (GimpColorConfig, gimp_color_config, GIMP, COLOR_CONFIG, GObject)
|
2005-02-06 22:15:54 +00:00
|
|
|
|
|
|
|
|
2016-06-05 23:58:02 +02:00
|
|
|
GimpColorManagementMode
|
|
|
|
gimp_color_config_get_mode (GimpColorConfig *config);
|
|
|
|
|
|
|
|
GimpColorRenderingIntent
|
|
|
|
gimp_color_config_get_display_intent (GimpColorConfig *config);
|
|
|
|
gboolean gimp_color_config_get_display_bpc (GimpColorConfig *config);
|
2016-06-06 01:15:26 +02:00
|
|
|
gboolean gimp_color_config_get_display_optimize (GimpColorConfig *config);
|
2016-06-05 23:58:02 +02:00
|
|
|
gboolean gimp_color_config_get_display_profile_from_gdk (GimpColorConfig *config);
|
|
|
|
|
|
|
|
GimpColorRenderingIntent
|
|
|
|
gimp_color_config_get_simulation_intent (GimpColorConfig *config);
|
|
|
|
gboolean gimp_color_config_get_simulation_bpc (GimpColorConfig *config);
|
2016-06-06 01:15:26 +02:00
|
|
|
gboolean gimp_color_config_get_simulation_optimize (GimpColorConfig *config);
|
2016-06-05 23:58:02 +02:00
|
|
|
gboolean gimp_color_config_get_simulation_gamut_check (GimpColorConfig *config);
|
2023-11-22 23:38:25 +01:00
|
|
|
GeglColor * gimp_color_config_get_out_of_gamut_color (GimpColorConfig *config);
|
2016-06-05 23:58:02 +02:00
|
|
|
|
2016-06-05 18:00:24 +02:00
|
|
|
GimpColorProfile * gimp_color_config_get_rgb_color_profile (GimpColorConfig *config,
|
|
|
|
GError **error);
|
|
|
|
GimpColorProfile * gimp_color_config_get_gray_color_profile (GimpColorConfig *config,
|
|
|
|
GError **error);
|
|
|
|
GimpColorProfile * gimp_color_config_get_cmyk_color_profile (GimpColorConfig *config,
|
|
|
|
GError **error);
|
|
|
|
GimpColorProfile * gimp_color_config_get_display_color_profile (GimpColorConfig *config,
|
|
|
|
GError **error);
|
|
|
|
GimpColorProfile * gimp_color_config_get_simulation_color_profile (GimpColorConfig *config,
|
|
|
|
GError **error);
|
2005-02-06 22:15:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* GIMP_COLOR_CONFIG_H__ */
|