2012-11-08 16:03:15 +00:00
|
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
|
* Copyright (C) 2010 Carlos Garnacho <carlosg@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"
|
|
|
|
|
|
|
|
|
|
#include "gtkcsscolorvalueprivate.h"
|
|
|
|
|
|
|
|
|
|
#include "gtkcssrgbavalueprivate.h"
|
|
|
|
|
#include "gtkcssstylepropertyprivate.h"
|
|
|
|
|
#include "gtkhslaprivate.h"
|
2019-04-09 02:47:00 +00:00
|
|
|
|
#include "gtkprivate.h"
|
2012-11-08 16:03:15 +00:00
|
|
|
|
#include "gtkstylepropertyprivate.h"
|
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
#include "gdk/gdkrgbaprivate.h"
|
2015-09-08 10:15:12 +00:00
|
|
|
|
|
2012-11-08 16:03:15 +00:00
|
|
|
|
typedef enum {
|
|
|
|
|
COLOR_TYPE_LITERAL,
|
|
|
|
|
COLOR_TYPE_NAME,
|
|
|
|
|
COLOR_TYPE_SHADE,
|
|
|
|
|
COLOR_TYPE_ALPHA,
|
|
|
|
|
COLOR_TYPE_MIX,
|
|
|
|
|
COLOR_TYPE_CURRENT_COLOR
|
|
|
|
|
} ColorType;
|
|
|
|
|
|
|
|
|
|
struct _GtkCssValue
|
|
|
|
|
{
|
|
|
|
|
GTK_CSS_VALUE_BASE
|
|
|
|
|
ColorType type;
|
|
|
|
|
GtkCssValue *last_value;
|
|
|
|
|
|
|
|
|
|
union
|
|
|
|
|
{
|
|
|
|
|
gchar *name;
|
|
|
|
|
|
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *color;
|
|
|
|
|
gdouble factor;
|
|
|
|
|
} shade, alpha;
|
|
|
|
|
|
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *color1;
|
|
|
|
|
GtkCssValue *color2;
|
|
|
|
|
gdouble factor;
|
|
|
|
|
} mix;
|
|
|
|
|
} sym_col;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_css_value_color_free (GtkCssValue *color)
|
|
|
|
|
{
|
|
|
|
|
if (color->last_value)
|
|
|
|
|
_gtk_css_value_unref (color->last_value);
|
|
|
|
|
|
|
|
|
|
switch (color->type)
|
|
|
|
|
{
|
|
|
|
|
case COLOR_TYPE_NAME:
|
|
|
|
|
g_free (color->sym_col.name);
|
|
|
|
|
break;
|
|
|
|
|
case COLOR_TYPE_SHADE:
|
|
|
|
|
_gtk_css_value_unref (color->sym_col.shade.color);
|
|
|
|
|
break;
|
|
|
|
|
case COLOR_TYPE_ALPHA:
|
|
|
|
|
_gtk_css_value_unref (color->sym_col.alpha.color);
|
|
|
|
|
break;
|
|
|
|
|
case COLOR_TYPE_MIX:
|
|
|
|
|
_gtk_css_value_unref (color->sym_col.mix.color1);
|
|
|
|
|
_gtk_css_value_unref (color->sym_col.mix.color2);
|
|
|
|
|
break;
|
2017-10-06 19:19:42 +00:00
|
|
|
|
case COLOR_TYPE_LITERAL:
|
|
|
|
|
case COLOR_TYPE_CURRENT_COLOR:
|
2012-11-08 16:03:15 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_slice_free (GtkCssValue, color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GtkCssValue *
|
2017-10-31 03:31:46 +00:00
|
|
|
|
gtk_css_value_color_get_fallback (guint property_id,
|
|
|
|
|
GtkStyleProvider *provider,
|
|
|
|
|
GtkCssStyle *style,
|
|
|
|
|
GtkCssStyle *parent_style)
|
2012-11-08 16:03:15 +00:00
|
|
|
|
{
|
|
|
|
|
switch (property_id)
|
|
|
|
|
{
|
|
|
|
|
case GTK_CSS_PROPERTY_BACKGROUND_IMAGE:
|
|
|
|
|
case GTK_CSS_PROPERTY_BORDER_IMAGE_SOURCE:
|
|
|
|
|
case GTK_CSS_PROPERTY_TEXT_SHADOW:
|
|
|
|
|
case GTK_CSS_PROPERTY_ICON_SHADOW:
|
|
|
|
|
case GTK_CSS_PROPERTY_BOX_SHADOW:
|
2019-08-17 17:53:32 +00:00
|
|
|
|
return _gtk_css_rgba_value_new_transparent ();
|
2012-11-08 16:03:15 +00:00
|
|
|
|
case GTK_CSS_PROPERTY_COLOR:
|
|
|
|
|
case GTK_CSS_PROPERTY_BACKGROUND_COLOR:
|
|
|
|
|
case GTK_CSS_PROPERTY_BORDER_TOP_COLOR:
|
|
|
|
|
case GTK_CSS_PROPERTY_BORDER_RIGHT_COLOR:
|
|
|
|
|
case GTK_CSS_PROPERTY_BORDER_BOTTOM_COLOR:
|
|
|
|
|
case GTK_CSS_PROPERTY_BORDER_LEFT_COLOR:
|
|
|
|
|
case GTK_CSS_PROPERTY_OUTLINE_COLOR:
|
2016-01-07 03:05:29 +00:00
|
|
|
|
case GTK_CSS_PROPERTY_CARET_COLOR:
|
|
|
|
|
case GTK_CSS_PROPERTY_SECONDARY_CARET_COLOR:
|
2012-11-08 16:03:15 +00:00
|
|
|
|
return _gtk_css_value_compute (_gtk_css_style_property_get_initial_value (_gtk_css_style_property_lookup_by_id (property_id)),
|
|
|
|
|
property_id,
|
|
|
|
|
provider,
|
2015-01-31 10:56:15 +00:00
|
|
|
|
style,
|
2015-02-14 01:27:39 +00:00
|
|
|
|
parent_style);
|
2015-12-02 23:33:51 +00:00
|
|
|
|
case GTK_CSS_PROPERTY_ICON_PALETTE:
|
|
|
|
|
return _gtk_css_value_ref (gtk_css_style_get_value (style, GTK_CSS_PROPERTY_COLOR));
|
2012-11-08 16:03:15 +00:00
|
|
|
|
default:
|
|
|
|
|
if (property_id < GTK_CSS_PROPERTY_N_PROPERTIES)
|
|
|
|
|
g_warning ("No fallback color defined for property '%s'",
|
|
|
|
|
_gtk_style_property_get_name (GTK_STYLE_PROPERTY (_gtk_css_style_property_lookup_by_id (property_id))));
|
2019-08-17 17:53:32 +00:00
|
|
|
|
return _gtk_css_rgba_value_new_transparent ();
|
2012-11-08 16:03:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GtkCssValue *
|
2017-10-31 03:31:46 +00:00
|
|
|
|
gtk_css_value_color_compute (GtkCssValue *value,
|
|
|
|
|
guint property_id,
|
|
|
|
|
GtkStyleProvider *provider,
|
|
|
|
|
GtkCssStyle *style,
|
|
|
|
|
GtkCssStyle *parent_style)
|
2012-11-08 16:03:15 +00:00
|
|
|
|
{
|
|
|
|
|
GtkCssValue *resolved, *current;
|
|
|
|
|
|
|
|
|
|
/* The computed value of the ‘currentColor’ keyword is the computed
|
|
|
|
|
* value of the ‘color’ property. If the ‘currentColor’ keyword is
|
|
|
|
|
* set on the ‘color’ property itself, it is treated as ‘color: inherit’.
|
|
|
|
|
*/
|
|
|
|
|
if (property_id == GTK_CSS_PROPERTY_COLOR)
|
|
|
|
|
{
|
2015-01-31 10:56:15 +00:00
|
|
|
|
if (parent_style)
|
2015-02-14 01:27:39 +00:00
|
|
|
|
current = gtk_css_style_get_value (parent_style, GTK_CSS_PROPERTY_COLOR);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
else
|
2015-02-14 01:27:39 +00:00
|
|
|
|
current = NULL;
|
2012-11-08 16:03:15 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-01-31 10:56:15 +00:00
|
|
|
|
current = gtk_css_style_get_value (style, GTK_CSS_PROPERTY_COLOR);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-11-25 00:55:53 +00:00
|
|
|
|
resolved = _gtk_css_color_value_resolve (value,
|
|
|
|
|
provider,
|
|
|
|
|
current,
|
2013-03-28 22:13:43 +00:00
|
|
|
|
NULL);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
|
|
|
|
if (resolved == NULL)
|
2015-01-31 10:56:15 +00:00
|
|
|
|
return gtk_css_value_color_get_fallback (property_id, provider, style, parent_style);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
|
|
|
|
return resolved;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
gtk_css_value_color_equal (const GtkCssValue *value1,
|
|
|
|
|
const GtkCssValue *value2)
|
|
|
|
|
{
|
|
|
|
|
if (value1->type != value2->type)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
switch (value1->type)
|
|
|
|
|
{
|
|
|
|
|
case COLOR_TYPE_LITERAL:
|
|
|
|
|
return _gtk_css_value_equal (value1->last_value, value2->last_value);
|
|
|
|
|
case COLOR_TYPE_NAME:
|
|
|
|
|
return g_str_equal (value1->sym_col.name, value2->sym_col.name);
|
|
|
|
|
case COLOR_TYPE_SHADE:
|
|
|
|
|
return value1->sym_col.shade.factor == value2->sym_col.shade.factor &&
|
|
|
|
|
_gtk_css_value_equal (value1->sym_col.shade.color,
|
|
|
|
|
value2->sym_col.shade.color);
|
|
|
|
|
case COLOR_TYPE_ALPHA:
|
|
|
|
|
return value1->sym_col.alpha.factor == value2->sym_col.alpha.factor &&
|
|
|
|
|
_gtk_css_value_equal (value1->sym_col.alpha.color,
|
|
|
|
|
value2->sym_col.alpha.color);
|
|
|
|
|
case COLOR_TYPE_MIX:
|
|
|
|
|
return value1->sym_col.mix.factor == value2->sym_col.mix.factor &&
|
|
|
|
|
_gtk_css_value_equal (value1->sym_col.mix.color1,
|
|
|
|
|
value2->sym_col.mix.color1) &&
|
|
|
|
|
_gtk_css_value_equal (value1->sym_col.mix.color2,
|
|
|
|
|
value2->sym_col.mix.color2);
|
|
|
|
|
case COLOR_TYPE_CURRENT_COLOR:
|
|
|
|
|
return TRUE;
|
|
|
|
|
default:
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GtkCssValue *
|
|
|
|
|
gtk_css_value_color_transition (GtkCssValue *start,
|
|
|
|
|
GtkCssValue *end,
|
|
|
|
|
guint property_id,
|
|
|
|
|
double progress)
|
|
|
|
|
{
|
|
|
|
|
return _gtk_css_color_value_new_mix (start, end, progress);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_css_value_color_print (const GtkCssValue *value,
|
|
|
|
|
GString *string)
|
|
|
|
|
{
|
|
|
|
|
switch (value->type)
|
|
|
|
|
{
|
|
|
|
|
case COLOR_TYPE_LITERAL:
|
|
|
|
|
_gtk_css_value_print (value->last_value, string);
|
|
|
|
|
break;
|
|
|
|
|
case COLOR_TYPE_NAME:
|
|
|
|
|
g_string_append (string, "@");
|
|
|
|
|
g_string_append (string, value->sym_col.name);
|
|
|
|
|
break;
|
|
|
|
|
case COLOR_TYPE_SHADE:
|
|
|
|
|
{
|
|
|
|
|
char factor[G_ASCII_DTOSTR_BUF_SIZE];
|
|
|
|
|
|
|
|
|
|
g_string_append (string, "shade(");
|
|
|
|
|
_gtk_css_value_print (value->sym_col.shade.color, string);
|
|
|
|
|
g_string_append (string, ", ");
|
|
|
|
|
g_ascii_dtostr (factor, sizeof (factor), value->sym_col.shade.factor);
|
|
|
|
|
g_string_append (string, factor);
|
|
|
|
|
g_string_append (string, ")");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case COLOR_TYPE_ALPHA:
|
|
|
|
|
{
|
|
|
|
|
char factor[G_ASCII_DTOSTR_BUF_SIZE];
|
|
|
|
|
|
|
|
|
|
g_string_append (string, "alpha(");
|
|
|
|
|
_gtk_css_value_print (value->sym_col.alpha.color, string);
|
|
|
|
|
g_string_append (string, ", ");
|
|
|
|
|
g_ascii_dtostr (factor, sizeof (factor), value->sym_col.alpha.factor);
|
|
|
|
|
g_string_append (string, factor);
|
|
|
|
|
g_string_append (string, ")");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case COLOR_TYPE_MIX:
|
|
|
|
|
{
|
|
|
|
|
char factor[G_ASCII_DTOSTR_BUF_SIZE];
|
|
|
|
|
|
|
|
|
|
g_string_append (string, "mix(");
|
|
|
|
|
_gtk_css_value_print (value->sym_col.mix.color1, string);
|
|
|
|
|
g_string_append (string, ", ");
|
|
|
|
|
_gtk_css_value_print (value->sym_col.mix.color2, string);
|
|
|
|
|
g_string_append (string, ", ");
|
2012-11-20 11:10:23 +00:00
|
|
|
|
g_ascii_dtostr (factor, sizeof (factor), value->sym_col.mix.factor);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
g_string_append (string, factor);
|
|
|
|
|
g_string_append (string, ")");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case COLOR_TYPE_CURRENT_COLOR:
|
|
|
|
|
g_string_append (string, "currentColor");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const GtkCssValueClass GTK_CSS_VALUE_COLOR = {
|
|
|
|
|
gtk_css_value_color_free,
|
|
|
|
|
gtk_css_value_color_compute,
|
|
|
|
|
gtk_css_value_color_equal,
|
|
|
|
|
gtk_css_value_color_transition,
|
2018-02-13 04:55:33 +00:00
|
|
|
|
NULL,
|
|
|
|
|
NULL,
|
2012-11-08 16:03:15 +00:00
|
|
|
|
gtk_css_value_color_print
|
|
|
|
|
};
|
|
|
|
|
|
2019-08-23 07:07:29 +00:00
|
|
|
|
GtkCssValue *
|
|
|
|
|
_gtk_css_color_value_resolve (GtkCssValue *color,
|
|
|
|
|
GtkStyleProvider *provider,
|
|
|
|
|
GtkCssValue *current,
|
|
|
|
|
GSList *cycle_list)
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *value;
|
|
|
|
|
|
|
|
|
|
gtk_internal_return_val_if_fail (color != NULL, NULL);
|
|
|
|
|
|
|
|
|
|
switch (color->type)
|
|
|
|
|
{
|
|
|
|
|
case COLOR_TYPE_LITERAL:
|
|
|
|
|
return _gtk_css_value_ref (color->last_value);
|
|
|
|
|
case COLOR_TYPE_NAME:
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *named;
|
|
|
|
|
GSList cycle = { color, cycle_list };
|
|
|
|
|
|
|
|
|
|
/* If color exists in cycle_list, we're currently resolving it.
|
|
|
|
|
* So we've detected a cycle. */
|
|
|
|
|
if (g_slist_find (cycle_list, color))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
named = gtk_style_provider_get_color (provider, color->sym_col.name);
|
|
|
|
|
if (named == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
value = _gtk_css_color_value_resolve (named, provider, current, &cycle);
|
|
|
|
|
if (value == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case COLOR_TYPE_SHADE:
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *val;
|
|
|
|
|
GtkHSLA hsla;
|
|
|
|
|
GdkRGBA shade;
|
|
|
|
|
|
|
|
|
|
val = _gtk_css_color_value_resolve (color->sym_col.shade.color, provider, current, cycle_list);
|
|
|
|
|
if (val == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
_gtk_hsla_init_from_rgba (&hsla, _gtk_css_rgba_value_get_rgba (val));
|
|
|
|
|
_gtk_hsla_shade (&hsla, &hsla, color->sym_col.shade.factor);
|
|
|
|
|
|
|
|
|
|
_gdk_rgba_init_from_hsla (&shade, &hsla);
|
|
|
|
|
|
|
|
|
|
_gtk_css_value_unref (val);
|
|
|
|
|
|
|
|
|
|
value = _gtk_css_rgba_value_new_from_rgba (&shade);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case COLOR_TYPE_ALPHA:
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *val;
|
|
|
|
|
GdkRGBA alpha;
|
|
|
|
|
|
|
|
|
|
val = _gtk_css_color_value_resolve (color->sym_col.alpha.color, provider, current, cycle_list);
|
|
|
|
|
if (val == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
alpha = *_gtk_css_rgba_value_get_rgba (val);
|
|
|
|
|
alpha.alpha = CLAMP (alpha.alpha * color->sym_col.alpha.factor, 0, 1);
|
|
|
|
|
|
|
|
|
|
_gtk_css_value_unref (val);
|
|
|
|
|
|
|
|
|
|
value = _gtk_css_rgba_value_new_from_rgba (&alpha);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case COLOR_TYPE_MIX:
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *val;
|
|
|
|
|
GdkRGBA color1, color2, res;
|
|
|
|
|
|
|
|
|
|
val = _gtk_css_color_value_resolve (color->sym_col.mix.color1, provider, current, cycle_list);
|
|
|
|
|
if (val == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
color1 = *_gtk_css_rgba_value_get_rgba (val);
|
|
|
|
|
_gtk_css_value_unref (val);
|
|
|
|
|
|
|
|
|
|
val = _gtk_css_color_value_resolve (color->sym_col.mix.color2, provider, current, cycle_list);
|
|
|
|
|
if (val == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
color2 = *_gtk_css_rgba_value_get_rgba (val);
|
|
|
|
|
_gtk_css_value_unref (val);
|
|
|
|
|
|
|
|
|
|
res.red = CLAMP (color1.red + ((color2.red - color1.red) * color->sym_col.mix.factor), 0, 1);
|
|
|
|
|
res.green = CLAMP (color1.green + ((color2.green - color1.green) * color->sym_col.mix.factor), 0, 1);
|
|
|
|
|
res.blue = CLAMP (color1.blue + ((color2.blue - color1.blue) * color->sym_col.mix.factor), 0, 1);
|
|
|
|
|
res.alpha = CLAMP (color1.alpha + ((color2.alpha - color1.alpha) * color->sym_col.mix.factor), 0, 1);
|
|
|
|
|
|
|
|
|
|
value =_gtk_css_rgba_value_new_from_rgba (&res);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case COLOR_TYPE_CURRENT_COLOR:
|
|
|
|
|
if (current)
|
|
|
|
|
{
|
|
|
|
|
return _gtk_css_value_ref (current);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *initial = _gtk_css_style_property_get_initial_value (_gtk_css_style_property_lookup_by_id (GTK_CSS_PROPERTY_COLOR));
|
|
|
|
|
|
|
|
|
|
if (initial->class == >K_CSS_VALUE_COLOR)
|
|
|
|
|
{
|
|
|
|
|
return _gtk_css_color_value_resolve (initial,
|
|
|
|
|
provider,
|
|
|
|
|
NULL,
|
|
|
|
|
cycle_list);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return _gtk_css_value_ref (initial);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
value = NULL;
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (color->last_value != NULL &&
|
|
|
|
|
_gtk_css_value_equal (color->last_value, value))
|
|
|
|
|
{
|
|
|
|
|
_gtk_css_value_unref (value);
|
|
|
|
|
value = _gtk_css_value_ref (color->last_value);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (color->last_value != NULL)
|
|
|
|
|
_gtk_css_value_unref (color->last_value);
|
|
|
|
|
color->last_value = _gtk_css_value_ref (value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-08 16:03:15 +00:00
|
|
|
|
GtkCssValue *
|
|
|
|
|
_gtk_css_color_value_new_literal (const GdkRGBA *color)
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *value;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (color != NULL, NULL);
|
|
|
|
|
|
|
|
|
|
value = _gtk_css_value_new (GtkCssValue, >K_CSS_VALUE_COLOR);
|
|
|
|
|
value->type = COLOR_TYPE_LITERAL;
|
|
|
|
|
value->last_value = _gtk_css_rgba_value_new_from_rgba (color);
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GtkCssValue *
|
|
|
|
|
_gtk_css_color_value_new_name (const gchar *name)
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *value;
|
|
|
|
|
|
2015-09-08 10:15:12 +00:00
|
|
|
|
gtk_internal_return_val_if_fail (name != NULL, NULL);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
|
|
|
|
value = _gtk_css_value_new (GtkCssValue, >K_CSS_VALUE_COLOR);
|
|
|
|
|
value->type = COLOR_TYPE_NAME;
|
|
|
|
|
value->sym_col.name = g_strdup (name);
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GtkCssValue *
|
|
|
|
|
_gtk_css_color_value_new_shade (GtkCssValue *color,
|
|
|
|
|
gdouble factor)
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *value;
|
|
|
|
|
|
2015-09-08 10:15:12 +00:00
|
|
|
|
gtk_internal_return_val_if_fail (color->class == >K_CSS_VALUE_COLOR, NULL);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
|
|
|
|
value = _gtk_css_value_new (GtkCssValue, >K_CSS_VALUE_COLOR);
|
|
|
|
|
value->type = COLOR_TYPE_SHADE;
|
|
|
|
|
value->sym_col.shade.color = _gtk_css_value_ref (color);
|
|
|
|
|
value->sym_col.shade.factor = factor;
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GtkCssValue *
|
|
|
|
|
_gtk_css_color_value_new_alpha (GtkCssValue *color,
|
|
|
|
|
gdouble factor)
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *value;
|
|
|
|
|
|
2015-09-08 10:15:12 +00:00
|
|
|
|
gtk_internal_return_val_if_fail (color->class == >K_CSS_VALUE_COLOR, NULL);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
|
|
|
|
value = _gtk_css_value_new (GtkCssValue, >K_CSS_VALUE_COLOR);
|
|
|
|
|
value->type = COLOR_TYPE_ALPHA;
|
|
|
|
|
value->sym_col.alpha.color = _gtk_css_value_ref (color);
|
|
|
|
|
value->sym_col.alpha.factor = factor;
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GtkCssValue *
|
|
|
|
|
_gtk_css_color_value_new_mix (GtkCssValue *color1,
|
|
|
|
|
GtkCssValue *color2,
|
|
|
|
|
gdouble factor)
|
|
|
|
|
{
|
|
|
|
|
GtkCssValue *value;
|
|
|
|
|
|
2015-09-08 10:15:12 +00:00
|
|
|
|
gtk_internal_return_val_if_fail (color1->class == >K_CSS_VALUE_COLOR, NULL);
|
|
|
|
|
gtk_internal_return_val_if_fail (color2->class == >K_CSS_VALUE_COLOR, NULL);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
|
|
|
|
value = _gtk_css_value_new (GtkCssValue, >K_CSS_VALUE_COLOR);
|
|
|
|
|
value->type = COLOR_TYPE_MIX;
|
|
|
|
|
value->sym_col.mix.color1 = _gtk_css_value_ref (color1);
|
|
|
|
|
value->sym_col.mix.color2 = _gtk_css_value_ref (color2);
|
|
|
|
|
value->sym_col.mix.factor = factor;
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GtkCssValue *
|
|
|
|
|
_gtk_css_color_value_new_current_color (void)
|
|
|
|
|
{
|
|
|
|
|
static GtkCssValue current_color = { >K_CSS_VALUE_COLOR, 1, COLOR_TYPE_CURRENT_COLOR, NULL, };
|
|
|
|
|
|
|
|
|
|
return _gtk_css_value_ref (¤t_color);
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
typedef struct
|
2012-11-08 16:03:15 +00:00
|
|
|
|
{
|
2019-04-09 02:47:00 +00:00
|
|
|
|
GtkCssValue *color;
|
|
|
|
|
GtkCssValue *color2;
|
|
|
|
|
double value;
|
|
|
|
|
} ColorFunctionData;
|
|
|
|
|
|
|
|
|
|
static guint
|
|
|
|
|
parse_color_mix (GtkCssParser *parser,
|
|
|
|
|
guint arg,
|
|
|
|
|
gpointer data_)
|
|
|
|
|
{
|
|
|
|
|
ColorFunctionData *data = data_;
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
switch (arg)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
data->color = _gtk_css_color_value_parse (parser);
|
|
|
|
|
if (data->color == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
|
data->color2 = _gtk_css_color_value_parse (parser);
|
|
|
|
|
if (data->color2 == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
|
if (!gtk_css_parser_consume_number (parser, &data->value))
|
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
default:
|
|
|
|
|
g_return_val_if_reached (0);
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
static guint
|
|
|
|
|
parse_color_number (GtkCssParser *parser,
|
|
|
|
|
guint arg,
|
|
|
|
|
gpointer data_)
|
|
|
|
|
{
|
|
|
|
|
ColorFunctionData *data = data_;
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
switch (arg)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
data->color = _gtk_css_color_value_parse (parser);
|
|
|
|
|
if (data->color == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
case 1:
|
|
|
|
|
if (!gtk_css_parser_consume_number (parser, &data->value))
|
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
default:
|
|
|
|
|
g_return_val_if_reached (0);
|
|
|
|
|
}
|
2012-11-08 16:03:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-09 03:15:45 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_css_color_value_can_parse (GtkCssParser *parser)
|
|
|
|
|
{
|
|
|
|
|
/* This is way too generous, but meh... */
|
|
|
|
|
return gtk_css_parser_has_token (parser, GTK_CSS_TOKEN_IDENT)
|
|
|
|
|
|| gtk_css_parser_has_token (parser, GTK_CSS_TOKEN_AT_KEYWORD)
|
|
|
|
|
|| gtk_css_parser_has_token (parser, GTK_CSS_TOKEN_HASH_ID)
|
|
|
|
|
|| gtk_css_parser_has_token (parser, GTK_CSS_TOKEN_HASH_UNRESTRICTED)
|
|
|
|
|
|| gtk_css_parser_has_function (parser, "lighter")
|
|
|
|
|
|| gtk_css_parser_has_function (parser, "darker")
|
|
|
|
|
|| gtk_css_parser_has_function (parser, "shade")
|
|
|
|
|
|| gtk_css_parser_has_function (parser, "alpha")
|
|
|
|
|
|| gtk_css_parser_has_function (parser, "mix")
|
|
|
|
|
|| gtk_css_parser_has_function (parser, "rgb")
|
|
|
|
|
|| gtk_css_parser_has_function (parser, "rgba");
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-08 16:03:15 +00:00
|
|
|
|
GtkCssValue *
|
|
|
|
|
_gtk_css_color_value_parse (GtkCssParser *parser)
|
|
|
|
|
{
|
2019-04-09 02:47:00 +00:00
|
|
|
|
ColorFunctionData data = { NULL, };
|
2012-11-08 16:03:15 +00:00
|
|
|
|
GtkCssValue *value;
|
|
|
|
|
GdkRGBA rgba;
|
|
|
|
|
|
2019-03-24 13:03:52 +00:00
|
|
|
|
if (gtk_css_parser_try_ident (parser, "currentColor"))
|
2012-11-08 16:03:15 +00:00
|
|
|
|
{
|
2019-04-09 02:47:00 +00:00
|
|
|
|
return _gtk_css_color_value_new_current_color ();
|
2012-11-08 16:03:15 +00:00
|
|
|
|
}
|
2019-04-09 02:47:00 +00:00
|
|
|
|
else if (gtk_css_parser_has_token (parser, GTK_CSS_TOKEN_AT_KEYWORD))
|
2012-11-08 16:03:15 +00:00
|
|
|
|
{
|
2019-04-09 02:47:00 +00:00
|
|
|
|
const GtkCssToken *token = gtk_css_parser_get_token (parser);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
value = _gtk_css_color_value_new_name (token->string.string);
|
|
|
|
|
gtk_css_parser_consume_token (parser);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
2019-04-09 02:47:00 +00:00
|
|
|
|
else if (gtk_css_parser_has_function (parser, "lighter"))
|
2012-11-08 16:03:15 +00:00
|
|
|
|
{
|
2019-04-09 02:47:00 +00:00
|
|
|
|
if (gtk_css_parser_consume_function (parser, 1, 1, parse_color_number, &data))
|
|
|
|
|
value = _gtk_css_color_value_new_shade (data.color, 1.3);
|
|
|
|
|
else
|
|
|
|
|
value = NULL;
|
|
|
|
|
|
|
|
|
|
g_clear_pointer (&data.color, gtk_css_value_unref);
|
|
|
|
|
return value;
|
2012-11-08 16:03:15 +00:00
|
|
|
|
}
|
2019-04-09 02:47:00 +00:00
|
|
|
|
else if (gtk_css_parser_has_function (parser, "darker"))
|
|
|
|
|
{
|
|
|
|
|
if (gtk_css_parser_consume_function (parser, 1, 1, parse_color_number, &data))
|
|
|
|
|
value = _gtk_css_color_value_new_shade (data.color, 0.7);
|
|
|
|
|
else
|
|
|
|
|
value = NULL;
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
g_clear_pointer (&data.color, gtk_css_value_unref);
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
else if (gtk_css_parser_has_function (parser, "shade"))
|
|
|
|
|
{
|
|
|
|
|
if (gtk_css_parser_consume_function (parser, 2, 2, parse_color_number, &data))
|
|
|
|
|
value = _gtk_css_color_value_new_shade (data.color, data.value);
|
|
|
|
|
else
|
|
|
|
|
value = NULL;
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
g_clear_pointer (&data.color, gtk_css_value_unref);
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
else if (gtk_css_parser_has_function (parser, "alpha"))
|
|
|
|
|
{
|
|
|
|
|
if (gtk_css_parser_consume_function (parser, 2, 2, parse_color_number, &data))
|
|
|
|
|
value = _gtk_css_color_value_new_alpha (data.color, data.value);
|
|
|
|
|
else
|
|
|
|
|
value = NULL;
|
2012-11-08 16:03:15 +00:00
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
g_clear_pointer (&data.color, gtk_css_value_unref);
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
else if (gtk_css_parser_has_function (parser, "mix"))
|
2012-11-08 16:03:15 +00:00
|
|
|
|
{
|
2019-04-09 02:47:00 +00:00
|
|
|
|
if (gtk_css_parser_consume_function (parser, 3, 3, parse_color_mix, &data))
|
|
|
|
|
value = _gtk_css_color_value_new_mix (data.color, data.color2, data.value);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
else
|
2019-04-09 02:47:00 +00:00
|
|
|
|
value = NULL;
|
|
|
|
|
|
|
|
|
|
g_clear_pointer (&data.color, gtk_css_value_unref);
|
|
|
|
|
g_clear_pointer (&data.color2, gtk_css_value_unref);
|
2012-11-08 16:03:15 +00:00
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-09 02:47:00 +00:00
|
|
|
|
if (gdk_rgba_parser_parse (parser, &rgba))
|
|
|
|
|
return _gtk_css_color_value_new_literal (&rgba);
|
|
|
|
|
else
|
|
|
|
|
return NULL;
|
2012-11-08 16:03:15 +00:00
|
|
|
|
}
|
|
|
|
|
|