]> Pileus Git - ~andy/gtk/blob - gtk/gtkcssrgbavalue.c
cssvalue: Add a custom RGBA value
[~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 "gtkstylecontextprivate.h"
23 #include "gtksymboliccolorprivate.h"
24
25 struct _GtkCssValue {
26   GTK_CSS_VALUE_BASE
27   GdkRGBA rgba;
28 };
29
30 static void
31 gtk_css_value_rgba_free (GtkCssValue *value)
32 {
33   g_slice_free (GtkCssValue, value);
34 }
35
36 static gboolean
37 gtk_css_value_rgba_equal (const GtkCssValue *rgba1,
38                           const GtkCssValue *rgba2)
39 {
40   return gdk_rgba_equal (&rgba1->rgba, &rgba2->rgba);
41 }
42
43 static void
44 gtk_css_value_rgba_print (const GtkCssValue *rgba,
45                           GString           *string)
46 {
47   char *s = gdk_rgba_to_string (&rgba->rgba);
48   g_string_append (string, s);
49   g_free (s);
50 }
51
52 static const GtkCssValueClass GTK_CSS_VALUE_RGBA = {
53   gtk_css_value_rgba_free,
54   gtk_css_value_rgba_equal,
55   gtk_css_value_rgba_print
56 };
57
58 GtkCssValue *
59 _gtk_css_rgba_value_new_from_rgba (const GdkRGBA *rgba)
60 {
61   GtkCssValue *value;
62
63   g_return_val_if_fail (rgba != NULL, NULL);
64
65   value = _gtk_css_value_new (GtkCssValue, &GTK_CSS_VALUE_RGBA);
66   value->rgba = *rgba;
67
68   return value;
69 }
70
71 const GdkRGBA *
72 _gtk_css_rgba_value_get_rgba (const GtkCssValue *rgba)
73 {
74   g_return_val_if_fail (rgba->class == &GTK_CSS_VALUE_RGBA, NULL);
75
76   return &rgba->rgba;
77 }
78
79 GtkCssValue *
80 _gtk_css_rgba_value_compute_from_symbolic (GtkCssValue     *rgba,
81                                            GtkCssValue     *fallback,
82                                            GtkStyleContext *context,
83                                            gboolean         for_color_property)
84 {
85   GtkSymbolicColor *symbolic;
86   GtkCssValue *resolved;
87
88   g_return_val_if_fail (rgba != NULL, NULL);
89
90   symbolic = _gtk_css_value_get_symbolic_color (rgba);
91
92   if (symbolic == _gtk_symbolic_color_get_current_color ())
93     {
94       /* The computed value of the ‘currentColor’ keyword is the computed
95        * value of the ‘color’ property. If the ‘currentColor’ keyword is
96        * set on the ‘color’ property itself, it is treated as ‘color: inherit’. 
97        */
98       if (for_color_property)
99         {
100           GtkStyleContext *parent = gtk_style_context_get_parent (context);
101
102           if (parent)
103             return _gtk_css_value_ref (_gtk_style_context_peek_property (parent, "color"));
104           else
105             return _gtk_css_rgba_value_compute_from_symbolic (fallback, NULL, context, TRUE);
106         }
107       else
108         {
109           return _gtk_css_value_ref (_gtk_style_context_peek_property (context, "color"));
110         }
111     }
112   
113   resolved = _gtk_style_context_resolve_color_value (context, symbolic);
114
115   if (resolved == NULL)
116     return _gtk_css_rgba_value_compute_from_symbolic (fallback, NULL, context, for_color_property);
117
118   g_assert (resolved->class == &GTK_CSS_VALUE_RGBA);
119   return resolved;
120 }
121