]> Pileus Git - ~andy/gtk/blob - gtk/gtkcssrgbavalue.c
symboliccolor: Pass the current color to the resolve function
[~andy/gtk] / gtk / gtkcssrgbavalue.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2011 Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include "config.h"
19
20 #include "gtkcssrgbavalueprivate.h"
21
22 #include "gtkcssstylepropertyprivate.h"
23 #include "gtkstylecontextprivate.h"
24 #include "gtksymboliccolorprivate.h"
25
26 struct _GtkCssValue {
27   GTK_CSS_VALUE_BASE
28   GdkRGBA rgba;
29 };
30
31 static void
32 gtk_css_value_rgba_free (GtkCssValue *value)
33 {
34   g_slice_free (GtkCssValue, value);
35 }
36
37 static gboolean
38 gtk_css_value_rgba_equal (const GtkCssValue *rgba1,
39                           const GtkCssValue *rgba2)
40 {
41   return gdk_rgba_equal (&rgba1->rgba, &rgba2->rgba);
42 }
43
44 static GtkCssValue *
45 gtk_css_value_rgba_transition (GtkCssValue *start,
46                                GtkCssValue *end,
47                                double       progress)
48 {
49   GdkRGBA transition;
50
51   progress = CLAMP (progress, 0, 1);
52   transition.red = start->rgba.red + (end->rgba.red - start->rgba.red) * progress;
53   transition.green = start->rgba.green + (end->rgba.green - start->rgba.green) * progress;
54   transition.blue = start->rgba.blue + (end->rgba.blue - start->rgba.blue) * progress;
55   transition.alpha = start->rgba.alpha + (end->rgba.alpha - start->rgba.alpha) * progress;
56
57   return _gtk_css_rgba_value_new_from_rgba (&transition);
58 }
59
60 static void
61 gtk_css_value_rgba_print (const GtkCssValue *rgba,
62                           GString           *string)
63 {
64   char *s = gdk_rgba_to_string (&rgba->rgba);
65   g_string_append (string, s);
66   g_free (s);
67 }
68
69 static const GtkCssValueClass GTK_CSS_VALUE_RGBA = {
70   gtk_css_value_rgba_free,
71   gtk_css_value_rgba_equal,
72   gtk_css_value_rgba_transition,
73   gtk_css_value_rgba_print
74 };
75
76 GtkCssValue *
77 _gtk_css_rgba_value_new_from_rgba (const GdkRGBA *rgba)
78 {
79   GtkCssValue *value;
80
81   g_return_val_if_fail (rgba != NULL, NULL);
82
83   value = _gtk_css_value_new (GtkCssValue, &GTK_CSS_VALUE_RGBA);
84   value->rgba = *rgba;
85
86   return value;
87 }
88
89 const GdkRGBA *
90 _gtk_css_rgba_value_get_rgba (const GtkCssValue *rgba)
91 {
92   g_return_val_if_fail (rgba->class == &GTK_CSS_VALUE_RGBA, NULL);
93
94   return &rgba->rgba;
95 }
96
97 GtkCssValue *
98 _gtk_css_rgba_value_compute_from_symbolic (GtkCssValue     *rgba,
99                                            GtkCssValue     *fallback,
100                                            GtkStyleContext *context,
101                                            gboolean         for_color_property)
102 {
103   GtkSymbolicColor *symbolic;
104   GtkCssValue *resolved, *current;
105
106   g_return_val_if_fail (rgba != NULL, NULL);
107
108   /* The computed value of the ‘currentColor’ keyword is the computed
109    * value of the ‘color’ property. If the ‘currentColor’ keyword is
110    * set on the ‘color’ property itself, it is treated as ‘color: inherit’. 
111    */
112   if (for_color_property)
113     {
114       GtkStyleContext *parent = gtk_style_context_get_parent (context);
115
116       if (parent)
117         current = _gtk_style_context_peek_property (parent, GTK_CSS_PROPERTY_COLOR);
118       else
119         current = _gtk_css_style_property_get_initial_value (_gtk_css_style_property_lookup_by_id (GTK_CSS_PROPERTY_COLOR));
120     }
121   else
122     {
123       current = _gtk_style_context_peek_property (context, GTK_CSS_PROPERTY_COLOR);
124     }
125   
126   resolved = _gtk_style_context_resolve_color_value (context, current, symbolic);
127
128   if (resolved == NULL)
129     return _gtk_css_rgba_value_compute_from_symbolic (fallback, NULL, context, for_color_property);
130
131   g_assert (resolved->class == &GTK_CSS_VALUE_RGBA);
132   return resolved;
133 }
134