gtk/gdk/gdkhslaprivate.h

45 lines
1.4 KiB
C
Raw Permalink Normal View History

2012-11-08 14:26:33 +00:00
/* GTK - The GIMP Toolkit
* Copyright (C) 2012 Benjamin Otte <otte@gnome.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 2 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 <http://www.gnu.org/licenses/>.
*/
#pragma once
2012-11-08 14:26:33 +00:00
2021-09-24 18:15:29 +00:00
#include <gdk/gdkrgba.h>
2012-11-08 14:26:33 +00:00
G_BEGIN_DECLS
2021-08-29 02:08:47 +00:00
typedef struct _GdkHSLA GdkHSLA;
2012-11-08 14:26:33 +00:00
2021-08-29 02:08:47 +00:00
struct _GdkHSLA {
float hue;
float saturation;
float lightness;
float alpha;
2012-11-08 14:26:33 +00:00
};
2021-08-29 02:08:47 +00:00
void _gdk_hsla_init_from_rgba (GdkHSLA *hsla,
2012-11-08 14:26:33 +00:00
const GdkRGBA *rgba);
/* Yes, I can name that function like this! */
void _gdk_rgba_init_from_hsla (GdkRGBA *rgba,
2021-08-29 02:08:47 +00:00
const GdkHSLA *hsla);
2012-11-08 14:26:33 +00:00
2021-08-29 02:08:47 +00:00
void _gdk_hsla_shade (GdkHSLA *dest,
const GdkHSLA *src,
float factor);
2012-11-08 14:26:33 +00:00
G_END_DECLS