mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00

What this commit does is keep the same code logic while moving to GeglColor. Yet it's not **really** space-invaded yet. What we need to do now: 1. Take into account the image space, and this is what we must navigate through, in particular for various representations of RGB or HSV. I.e. that if the active image is in anyRGB, the RGB values shown must be within anyRGB. Right now, everything is still shown/used as sRGB (even though it's properly retrieved and transformed to the target space thanks to GeglColor). 2. Show space info to make things clear and explicit, by adding some label somewhere. 3. Allow to switch between image and softproof spaces, regarding out-of-gamut display. I.e. that while RGB/HSV must be shown within the image space (assuming it's anyRGB), we may want to show out-of-gamut area (pink areas) within the softproof space. This may mean adding a checkbox. Or maybe simply taking into account whether we are in softproof mode or not? 4. We can likely move off gimp_widget_get_color_transform() into using gimp_widget_get_render_space() for display drawing. We don't need any soft-proofing or black point compensation for any of these widgets so pure babl is fine. Indeed we want to show any in-gamut color correctly (and not transformed according to specific intents or through soft-proofing). We will take care of the proofing case with out-of-gamut area showing only. 5. In the various drawing functions, we should move to CAIRO_FORMAT_RGBA128F. The color selection area might be wide enough that it makes sense to be more accurate, especially as we are essentially showing color gradients in 1 or 2 directions in these various widgets.
166 lines
7.3 KiB
C
166 lines
7.3 KiB
C
/* LIBGIMP - The GIMP Library
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
*
|
|
* gimpcolorselector.h
|
|
* Copyright (C) 2002 Michael Natterer <mitch@gimp.org>
|
|
*
|
|
* based on:
|
|
* Colour selector module
|
|
* Copyright (C) 1999 Austin Donnelly <austin@greenend.org.uk>
|
|
*
|
|
* 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
|
|
* Lesser 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
|
|
* <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#if !defined (__GIMP_WIDGETS_H_INSIDE__) && !defined (GIMP_WIDGETS_COMPILATION)
|
|
#error "Only <libgimpwidgets/gimpwidgets.h> can be included directly."
|
|
#endif
|
|
|
|
#ifndef __GIMP_COLOR_SELECTOR_H__
|
|
#define __GIMP_COLOR_SELECTOR_H__
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/* For information look at the html documentation */
|
|
|
|
|
|
/**
|
|
* GIMP_COLOR_SELECTOR_SIZE:
|
|
*
|
|
* The suggested size for a color area in a #GimpColorSelector
|
|
* implementation.
|
|
**/
|
|
#define GIMP_COLOR_SELECTOR_SIZE 150
|
|
|
|
/**
|
|
* GIMP_COLOR_SELECTOR_BAR_SIZE:
|
|
*
|
|
* The suggested width for a color bar in a #GimpColorSelector
|
|
* implementation.
|
|
**/
|
|
#define GIMP_COLOR_SELECTOR_BAR_SIZE 15
|
|
|
|
|
|
#define GIMP_TYPE_COLOR_SELECTOR (gimp_color_selector_get_type ())
|
|
#define GIMP_COLOR_SELECTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_COLOR_SELECTOR, GimpColorSelector))
|
|
#define GIMP_COLOR_SELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_COLOR_SELECTOR, GimpColorSelectorClass))
|
|
#define GIMP_IS_COLOR_SELECTOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_COLOR_SELECTOR))
|
|
#define GIMP_IS_COLOR_SELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_COLOR_SELECTOR))
|
|
#define GIMP_COLOR_SELECTOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_COLOR_SELECTOR, GimpColorSelectorClass))
|
|
|
|
typedef struct _GimpColorSelectorPrivate GimpColorSelectorPrivate;
|
|
typedef struct _GimpColorSelectorClass GimpColorSelectorClass;
|
|
|
|
struct _GimpColorSelector
|
|
{
|
|
GtkBox parent_instance;
|
|
|
|
GimpColorSelectorPrivate *priv;
|
|
};
|
|
|
|
struct _GimpColorSelectorClass
|
|
{
|
|
GtkBoxClass parent_class;
|
|
|
|
const gchar *name;
|
|
const gchar *help_id;
|
|
const gchar *icon_name;
|
|
|
|
/* virtual functions */
|
|
void (* set_toggles_visible) (GimpColorSelector *selector,
|
|
gboolean visible);
|
|
void (* set_toggles_sensitive) (GimpColorSelector *selector,
|
|
gboolean sensitive);
|
|
void (* set_show_alpha) (GimpColorSelector *selector,
|
|
gboolean show_alpha);
|
|
void (* set_color) (GimpColorSelector *selector,
|
|
GeglColor *color);
|
|
void (* set_channel) (GimpColorSelector *selector,
|
|
GimpColorSelectorChannel channel);
|
|
void (* set_model_visible) (GimpColorSelector *selector,
|
|
GimpColorSelectorModel model,
|
|
gboolean visible);
|
|
void (* set_config) (GimpColorSelector *selector,
|
|
GimpColorConfig *config);
|
|
|
|
void (* set_simulation) (GimpColorSelector *selector,
|
|
GimpColorProfile *profile,
|
|
GimpColorRenderingIntent intent,
|
|
gboolean bpc);
|
|
|
|
/* signals */
|
|
void (* color_changed) (GimpColorSelector *selector,
|
|
GeglColor *color);
|
|
void (* channel_changed) (GimpColorSelector *selector,
|
|
GimpColorSelectorChannel channel);
|
|
void (* model_visible_changed) (GimpColorSelector *selector,
|
|
GimpColorSelectorModel model,
|
|
gboolean visible);
|
|
|
|
/* Padding for future expansion */
|
|
void (* _gimp_reserved1) (void);
|
|
void (* _gimp_reserved2) (void);
|
|
void (* _gimp_reserved3) (void);
|
|
void (* _gimp_reserved4) (void);
|
|
void (* _gimp_reserved5) (void);
|
|
void (* _gimp_reserved6) (void);
|
|
void (* _gimp_reserved7) (void);
|
|
void (* _gimp_reserved8) (void);
|
|
};
|
|
|
|
|
|
GType gimp_color_selector_get_type (void) G_GNUC_CONST;
|
|
GtkWidget * gimp_color_selector_new (GType selector_type,
|
|
GeglColor *color,
|
|
GimpColorSelectorChannel channel);
|
|
|
|
void gimp_color_selector_set_toggles_visible (GimpColorSelector *selector,
|
|
gboolean visible);
|
|
gboolean gimp_color_selector_get_toggles_visible (GimpColorSelector *selector);
|
|
|
|
void gimp_color_selector_set_toggles_sensitive (GimpColorSelector *selector,
|
|
gboolean sensitive);
|
|
gboolean gimp_color_selector_get_toggles_sensitive (GimpColorSelector *selector);
|
|
|
|
void gimp_color_selector_set_show_alpha (GimpColorSelector *selector,
|
|
gboolean show_alpha);
|
|
gboolean gimp_color_selector_get_show_alpha (GimpColorSelector *selector);
|
|
|
|
void gimp_color_selector_set_color (GimpColorSelector *selector,
|
|
GeglColor *color);
|
|
GeglColor * gimp_color_selector_get_color (GimpColorSelector *selector);
|
|
|
|
void gimp_color_selector_set_channel (GimpColorSelector *selector,
|
|
GimpColorSelectorChannel channel);
|
|
GimpColorSelectorChannel
|
|
gimp_color_selector_get_channel (GimpColorSelector *selector);
|
|
|
|
void gimp_color_selector_set_model_visible (GimpColorSelector *selector,
|
|
GimpColorSelectorModel model,
|
|
gboolean visible);
|
|
gboolean gimp_color_selector_get_model_visible (GimpColorSelector *selector,
|
|
GimpColorSelectorModel model);
|
|
|
|
void gimp_color_selector_set_config (GimpColorSelector *selector,
|
|
GimpColorConfig *config);
|
|
|
|
void gimp_color_selector_set_simulation (GimpColorSelector *selector,
|
|
GimpColorProfile *profile,
|
|
GimpColorRenderingIntent intent,
|
|
gboolean bpc);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GIMP_COLOR_SELECTOR_H__ */
|