2003-11-17 14:58:31 +00:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
2001-01-23 18:49:44 +00:00
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2001-01-23 18:49:44 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-17 22:28:01 +00:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2003-11-17 14:58:31 +00: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
|
2001-01-23 18:49:44 +00:00
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-17 22:28:01 +00:00
|
|
|
* License along with this library. If not, see
|
2018-07-11 23:27:07 +02:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2001-01-23 18:49:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_COLOR_H__
|
|
|
|
#define __GIMP_COLOR_H__
|
|
|
|
|
2011-04-28 14:30:41 +02:00
|
|
|
#define __GIMP_COLOR_H_INSIDE__
|
2001-01-23 18:49:44 +00:00
|
|
|
|
|
|
|
#include <libgimpcolor/gimpcolortypes.h>
|
|
|
|
|
2001-05-09 22:34:59 +00:00
|
|
|
#include <libgimpcolor/gimpadaptivesupersample.h>
|
|
|
|
#include <libgimpcolor/gimpbilinear.h>
|
2012-05-03 03:56:10 +02:00
|
|
|
#include <libgimpcolor/gimpcairo.h>
|
2007-06-01 11:19:37 +00:00
|
|
|
#include <libgimpcolor/gimpcolormanaged.h>
|
2015-06-03 09:41:23 +02:00
|
|
|
#include <libgimpcolor/gimpcolorprofile.h>
|
2001-01-23 18:49:44 +00:00
|
|
|
#include <libgimpcolor/gimpcolorspace.h>
|
2016-05-25 21:35:54 +02:00
|
|
|
#include <libgimpcolor/gimpcolortransform.h>
|
2003-07-15 00:29:34 +00:00
|
|
|
#include <libgimpcolor/gimpcmyk.h>
|
2006-07-19 21:23:10 +00:00
|
|
|
#include <libgimpcolor/gimphsl.h>
|
2001-01-23 18:49:44 +00:00
|
|
|
#include <libgimpcolor/gimphsv.h>
|
2012-05-03 03:36:22 +02:00
|
|
|
#include <libgimpcolor/gimppixbuf.h>
|
2001-01-23 18:49:44 +00:00
|
|
|
#include <libgimpcolor/gimprgb.h>
|
|
|
|
|
2011-04-28 14:30:41 +02:00
|
|
|
#undef __GIMP_COLOR_H_INSIDE__
|
2001-01-23 18:49:44 +00:00
|
|
|
|
2023-11-13 20:02:52 +01:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GEGL_TYPE_COLOR
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define GIMP_VALUE_HOLDS_COLOR(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GEGL_TYPE_COLOR))
|
|
|
|
|
|
|
|
|
|
|
|
void gimp_color_set_alpha (GeglColor *color,
|
|
|
|
gdouble alpha);
|
|
|
|
|
|
|
|
gboolean gimp_color_is_perceptually_identical (GeglColor *color1,
|
|
|
|
GeglColor *color2);
|
|
|
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2001-01-23 18:49:44 +00:00
|
|
|
#endif /* __GIMP_COLOR_H__ */
|