2007-06-01 19:19:37 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* GimpColorManaged interface
|
|
|
|
* Copyright (C) 2007 Sven Neumann <sven@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2007-06-01 19:19:37 +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.
|
2007-06-01 19:19:37 +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/>.
|
2007-06-01 19:19:37 +08:00
|
|
|
*/
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#if !defined (__GIMP_COLOR_H_INSIDE__) && !defined (GIMP_COLOR_COMPILATION)
|
|
|
|
#error "Only <libgimpcolor/gimpcolor.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2007-06-01 19:19:37 +08:00
|
|
|
#ifndef __GIMP_COLOR_MANAGED_H__
|
|
|
|
#define __GIMP_COLOR_MANAGED_H__
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
|
|
|
|
2018-05-27 16:30:56 +08:00
|
|
|
#define GIMP_TYPE_COLOR_MANAGED (gimp_color_managed_get_type ())
|
2007-06-01 19:19:37 +08:00
|
|
|
#define GIMP_IS_COLOR_MANAGED(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_COLOR_MANAGED))
|
|
|
|
#define GIMP_COLOR_MANAGED(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_COLOR_MANAGED, GimpColorManaged))
|
|
|
|
#define GIMP_COLOR_MANAGED_GET_INTERFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GIMP_TYPE_COLOR_MANAGED, GimpColorManagedInterface))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpColorManagedInterface GimpColorManagedInterface;
|
|
|
|
|
|
|
|
struct _GimpColorManagedInterface
|
|
|
|
{
|
|
|
|
GTypeInterface base_iface;
|
|
|
|
|
|
|
|
/* virtual functions */
|
2015-05-13 06:43:16 +08:00
|
|
|
const guint8 * (* get_icc_profile) (GimpColorManaged *managed,
|
|
|
|
gsize *len);
|
2007-06-01 19:19:37 +08:00
|
|
|
|
|
|
|
/* signals */
|
2015-05-13 06:43:16 +08:00
|
|
|
void (* profile_changed) (GimpColorManaged *managed);
|
|
|
|
|
|
|
|
/* virtual functions */
|
2015-07-11 04:43:53 +08:00
|
|
|
GimpColorProfile * (* get_color_profile) (GimpColorManaged *managed);
|
2007-06-01 19:19:37 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-05-27 17:59:39 +08:00
|
|
|
GType gimp_color_managed_get_type (void) G_GNUC_CONST;
|
2018-05-27 16:30:56 +08:00
|
|
|
|
2018-05-27 17:59:39 +08:00
|
|
|
const guint8 * gimp_color_managed_get_icc_profile (GimpColorManaged *managed,
|
|
|
|
gsize *len);
|
|
|
|
GimpColorProfile * gimp_color_managed_get_color_profile (GimpColorManaged *managed);
|
2015-05-13 06:43:16 +08:00
|
|
|
|
2018-05-27 17:59:39 +08:00
|
|
|
void gimp_color_managed_profile_changed (GimpColorManaged *managed);
|
2007-06-01 19:19:37 +08:00
|
|
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GIMP_COLOR_MANAGED_IFACE_H__ */
|