From e42129241681dde7adae7d20697e7b421682fbb4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 18:23:22 +0200 Subject: Adding upstream version 2.10.22. Signed-off-by: Daniel Baumann --- libgimpwidgets/gimpcolorselector.h | 177 +++++++++++++++++++++++++++++++++++++ 1 file changed, 177 insertions(+) create mode 100644 libgimpwidgets/gimpcolorselector.h (limited to 'libgimpwidgets/gimpcolorselector.h') diff --git a/libgimpwidgets/gimpcolorselector.h b/libgimpwidgets/gimpcolorselector.h new file mode 100644 index 0000000..d6c6660 --- /dev/null +++ b/libgimpwidgets/gimpcolorselector.h @@ -0,0 +1,177 @@ +/* LIBGIMP - The GIMP Library + * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball + * + * gimpcolorselector.h + * Copyright (C) 2002 Michael Natterer + * + * based on: + * Colour selector module + * Copyright (C) 1999 Austin Donnelly + * + * 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 + * . + */ + +#if !defined (__GIMP_WIDGETS_H_INSIDE__) && !defined (GIMP_WIDGETS_COMPILATION) +#error "Only 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 _GimpColorSelectorClass GimpColorSelectorClass; + +struct _GimpColorSelector +{ + GtkBox parent_instance; + + gboolean toggles_visible; + gboolean toggles_sensitive; + gboolean show_alpha; + + GimpRGB rgb; + GimpHSV hsv; + + GimpColorSelectorChannel channel; +}; + +struct _GimpColorSelectorClass +{ + GtkBoxClass parent_class; + + const gchar *name; + const gchar *help_id; +#ifdef GIMP_DISABLE_DEPRECATED + gpointer deprecated_stock_id; +#else + const gchar *stock_id; +#endif + + /* 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, + const GimpRGB *rgb, + const GimpHSV *hsv); + void (* set_channel) (GimpColorSelector *selector, + GimpColorSelectorChannel channel); + + /* signals */ + void (* color_changed) (GimpColorSelector *selector, + const GimpRGB *rgb, + const GimpHSV *hsv); + void (* channel_changed) (GimpColorSelector *selector, + GimpColorSelectorChannel channel); + + /* another virtual function */ + void (* set_config) (GimpColorSelector *selector, + GimpColorConfig *config); + + /* icon name */ + const gchar *icon_name; + + /* another virtual function */ + void (* set_model_visible) (GimpColorSelector *selector, + GimpColorSelectorModel model, + gboolean visible); + + /* another signal */ + void (* model_visible_changed) (GimpColorSelector *selector, + GimpColorSelectorModel model, + gboolean visible); +}; + + +GType gimp_color_selector_get_type (void) G_GNUC_CONST; +GtkWidget * gimp_color_selector_new (GType selector_type, + const GimpRGB *rgb, + const GimpHSV *hsv, + 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, + const GimpRGB *rgb, + const GimpHSV *hsv); +void gimp_color_selector_get_color (GimpColorSelector *selector, + GimpRGB *rgb, + GimpHSV *hsv); + +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_color_changed (GimpColorSelector *selector); +void gimp_color_selector_channel_changed (GimpColorSelector *selector); +void gimp_color_selector_model_visible_changed (GimpColorSelector *selector, + GimpColorSelectorModel model); + +void gimp_color_selector_set_config (GimpColorSelector *selector, + GimpColorConfig *config); + + +G_END_DECLS + +#endif /* __GIMP_COLOR_SELECTOR_H__ */ -- cgit v1.2.3