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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2021-08-29 02:08:47 +00:00
|
|
|
#include "gdkhslaprivate.h"
|
2012-11-08 14:26:33 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
void
|
2021-08-29 02:08:47 +00:00
|
|
|
_gdk_hsla_init_from_rgba (GdkHSLA *hsla,
|
2012-11-08 14:26:33 +00:00
|
|
|
const GdkRGBA *rgba)
|
|
|
|
{
|
2020-07-25 04:29:42 +00:00
|
|
|
float min;
|
|
|
|
float max;
|
|
|
|
float red;
|
|
|
|
float green;
|
|
|
|
float blue;
|
|
|
|
float delta;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
g_return_if_fail (hsla != NULL);
|
|
|
|
g_return_if_fail (rgba != NULL);
|
|
|
|
|
|
|
|
red = rgba->red;
|
|
|
|
green = rgba->green;
|
|
|
|
blue = rgba->blue;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
if (red > green)
|
|
|
|
{
|
|
|
|
if (red > blue)
|
|
|
|
max = red;
|
|
|
|
else
|
|
|
|
max = blue;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
if (green < blue)
|
|
|
|
min = green;
|
|
|
|
else
|
|
|
|
min = blue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (green > blue)
|
|
|
|
max = green;
|
|
|
|
else
|
|
|
|
max = blue;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
if (red < blue)
|
|
|
|
min = red;
|
|
|
|
else
|
|
|
|
min = blue;
|
|
|
|
}
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
hsla->lightness = (max + min) / 2;
|
|
|
|
hsla->saturation = 0;
|
|
|
|
hsla->hue = 0;
|
|
|
|
hsla->alpha = rgba->alpha;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
if (max != min)
|
|
|
|
{
|
|
|
|
if (hsla->lightness <= 0.5)
|
|
|
|
hsla->saturation = (max - min) / (max + min);
|
|
|
|
else
|
|
|
|
hsla->saturation = (max - min) / (2 - max - min);
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
delta = max -min;
|
|
|
|
if (red == max)
|
|
|
|
hsla->hue = (green - blue) / delta;
|
|
|
|
else if (green == max)
|
|
|
|
hsla->hue = 2 + (blue - red) / delta;
|
|
|
|
else if (blue == max)
|
|
|
|
hsla->hue = 4 + (red - green) / delta;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
hsla->hue *= 60;
|
|
|
|
if (hsla->hue < 0.0)
|
|
|
|
hsla->hue += 360;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2020-07-25 04:29:42 +00:00
|
|
|
float hue;
|
|
|
|
float lightness;
|
|
|
|
float saturation;
|
|
|
|
float m1, m2;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
lightness = hsla->lightness;
|
|
|
|
saturation = hsla->saturation;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
if (lightness <= 0.5)
|
|
|
|
m2 = lightness * (1 + saturation);
|
|
|
|
else
|
|
|
|
m2 = lightness + saturation - lightness * saturation;
|
|
|
|
m1 = 2 * lightness - m2;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
rgba->alpha = hsla->alpha;
|
|
|
|
|
|
|
|
if (saturation == 0)
|
|
|
|
{
|
|
|
|
rgba->red = lightness;
|
|
|
|
rgba->green = lightness;
|
|
|
|
rgba->blue = lightness;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hue = hsla->hue + 120;
|
|
|
|
while (hue > 360)
|
|
|
|
hue -= 360;
|
|
|
|
while (hue < 0)
|
|
|
|
hue += 360;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
if (hue < 60)
|
|
|
|
rgba->red = m1 + (m2 - m1) * hue / 60;
|
|
|
|
else if (hue < 180)
|
|
|
|
rgba->red = m2;
|
|
|
|
else if (hue < 240)
|
|
|
|
rgba->red = m1 + (m2 - m1) * (240 - hue) / 60;
|
|
|
|
else
|
|
|
|
rgba->red = m1;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
hue = hsla->hue;
|
|
|
|
while (hue > 360)
|
|
|
|
hue -= 360;
|
|
|
|
while (hue < 0)
|
|
|
|
hue += 360;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
if (hue < 60)
|
|
|
|
rgba->green = m1 + (m2 - m1) * hue / 60;
|
|
|
|
else if (hue < 180)
|
|
|
|
rgba->green = m2;
|
|
|
|
else if (hue < 240)
|
|
|
|
rgba->green = m1 + (m2 - m1) * (240 - hue) / 60;
|
|
|
|
else
|
|
|
|
rgba->green = m1;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
hue = hsla->hue - 120;
|
|
|
|
while (hue > 360)
|
|
|
|
hue -= 360;
|
|
|
|
while (hue < 0)
|
|
|
|
hue += 360;
|
2021-08-29 02:08:47 +00:00
|
|
|
|
2012-11-08 14:26:33 +00:00
|
|
|
if (hue < 60)
|
|
|
|
rgba->blue = m1 + (m2 - m1) * hue / 60;
|
|
|
|
else if (hue < 180)
|
|
|
|
rgba->blue = m2;
|
|
|
|
else if (hue < 240)
|
|
|
|
rgba->blue = m1 + (m2 - m1) * (240 - hue) / 60;
|
|
|
|
else
|
|
|
|
rgba->blue = m1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-25 02:24:47 +00:00
|
|
|
void
|
2021-08-29 02:08:47 +00:00
|
|
|
_gdk_hsla_shade (GdkHSLA *dest,
|
|
|
|
const GdkHSLA *src,
|
2020-07-25 04:29:42 +00:00
|
|
|
float factor)
|
2012-11-25 02:24:47 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (dest != NULL);
|
|
|
|
g_return_if_fail (src != NULL);
|
|
|
|
|
|
|
|
dest->hue = src->hue;
|
|
|
|
|
|
|
|
dest->lightness = src->lightness * factor;
|
|
|
|
dest->lightness = CLAMP (dest->lightness, 0.0, 1.0);
|
|
|
|
|
|
|
|
dest->saturation = src->saturation * factor;
|
|
|
|
dest->saturation = CLAMP (dest->saturation, 0.0, 1.0);
|
|
|
|
|
|
|
|
dest->alpha = src->alpha;
|
|
|
|
}
|