mirror of https://github.com/GNOME/gimp.git
679 lines
19 KiB
C
679 lines
19 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (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
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <glib.h> /* lcms.h uses the "inline" keyword */
|
|
|
|
#ifdef G_OS_WIN32
|
|
#define STRICT
|
|
#include <windows.h>
|
|
#define LCMS_WIN_TYPES_ALREADY_DEFINED
|
|
#endif
|
|
|
|
#ifdef HAVE_LCMS_LCMS_H
|
|
#include <lcms/lcms.h>
|
|
#else
|
|
#include <lcms.h>
|
|
#endif
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#ifdef GDK_WINDOWING_QUARTZ
|
|
#include <Carbon/Carbon.h>
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
#include <CoreServices/CoreServices.h>
|
|
#endif
|
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
|
#include "libgimpconfig/gimpconfig.h"
|
|
#include "libgimpmath/gimpmath.h"
|
|
#include "libgimpmodule/gimpmodule.h"
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
#include "libgimp/libgimp-intl.h"
|
|
|
|
|
|
#define CDISPLAY_TYPE_LCMS (cdisplay_lcms_get_type ())
|
|
#define CDISPLAY_LCMS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CDISPLAY_TYPE_LCMS, CdisplayLcms))
|
|
#define CDISPLAY_LCMS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CDISPLAY_TYPE_LCMS, CdisplayLcmsClass))
|
|
#define CDISPLAY_IS_LCMS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CDISPLAY_TYPE_LCMS))
|
|
#define CDISPLAY_IS_LCMS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CDISPLAY_TYPE_LCMS))
|
|
|
|
|
|
typedef struct _CdisplayLcms CdisplayLcms;
|
|
typedef struct _CdisplayLcmsClass CdisplayLcmsClass;
|
|
|
|
struct _CdisplayLcms
|
|
{
|
|
GimpColorDisplay parent_instance;
|
|
|
|
cmsHTRANSFORM transform;
|
|
};
|
|
|
|
struct _CdisplayLcmsClass
|
|
{
|
|
GimpColorDisplayClass parent_instance;
|
|
};
|
|
|
|
|
|
GType cdisplay_lcms_get_type (void);
|
|
|
|
static void cdisplay_lcms_finalize (GObject *object);
|
|
|
|
static GtkWidget * cdisplay_lcms_configure (GimpColorDisplay *display);
|
|
static void cdisplay_lcms_convert (GimpColorDisplay *display,
|
|
guchar *buf,
|
|
gint width,
|
|
gint height,
|
|
gint bpp,
|
|
gint bpl);
|
|
static void cdisplay_lcms_changed (GimpColorDisplay *display);
|
|
|
|
static cmsHPROFILE cdisplay_lcms_get_rgb_profile (CdisplayLcms *lcms);
|
|
static cmsHPROFILE cdisplay_lcms_get_display_profile (CdisplayLcms *lcms);
|
|
static cmsHPROFILE cdisplay_lcms_get_printer_profile (CdisplayLcms *lcms);
|
|
|
|
static void cdisplay_lcms_attach_labelled (GtkTable *table,
|
|
gint row,
|
|
const gchar *text,
|
|
GtkWidget *widget);
|
|
static void cdisplay_lcms_update_profile_label (CdisplayLcms *lcms,
|
|
const gchar *name);
|
|
static void cdisplay_lcms_notify_profile (GObject *config,
|
|
GParamSpec *pspec,
|
|
CdisplayLcms *lcms);
|
|
|
|
|
|
static const GimpModuleInfo cdisplay_lcms_info =
|
|
{
|
|
GIMP_MODULE_ABI_VERSION,
|
|
N_("Color management display filter using ICC color profiles"),
|
|
"Sven Neumann",
|
|
"v0.3",
|
|
"(c) 2005 - 2007, released under the GPL",
|
|
"2005 - 2007"
|
|
};
|
|
|
|
G_DEFINE_DYNAMIC_TYPE (CdisplayLcms, cdisplay_lcms,
|
|
GIMP_TYPE_COLOR_DISPLAY)
|
|
|
|
G_MODULE_EXPORT const GimpModuleInfo *
|
|
gimp_module_query (GTypeModule *module)
|
|
{
|
|
return &cdisplay_lcms_info;
|
|
}
|
|
|
|
G_MODULE_EXPORT gboolean
|
|
gimp_module_register (GTypeModule *module)
|
|
{
|
|
cdisplay_lcms_register_type (module);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
cdisplay_lcms_class_init (CdisplayLcmsClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
GimpColorDisplayClass *display_class = GIMP_COLOR_DISPLAY_CLASS (klass);
|
|
|
|
object_class->finalize = cdisplay_lcms_finalize;
|
|
|
|
display_class->name = _("Color Management");
|
|
display_class->help_id = "gimp-colordisplay-lcms";
|
|
display_class->stock_id = GIMP_STOCK_DISPLAY_FILTER_LCMS;
|
|
|
|
display_class->configure = cdisplay_lcms_configure;
|
|
display_class->convert = cdisplay_lcms_convert;
|
|
display_class->changed = cdisplay_lcms_changed;
|
|
|
|
cmsErrorAction (LCMS_ERROR_IGNORE);
|
|
}
|
|
|
|
static void
|
|
cdisplay_lcms_class_finalize (CdisplayLcmsClass *klass)
|
|
{
|
|
}
|
|
|
|
static void
|
|
cdisplay_lcms_init (CdisplayLcms *lcms)
|
|
{
|
|
lcms->transform = NULL;
|
|
}
|
|
|
|
static void
|
|
cdisplay_lcms_finalize (GObject *object)
|
|
{
|
|
CdisplayLcms *lcms = CDISPLAY_LCMS (object);
|
|
|
|
if (lcms->transform)
|
|
{
|
|
cmsDeleteTransform (lcms->transform);
|
|
lcms->transform = NULL;
|
|
}
|
|
|
|
G_OBJECT_CLASS (cdisplay_lcms_parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
cdisplay_lcms_profile_get_info (cmsHPROFILE profile,
|
|
const gchar **name,
|
|
const gchar **info)
|
|
{
|
|
if (profile)
|
|
{
|
|
*name = cmsTakeProductDesc (profile);
|
|
|
|
if (! *name)
|
|
*name = cmsTakeProductName (profile);
|
|
|
|
if (*name && ! g_utf8_validate (*name, -1, NULL))
|
|
*name = _("(invalid UTF-8 string)");
|
|
|
|
*info = cmsTakeProductInfo (profile);
|
|
if (*name && ! g_utf8_validate (*info, -1, NULL))
|
|
*info = NULL;
|
|
}
|
|
else
|
|
{
|
|
*name = _("None");
|
|
*info = NULL;
|
|
}
|
|
}
|
|
|
|
static GtkWidget *
|
|
cdisplay_lcms_configure (GimpColorDisplay *display)
|
|
{
|
|
CdisplayLcms *lcms = CDISPLAY_LCMS (display);
|
|
GObject *config = G_OBJECT (gimp_color_display_get_config (display));
|
|
GtkWidget *vbox;
|
|
GtkWidget *hint;
|
|
GtkWidget *table;
|
|
GtkWidget *label;
|
|
gint row = 0;
|
|
|
|
if (! config)
|
|
return NULL;
|
|
|
|
vbox = gtk_vbox_new (FALSE, 12);
|
|
|
|
hint = gimp_hint_box_new (_("This filter takes its configuration "
|
|
"from the Color Management section "
|
|
"in the Preferences dialog."));
|
|
gtk_box_pack_start (GTK_BOX (vbox), hint, FALSE, FALSE, 0);
|
|
gtk_widget_show (hint);
|
|
|
|
table = gtk_table_new (5, 2, FALSE);
|
|
gtk_table_set_row_spacings (GTK_TABLE (table), 6);
|
|
gtk_table_set_row_spacing (GTK_TABLE (table), 0, 12);
|
|
gtk_table_set_col_spacings (GTK_TABLE (table), 6);
|
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
|
gtk_widget_show (table);
|
|
|
|
cdisplay_lcms_attach_labelled (GTK_TABLE (table), row++,
|
|
_("Mode of operation:"),
|
|
gimp_prop_enum_label_new (config, "mode"));
|
|
|
|
label = gtk_label_new (NULL);
|
|
gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END);
|
|
g_object_set_data (G_OBJECT (lcms), "rgb-profile", label);
|
|
cdisplay_lcms_attach_labelled (GTK_TABLE (table), row++,
|
|
_("Image profile:"),
|
|
label);
|
|
cdisplay_lcms_update_profile_label (lcms, "rgb-profile");
|
|
|
|
label = gtk_label_new (NULL);
|
|
gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END);
|
|
g_object_set_data (G_OBJECT (lcms), "display-profile", label);
|
|
cdisplay_lcms_attach_labelled (GTK_TABLE (table), row++,
|
|
_("Monitor profile:"),
|
|
label);
|
|
cdisplay_lcms_update_profile_label (lcms, "display-profile");
|
|
|
|
label = gtk_label_new (NULL);
|
|
gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END);
|
|
g_object_set_data (G_OBJECT (lcms), "printer-profile", label);
|
|
cdisplay_lcms_attach_labelled (GTK_TABLE (table), row++,
|
|
_("Print simulation profile:"),
|
|
label);
|
|
cdisplay_lcms_update_profile_label (lcms, "printer-profile");
|
|
|
|
g_signal_connect_object (config, "notify",
|
|
G_CALLBACK (cdisplay_lcms_notify_profile),
|
|
lcms, 0);
|
|
|
|
return vbox;
|
|
}
|
|
|
|
static void
|
|
cdisplay_lcms_convert (GimpColorDisplay *display,
|
|
guchar *buf,
|
|
gint width,
|
|
gint height,
|
|
gint bpp,
|
|
gint bpl)
|
|
{
|
|
CdisplayLcms *lcms = CDISPLAY_LCMS (display);
|
|
gint y;
|
|
|
|
if (bpp != 3)
|
|
return;
|
|
|
|
if (! lcms->transform)
|
|
return;
|
|
|
|
for (y = 0; y < height; y++, buf += bpl)
|
|
cmsDoTransform (lcms->transform, buf, buf, width);
|
|
}
|
|
|
|
static void
|
|
cdisplay_lcms_changed (GimpColorDisplay *display)
|
|
{
|
|
CdisplayLcms *lcms = CDISPLAY_LCMS (display);
|
|
GimpColorConfig *config = gimp_color_display_get_config (display);
|
|
|
|
cmsHPROFILE src_profile = NULL;
|
|
cmsHPROFILE dest_profile = NULL;
|
|
cmsHPROFILE proof_profile = NULL;
|
|
DWORD flags = 0;
|
|
|
|
if (lcms->transform)
|
|
{
|
|
cmsDeleteTransform (lcms->transform);
|
|
lcms->transform = NULL;
|
|
}
|
|
|
|
if (! config)
|
|
return;
|
|
|
|
switch (config->mode)
|
|
{
|
|
case GIMP_COLOR_MANAGEMENT_OFF:
|
|
return;
|
|
|
|
case GIMP_COLOR_MANAGEMENT_SOFTPROOF:
|
|
proof_profile = cdisplay_lcms_get_printer_profile (lcms);
|
|
/* fallthru */
|
|
|
|
case GIMP_COLOR_MANAGEMENT_DISPLAY:
|
|
src_profile = cdisplay_lcms_get_rgb_profile (lcms);
|
|
dest_profile = cdisplay_lcms_get_display_profile (lcms);
|
|
break;
|
|
}
|
|
|
|
if (config->display_intent ==
|
|
GIMP_COLOR_RENDERING_INTENT_RELATIVE_COLORIMETRIC)
|
|
{
|
|
flags |= cmsFLAGS_BLACKPOINTCOMPENSATION;
|
|
}
|
|
|
|
if (proof_profile)
|
|
{
|
|
if (! src_profile)
|
|
src_profile = cmsCreate_sRGBProfile ();
|
|
|
|
if (! dest_profile)
|
|
dest_profile = cmsCreate_sRGBProfile ();
|
|
|
|
flags |= cmsFLAGS_SOFTPROOFING;
|
|
|
|
if (config->simulation_gamut_check)
|
|
{
|
|
guchar r, g, b;
|
|
|
|
flags |= cmsFLAGS_GAMUTCHECK;
|
|
|
|
gimp_rgb_get_uchar (&config->out_of_gamut_color, &r, &g, &b);
|
|
|
|
cmsSetAlarmCodes (r, g, b);
|
|
}
|
|
|
|
lcms->transform = cmsCreateProofingTransform (src_profile, TYPE_RGB_8,
|
|
dest_profile, TYPE_RGB_8,
|
|
proof_profile,
|
|
config->simulation_intent,
|
|
config->display_intent,
|
|
flags);
|
|
cmsCloseProfile (proof_profile);
|
|
}
|
|
else if (src_profile || dest_profile)
|
|
{
|
|
if (! src_profile)
|
|
src_profile = cmsCreate_sRGBProfile ();
|
|
|
|
if (! dest_profile)
|
|
dest_profile = cmsCreate_sRGBProfile ();
|
|
|
|
lcms->transform = cmsCreateTransform (src_profile, TYPE_RGB_8,
|
|
dest_profile, TYPE_RGB_8,
|
|
config->display_intent,
|
|
flags);
|
|
}
|
|
|
|
if (dest_profile)
|
|
cmsCloseProfile (dest_profile);
|
|
|
|
if (src_profile)
|
|
cmsCloseProfile (src_profile);
|
|
}
|
|
|
|
static gboolean
|
|
cdisplay_lcms_profile_is_rgb (cmsHPROFILE profile)
|
|
{
|
|
return (cmsGetColorSpace (profile) == icSigRgbData);
|
|
}
|
|
|
|
static cmsHPROFILE
|
|
cdisplay_lcms_get_rgb_profile (CdisplayLcms *lcms)
|
|
{
|
|
GimpColorConfig *config;
|
|
GimpColorManaged *managed;
|
|
cmsHPROFILE profile = NULL;
|
|
|
|
managed = gimp_color_display_get_managed (GIMP_COLOR_DISPLAY (lcms));
|
|
|
|
if (managed)
|
|
{
|
|
gsize len;
|
|
const guint8 *data = gimp_color_managed_get_icc_profile (managed, &len);
|
|
|
|
if (data)
|
|
profile = cmsOpenProfileFromMem ((gpointer) data, len);
|
|
|
|
if (profile &&
|
|
! cdisplay_lcms_profile_is_rgb (profile))
|
|
{
|
|
cmsCloseProfile (profile);
|
|
profile = NULL;
|
|
}
|
|
}
|
|
|
|
if (! profile)
|
|
{
|
|
config = gimp_color_display_get_config (GIMP_COLOR_DISPLAY (lcms));
|
|
|
|
if (config->rgb_profile)
|
|
profile = cmsOpenProfileFromFile (config->rgb_profile, "r");
|
|
}
|
|
|
|
return profile;
|
|
}
|
|
|
|
static GdkScreen *
|
|
cdisplay_lcms_get_screen (CdisplayLcms *lcms,
|
|
gint *monitor)
|
|
{
|
|
GimpColorManaged *managed;
|
|
GdkScreen *screen;
|
|
|
|
managed = gimp_color_display_get_managed (GIMP_COLOR_DISPLAY (lcms));
|
|
|
|
if (GTK_IS_WIDGET (managed))
|
|
screen = gtk_widget_get_screen (GTK_WIDGET (managed));
|
|
else
|
|
screen = gdk_screen_get_default ();
|
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
|
|
|
|
if (GTK_IS_WIDGET (managed) && GTK_WIDGET_DRAWABLE (managed))
|
|
{
|
|
GtkWidget *widget = GTK_WIDGET (managed);
|
|
|
|
*monitor = gdk_screen_get_monitor_at_window (screen, widget->window);
|
|
}
|
|
else
|
|
{
|
|
*monitor = 0;
|
|
}
|
|
|
|
return screen;
|
|
}
|
|
|
|
|
|
#ifdef GDK_WINDOWING_QUARTZ
|
|
|
|
typedef struct
|
|
{
|
|
guchar *data;
|
|
gsize len;
|
|
} ProfileTransfer;
|
|
|
|
enum
|
|
{
|
|
openReadSpool = 1, /* start read data process */
|
|
openWriteSpool = 2, /* start write data process */
|
|
readSpool = 3, /* read specified number of bytes */
|
|
writeSpool = 4, /* write specified number of bytes */
|
|
closeSpool = 5 /* complete data transfer process */
|
|
};
|
|
|
|
static OSErr
|
|
lcms_cdisplay_lcms_flatten_profile (SInt32 command,
|
|
SInt32 *size,
|
|
void *data,
|
|
void *refCon)
|
|
{
|
|
ProfileTransfer *transfer = refCon;
|
|
|
|
switch (command)
|
|
{
|
|
case openWriteSpool:
|
|
g_return_val_if_fail (transfer->data == NULL && transfer->len == 0, -1);
|
|
break;
|
|
|
|
case writeSpool:
|
|
transfer->data = g_realloc (transfer->data, transfer->len + *size);
|
|
memcpy (transfer->data + transfer->len, data, *size);
|
|
transfer->len += *size;
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
#endif /* GDK_WINDOWING_QUARTZ */
|
|
|
|
|
|
static cmsHPROFILE
|
|
cdisplay_lcms_get_display_profile (CdisplayLcms *lcms)
|
|
{
|
|
GimpColorConfig *config;
|
|
cmsHPROFILE profile = NULL;
|
|
|
|
config = gimp_color_display_get_config (GIMP_COLOR_DISPLAY (lcms));
|
|
|
|
#if defined GDK_WINDOWING_X11
|
|
if (config->display_profile_from_gdk)
|
|
{
|
|
GdkScreen *screen;
|
|
GdkAtom type = GDK_NONE;
|
|
gint format = 0;
|
|
gint nitems = 0;
|
|
gint monitor = 0;
|
|
gchar *atom_name;
|
|
guchar *data = NULL;
|
|
|
|
screen = cdisplay_lcms_get_screen (lcms, &monitor);
|
|
|
|
if (monitor > 0)
|
|
atom_name = g_strdup_printf ("_ICC_PROFILE_%d", monitor);
|
|
else
|
|
atom_name = g_strdup ("_ICC_PROFILE");
|
|
|
|
if (gdk_property_get (gdk_screen_get_root_window (screen),
|
|
gdk_atom_intern (atom_name, FALSE),
|
|
GDK_NONE,
|
|
0, 64 * 1024 * 1024, FALSE,
|
|
&type, &format, &nitems, &data) && nitems > 0)
|
|
{
|
|
profile = cmsOpenProfileFromMem (data, nitems);
|
|
g_free (data);
|
|
}
|
|
|
|
g_free (atom_name);
|
|
}
|
|
|
|
#elif defined GDK_WINDOWING_QUARTZ
|
|
if (config->display_profile_from_gdk)
|
|
{
|
|
CMProfileRef prof = NULL;
|
|
gint monitor = 0;
|
|
|
|
cdisplay_lcms_get_screen (lcms, &monitor);
|
|
|
|
CMGetProfileByAVID (monitor, &prof);
|
|
|
|
if (prof)
|
|
{
|
|
ProfileTransfer transfer = { NULL, 0 };
|
|
Boolean foo;
|
|
|
|
CMFlattenProfile (prof, 0,
|
|
lcms_cdisplay_lcms_flatten_profile, &transfer,
|
|
&foo);
|
|
CMCloseProfile (prof);
|
|
|
|
if (transfer.data)
|
|
{
|
|
profile = cmsOpenProfileFromMem (transfer.data, transfer.len);
|
|
g_free (transfer.data);
|
|
}
|
|
}
|
|
}
|
|
|
|
#elif defined G_OS_WIN32
|
|
if (config->display_profile_from_gdk)
|
|
{
|
|
HDC hdc = GetDC (NULL);
|
|
|
|
if (hdc)
|
|
{
|
|
gchar *path;
|
|
gint32 len = 0;
|
|
|
|
GetICMProfile (hdc, &len, NULL);
|
|
path = g_new (gchar, len);
|
|
|
|
if (GetICMProfile (hdc, &len, path))
|
|
profile = cmsOpenProfileFromFile (path, "r");
|
|
|
|
g_free (path);
|
|
ReleaseDC (NULL, hdc);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
if (! profile && config->display_profile)
|
|
profile = cmsOpenProfileFromFile (config->display_profile, "r");
|
|
|
|
return profile;
|
|
}
|
|
|
|
static cmsHPROFILE
|
|
cdisplay_lcms_get_printer_profile (CdisplayLcms *lcms)
|
|
{
|
|
GimpColorConfig *config;
|
|
|
|
config = gimp_color_display_get_config (GIMP_COLOR_DISPLAY (lcms));
|
|
|
|
if (config->printer_profile)
|
|
return cmsOpenProfileFromFile (config->printer_profile, "r");
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static void
|
|
cdisplay_lcms_attach_labelled (GtkTable *table,
|
|
gint row,
|
|
const gchar *text,
|
|
GtkWidget *widget)
|
|
{
|
|
GtkWidget *label;
|
|
|
|
label = g_object_new (GTK_TYPE_LABEL,
|
|
"label", text,
|
|
"xalign", 1.0,
|
|
"yalign", 0.5,
|
|
NULL);
|
|
|
|
gimp_label_set_attributes (GTK_LABEL (label),
|
|
PANGO_ATTR_WEIGHT, PANGO_WEIGHT_BOLD,
|
|
-1);
|
|
gtk_table_attach (table, label, 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 0, 0);
|
|
gtk_widget_show (label);
|
|
|
|
if (GTK_IS_LABEL (widget))
|
|
gtk_misc_set_alignment (GTK_MISC (widget), 0.0, 0.5);
|
|
|
|
gtk_table_attach (table, widget, 1, 2, row, row + 1,
|
|
GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
|
|
gtk_widget_show (widget);
|
|
}
|
|
|
|
static void
|
|
cdisplay_lcms_update_profile_label (CdisplayLcms *lcms,
|
|
const gchar *name)
|
|
{
|
|
GtkWidget *label;
|
|
cmsHPROFILE profile = NULL;
|
|
const gchar *text;
|
|
const gchar *tooltip;
|
|
|
|
label = g_object_get_data (G_OBJECT (lcms), name);
|
|
|
|
if (! label)
|
|
return;
|
|
|
|
if (strcmp (name, "rgb-profile") == 0)
|
|
{
|
|
profile = cdisplay_lcms_get_rgb_profile (lcms);
|
|
}
|
|
else if (g_str_has_prefix (name, "display-profile"))
|
|
{
|
|
profile = cdisplay_lcms_get_display_profile (lcms);
|
|
}
|
|
else if (strcmp (name, "printer-profile") == 0)
|
|
{
|
|
profile = cdisplay_lcms_get_printer_profile (lcms);
|
|
}
|
|
else
|
|
{
|
|
g_return_if_reached ();
|
|
}
|
|
|
|
cdisplay_lcms_profile_get_info (profile, &text, &tooltip);
|
|
|
|
gtk_label_set_text (GTK_LABEL (label), text);
|
|
gimp_help_set_help_data (label, tooltip, NULL);
|
|
|
|
if (profile)
|
|
cmsCloseProfile (profile);
|
|
}
|
|
|
|
static void
|
|
cdisplay_lcms_notify_profile (GObject *config,
|
|
GParamSpec *pspec,
|
|
CdisplayLcms *lcms)
|
|
{
|
|
cdisplay_lcms_update_profile_label (lcms, pspec->name);
|
|
}
|