]> Pileus Git - ~andy/gtk/blob - gtk/gtkcssrgbavalue.c
css: Introduce _gtk_css_value_compute()
[~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 GtkCssValue *
38 gtk_css_value_rgba_compute (GtkCssValue     *value,
39                             GtkStyleContext *context)
40 {
41   return _gtk_css_value_ref (value);
42 }
43
44 static gboolean
45 gtk_css_value_rgba_equal (const GtkCssValue *rgba1,
46                           const GtkCssValue *rgba2)
47 {
48   return gdk_rgba_equal (&rgba1->rgba, &rgba2->rgba);
49 }
50
51 static GtkCssValue *
52 gtk_css_value_rgba_transition (GtkCssValue *start,
53                                GtkCssValue *end,
54                                double       progress)
55 {
56   GdkRGBA transition;
57
58   progress = CLAMP (progress, 0, 1);
59   transition.red = start->rgba.red + (end->rgba.red - start->rgba.red) * progress;
60   transition.green = start->rgba.green + (end->rgba.green - start->rgba.green) * progress;
61   transition.blue = start->rgba.blue + (end->rgba.blue - start->rgba.blue) * progress;
62   transition.alpha = start->rgba.alpha + (end->rgba.alpha - start->rgba.alpha) * progress;
63
64   return _gtk_css_rgba_value_new_from_rgba (&transition);
65 }
66
67 static void
68 gtk_css_value_rgba_print (const GtkCssValue *rgba,
69                           GString           *string)
70 {
71   char *s = gdk_rgba_to_string (&rgba->rgba);
72   g_string_append (string, s);
73   g_free (s);
74 }
75
76 static const GtkCssValueClass GTK_CSS_VALUE_RGBA = {
77   gtk_css_value_rgba_free,
78   gtk_css_value_rgba_compute,
79   gtk_css_value_rgba_equal,
80   gtk_css_value_rgba_transition,
81   gtk_css_value_rgba_print
82 };
83
84 GtkCssValue *
85 _gtk_css_rgba_value_new_from_rgba (const GdkRGBA *rgba)
86 {
87   GtkCssValue *value;
88
89   g_return_val_if_fail (rgba != NULL, NULL);
90
91   value = _gtk_css_value_new (GtkCssValue, &GTK_CSS_VALUE_RGBA);
92   value->rgba = *rgba;
93
94   return value;
95 }
96
97 const GdkRGBA *
98 _gtk_css_rgba_value_get_rgba (const GtkCssValue *rgba)
99 {
100   g_return_val_if_fail (rgba->class == &GTK_CSS_VALUE_RGBA, NULL);
101
102   return &rgba->rgba;
103 }
104
105 GtkCssValue *
106 _gtk_css_rgba_value_compute_from_symbolic (GtkCssValue     *symbolic,
107                                            GtkCssValue     *fallback,
108                                            GtkStyleContext *context,
109                                            gboolean         for_color_property)
110 {
111   GtkCssValue *resolved, *current;
112
113   g_return_val_if_fail (symbolic != NULL, NULL);
114
115   /* The computed value of the ‘currentColor’ keyword is the computed
116    * value of the ‘color’ property. If the ‘currentColor’ keyword is
117    * set on the ‘color’ property itself, it is treated as ‘color: inherit’. 
118    */
119   if (for_color_property)
120     {
121       GtkStyleContext *parent = gtk_style_context_get_parent (context);
122
123       if (parent)
124         current = _gtk_style_context_peek_property (parent, GTK_CSS_PROPERTY_COLOR);
125       else
126         current = _gtk_css_style_property_get_initial_value (_gtk_css_style_property_lookup_by_id (GTK_CSS_PROPERTY_COLOR));
127     }
128   else
129     {
130       current = _gtk_style_context_peek_property (context, GTK_CSS_PROPERTY_COLOR);
131     }
132   
133   resolved = _gtk_style_context_resolve_color_value (context, current, symbolic);
134
135   if (resolved == NULL)
136     return _gtk_css_rgba_value_compute_from_symbolic (fallback, NULL, context, for_color_property);
137
138   g_assert (resolved->class == &GTK_CSS_VALUE_RGBA);
139   return resolved;
140 }
141