mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 09:23:24 +00:00

because it confuses gtk-doc and breaks some links. Also change the "Index of new symbols in GIMP 2.x" sections to be what seems to be the modern standard (looked at the GLib and GTK+ docs), and update some other stuff.
174 lines
4.5 KiB
C
174 lines
4.5 KiB
C
/* LIBGIMP - The GIMP Library
|
|
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
|
|
*
|
|
* GimpColorManaged interface
|
|
* Copyright (C) 2007 Sven Neumann <sven@gimp.org>
|
|
*
|
|
* This library is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* 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
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gio/gio.h>
|
|
#include <gegl.h>
|
|
|
|
#include "gimpcolortypes.h"
|
|
|
|
#include "gimpcolormanaged.h"
|
|
#include "gimplcms.h"
|
|
|
|
|
|
/**
|
|
* SECTION: gimpcolormanaged
|
|
* @title: GimpColorManaged
|
|
* @short_description: An interface dealing with color profiles.
|
|
*
|
|
* An interface dealing with color profiles.
|
|
**/
|
|
|
|
|
|
enum
|
|
{
|
|
PROFILE_CHANGED,
|
|
LAST_SIGNAL
|
|
};
|
|
|
|
|
|
static void gimp_color_managed_base_init (GimpColorManagedInterface *iface);
|
|
|
|
|
|
static guint gimp_color_managed_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
|
GType
|
|
gimp_color_managed_interface_get_type (void)
|
|
{
|
|
static GType iface_type = 0;
|
|
|
|
if (! iface_type)
|
|
{
|
|
const GTypeInfo iface_info =
|
|
{
|
|
sizeof (GimpColorManagedInterface),
|
|
(GBaseInitFunc) gimp_color_managed_base_init,
|
|
(GBaseFinalizeFunc) NULL,
|
|
};
|
|
|
|
iface_type = g_type_register_static (G_TYPE_INTERFACE,
|
|
"GimpColorManagedInterface",
|
|
&iface_info, 0);
|
|
|
|
g_type_interface_add_prerequisite (iface_type, G_TYPE_OBJECT);
|
|
}
|
|
|
|
return iface_type;
|
|
}
|
|
|
|
static void
|
|
gimp_color_managed_base_init (GimpColorManagedInterface *iface)
|
|
{
|
|
static gboolean initialized = FALSE;
|
|
|
|
if (! initialized)
|
|
{
|
|
gimp_color_managed_signals[PROFILE_CHANGED] =
|
|
g_signal_new ("profile-changed",
|
|
G_TYPE_FROM_INTERFACE (iface),
|
|
G_SIGNAL_RUN_FIRST,
|
|
G_STRUCT_OFFSET (GimpColorManagedInterface,
|
|
profile_changed),
|
|
NULL, NULL,
|
|
g_cclosure_marshal_VOID__VOID,
|
|
G_TYPE_NONE, 0);
|
|
|
|
iface->get_icc_profile = NULL;
|
|
iface->get_color_profile = NULL;
|
|
iface->profile_changed = NULL;
|
|
|
|
initialized = TRUE;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* gimp_color_managed_get_icc_profile:
|
|
* @managed: an object the implements the #GimpColorManaged interface
|
|
* @len: return location for the number of bytes in the profile data
|
|
*
|
|
* Return value: A pointer to a blob of data that represents an ICC
|
|
* color profile.
|
|
*
|
|
* Since: 2.4
|
|
**/
|
|
const guint8 *
|
|
gimp_color_managed_get_icc_profile (GimpColorManaged *managed,
|
|
gsize *len)
|
|
{
|
|
GimpColorManagedInterface *iface;
|
|
|
|
g_return_val_if_fail (GIMP_IS_COLOR_MANAGED (managed), NULL);
|
|
g_return_val_if_fail (len != NULL, NULL);
|
|
|
|
*len = 0;
|
|
|
|
iface = GIMP_COLOR_MANAGED_GET_INTERFACE (managed);
|
|
|
|
if (iface->get_icc_profile)
|
|
return iface->get_icc_profile (managed, len);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/**
|
|
* gimp_color_managed_get_color_profile:
|
|
* @managed: an object the implements the #GimpColorManaged interface
|
|
*
|
|
* This function always returns a #GimpColorProfile and falls back to
|
|
* gimp_lcms_create_srgb_profile() if the method is not implemented.
|
|
*
|
|
* Return value: The @managed's #GimpColorProfile.
|
|
*
|
|
* Since: 2.10
|
|
**/
|
|
GimpColorProfile
|
|
gimp_color_managed_get_color_profile (GimpColorManaged *managed)
|
|
{
|
|
GimpColorManagedInterface *iface;
|
|
|
|
g_return_val_if_fail (GIMP_IS_COLOR_MANAGED (managed), NULL);
|
|
|
|
iface = GIMP_COLOR_MANAGED_GET_INTERFACE (managed);
|
|
|
|
if (iface->get_color_profile)
|
|
return iface->get_color_profile (managed);
|
|
|
|
/* never return a NULL profile */
|
|
return gimp_lcms_create_srgb_profile ();
|
|
}
|
|
|
|
/**
|
|
* gimp_color_managed_profile_changed:
|
|
* @managed: an object the implements the #GimpColorManaged interface
|
|
*
|
|
* Emits the "profile-changed" signal.
|
|
*
|
|
* Since: 2.4
|
|
**/
|
|
void
|
|
gimp_color_managed_profile_changed (GimpColorManaged *managed)
|
|
{
|
|
g_return_if_fail (GIMP_IS_COLOR_MANAGED (managed));
|
|
|
|
g_signal_emit (managed, gimp_color_managed_signals[PROFILE_CHANGED], 0);
|
|
}
|