]> Pileus Git - ~andy/gtk/blob - gtk/gtkcssprovider.c
css: Make property parsing functions take a css parser
[~andy/gtk] / gtk / gtkcssprovider.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2010 Carlos Garnacho <carlosg@gnome.org>
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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include "config.h"
21
22 #include <string.h>
23 #include <stdlib.h>
24
25 #include <gdk-pixbuf/gdk-pixbuf.h>
26 #include <cairo-gobject.h>
27
28 #include "gtkcssproviderprivate.h"
29
30 #include "gtkcssparserprivate.h"
31 #include "gtkcssselectorprivate.h"
32 #include "gtkcssstringfuncsprivate.h"
33 #include "gtksymboliccolor.h"
34 #include "gtkstyleprovider.h"
35 #include "gtkstylecontextprivate.h"
36 #include "gtkstylepropertiesprivate.h"
37 #include "gtkbindings.h"
38 #include "gtkmarshalers.h"
39 #include "gtkprivate.h"
40 #include "gtkintl.h"
41
42 /**
43  * SECTION:gtkcssprovider
44  * @Short_description: CSS-like styling for widgets
45  * @Title: GtkCssProvider
46  * @See_also: #GtkStyleContext, #GtkStyleProvider
47  *
48  * GtkCssProvider is an object implementing the #GtkStyleProvider interface.
49  * It is able to parse <ulink url="http://www.w3.org/TR/CSS2">CSS</ulink>-like
50  * input in order to style widgets.
51  *
52  * <refsect2 id="gtkcssprovider-files">
53  * <title>Default files</title>
54  * <para>
55  * An application can cause GTK+ to parse a specific CSS style sheet by
56  * calling gtk_css_provider_load_from_file() and adding the provider with
57  * gtk_style_context_add_provider() or gtk_style_context_add_provider_for_screen().
58  * In addition, certain files will be read when GTK+ is initialized. First,
59  * the file <filename><envar>$XDG_CONFIG_HOME</envar>/gtk-3.0/gtk.css</filename>
60  * is loaded if it exists. Then, GTK+ tries to load
61  * <filename><envar>$HOME</envar>/.themes/<replaceable>theme-name</replaceable>/gtk-3.0/gtk.css</filename>,
62  * falling back to
63  * <filename><replaceable>datadir</replaceable>/share/themes/<replaceable>theme-name</replaceable>/gtk-3.0/gtk.css</filename>,
64  * where <replaceable>theme-name</replaceable> is the name of the current theme
65  * (see the #GtkSettings:gtk-theme-name setting) and <replaceable>datadir</replaceable>
66  * is the prefix configured when GTK+ was compiled, unless overridden by the
67  * <envar>GTK_DATA_PREFIX</envar> environment variable.
68  * </para>
69  * </refsect2>
70  * <refsect2 id="gtkcssprovider-stylesheets">
71  * <title>Style sheets</title>
72  * <para>
73  * The basic structure of the style sheets understood by this provider is
74  * a series of statements, which are either rule sets or '@-rules', separated
75  * by whitespace.
76  * </para>
77  * <para>
78  * A rule set consists of a selector and a declaration block, which is
79  * a series of declarations enclosed in curly braces ({ and }). The
80  * declarations are separated by semicolons (;). Multiple selectors can
81  * share the same declaration block, by putting all the separators in
82  * front of the block, separated by commas.
83  * </para>
84  * <example><title>A rule set with two selectors</title>
85  * <programlisting language="text">
86  * GtkButton, GtkEntry {
87  *     color: &num;ff00ea;
88  *     font: Comic Sans 12
89  * }
90  * </programlisting>
91  * </example>
92  * </refsect2>
93  * <refsect2 id="gtkcssprovider-selectors">
94  * <title>Selectors</title>
95  * <para>
96  * Selectors work very similar to the way they do in CSS, with widget class
97  * names taking the role of element names, and widget names taking the role
98  * of IDs. When used in a selector, widget names must be prefixed with a
99  * '&num;' character. The '*' character represents the so-called universal
100  * selector, which matches any widget.
101  * </para>
102  * <para>
103  * To express more complicated situations, selectors can be combined in
104  * various ways:
105  * <itemizedlist>
106  * <listitem><para>To require that a widget satisfies several conditions,
107  *   combine several selectors into one by concatenating them. E.g.
108  *   <literal>GtkButton&num;button1</literal> matches a GtkButton widget
109  *   with the name button1.</para></listitem>
110  * <listitem><para>To only match a widget when it occurs inside some other
111  *   widget, write the two selectors after each other, separated by whitespace.
112  *   E.g. <literal>GtkToolBar GtkButton</literal> matches GtkButton widgets
113  *   that occur inside a GtkToolBar.</para></listitem>
114  * <listitem><para>In the previous example, the GtkButton is matched even
115  *   if it occurs deeply nested inside the toolbar. To restrict the match
116  *   to direct children of the parent widget, insert a '>' character between
117  *   the two selectors. E.g. <literal>GtkNotebook > GtkLabel</literal> matches
118  *   GtkLabel widgets that are direct children of a GtkNotebook.</para></listitem>
119  * </itemizedlist>
120  * </para>
121  * <example>
122  * <title>Widget classes and names in selectors</title>
123  * <programlisting language="text">
124  * /&ast; Theme labels that are descendants of a window &ast;/
125  * GtkWindow GtkLabel {
126  *     background-color: &num;898989
127  * }
128  *
129  * /&ast; Theme notebooks, and anything that's within these &ast;/
130  * GtkNotebook {
131  *     background-color: &num;a939f0
132  * }
133  *
134  * /&ast; Theme combo boxes, and entries that
135  *  are direct children of a notebook &ast;/
136  * GtkComboBox,
137  * GtkNotebook > GtkEntry {
138  *     color: @fg_color;
139  *     background-color: &num;1209a2
140  * }
141  *
142  * /&ast; Theme any widget within a GtkBin &ast;/
143  * GtkBin * {
144  *     font-name: Sans 20
145  * }
146  *
147  * /&ast; Theme a label named title-label &ast;/
148  * GtkLabel&num;title-label {
149  *     font-name: Sans 15
150  * }
151  *
152  * /&ast; Theme any widget named main-entry &ast;/
153  * &num;main-entry {
154  *     background-color: &num;f0a810
155  * }
156  * </programlisting>
157  * </example>
158  * <para>
159  * Widgets may also define style classes, which can be used for matching.
160  * When used in a selector, style classes must be prefixed with a '.'
161  * character.
162  * </para>
163  * <para>
164  * Refer to the documentation of individual widgets to learn which
165  * style classes they define and see <xref linkend="gtkstylecontext-classes"/>
166  * for a list of all style classes used by GTK+ widgets.
167  * </para>
168  * <para>
169  * Note that there is some ambiguity in the selector syntax when it comes
170  * to differentiation widget class names from regions. GTK+ currently treats
171  * a string as a widget class name if it contains any uppercase characters
172  * (which should work for more widgets with names like GtkLabel).
173  * </para>
174  * <example>
175  * <title>Style classes in selectors</title>
176  * <programlisting language="text">
177  * /&ast; Theme all widgets defining the class entry &ast;/
178  * .entry {
179  *     color: &num;39f1f9;
180  * }
181  *
182  * /&ast; Theme spinbuttons' entry &ast;/
183  * GtkSpinButton.entry {
184  *     color: &num;900185
185  * }
186  * </programlisting>
187  * </example>
188  * <para>
189  * In complicated widgets like e.g. a GtkNotebook, it may be desirable
190  * to style different parts of the widget differently. To make this
191  * possible, container widgets may define regions, whose names
192  * may be used for matching in selectors.
193  * </para>
194  * <para>
195  * Some containers allow to further differentiate between regions by
196  * applying so-called pseudo-classes to the region. For example, the
197  * tab region in GtkNotebook allows to single out the first or last
198  * tab by using the :first-child or :last-child pseudo-class.
199  * When used in selectors, pseudo-classes must be prefixed with a
200  * ':' character.
201  * </para>
202  * <para>
203  * Refer to the documentation of individual widgets to learn which
204  * regions and pseudo-classes they define and see
205  * <xref linkend="gtkstylecontext-classes"/> for a list of all regions
206  * used by GTK+ widgets.
207  * </para>
208  * <example>
209  * <title>Regions in selectors</title>
210  * <programlisting language="text">
211  * /&ast; Theme any label within a notebook &ast;/
212  * GtkNotebook GtkLabel {
213  *     color: &num;f90192;
214  * }
215  *
216  * /&ast; Theme labels within notebook tabs &ast;/
217  * GtkNotebook tab GtkLabel {
218  *     color: &num;703910;
219  * }
220  *
221  * /&ast; Theme labels in the any first notebook
222  *  tab, both selectors are equivalent &ast;/
223  * GtkNotebook tab:nth-child(first) GtkLabel,
224  * GtkNotebook tab:first-child GtkLabel {
225  *     color: &num;89d012;
226  * }
227  * </programlisting>
228  * </example>
229  * <para>
230  * Another use of pseudo-classes is to match widgets depending on their
231  * state. This is conceptually similar to the :hover, :active or :focus
232  * pseudo-classes in CSS. The available pseudo-classes for widget states
233  * are :active, :prelight (or :hover), :insensitive, :selected, :focused
234  * and :inconsistent.
235  * </para>
236  * <example>
237  * <title>Styling specific widget states</title>
238  * <programlisting language="text">
239  * /&ast; Theme active (pressed) buttons &ast;/
240  * GtkButton:active {
241  *     background-color: &num;0274d9;
242  * }
243  *
244  * /&ast; Theme buttons with the mouse pointer on it,
245  *    both are equivalent &ast;/
246  * GtkButton:hover,
247  * GtkButton:prelight {
248  *     background-color: &num;3085a9;
249  * }
250  *
251  * /&ast; Theme insensitive widgets, both are equivalent &ast;/
252  * :insensitive,
253  * *:insensitive {
254  *     background-color: &num;320a91;
255  * }
256  *
257  * /&ast; Theme selection colors in entries &ast;/
258  * GtkEntry:selected {
259  *     background-color: &num;56f9a0;
260  * }
261  *
262  * /&ast; Theme focused labels &ast;/
263  * GtkLabel:focused {
264  *     background-color: &num;b4940f;
265  * }
266  *
267  * /&ast; Theme inconsistent checkbuttons &ast;/
268  * GtkCheckButton:inconsistent {
269  *     background-color: &num;20395a;
270  * }
271  * </programlisting>
272  * </example>
273  * <para>
274  * Widget state pseudoclasses may only apply to the last element
275  * in a selector.
276  * </para>
277  * <para>
278  * To determine the effective style for a widget, all the matching rule
279  * sets are merged. As in CSS, rules apply by specificity, so the rules
280  * whose selectors more closely match a widget path will take precedence
281  * over the others.
282  * </para>
283  * </refsect2>
284  * <refsect2 id="gtkcssprovider-rules">
285  * <title>&commat; Rules</title>
286  * <para>
287  * GTK+'s CSS supports the &commat;import rule, in order to load another
288  * CSS style sheet in addition to the currently parsed one.
289  * </para>
290  * <example>
291  * <title>Using the &commat;import rule</title>
292  * <programlisting language="text">
293  * &commat;import url ("path/to/common.css");
294  * </programlisting>
295  * </example>
296  * <para id="css-binding-set">
297  * In order to extend key bindings affecting different widgets, GTK+
298  * supports the &commat;binding-set rule to parse a set of bind/unbind
299  * directives, see #GtkBindingSet for the supported syntax. Note that
300  * the binding sets defined in this way must be associated with rule sets
301  * by setting the gtk-key-bindings style property.
302  * </para>
303  * <para>
304  * Customized key bindings are typically defined in a separate
305  * <filename>gtk-keys.css</filename> CSS file and GTK+ loads this file
306  * according to the current key theme, which is defined by the
307  * #GtkSettings:gtk-key-theme-name setting.
308  * </para>
309  * <example>
310  * <title>Using the &commat;binding rule</title>
311  * <programlisting language="text">
312  * &commat;binding-set binding-set1 {
313  *   bind "&lt;alt&gt;Left" { "move-cursor" (visual-positions, -3, 0) };
314  *   unbind "End";
315  * };
316  *
317  * &commat;binding-set binding-set2 {
318  *   bind "&lt;alt&gt;Right" { "move-cursor" (visual-positions, 3, 0) };
319  *   bind "&lt;alt&gt;KP_space" { "delete-from-cursor" (whitespace, 1)
320  *                          "insert-at-cursor" (" ") };
321  * };
322  *
323  * GtkEntry {
324  *   gtk-key-bindings: binding-set1, binding-set2;
325  * }
326  * </programlisting>
327  * </example>
328  * <para>
329  * GTK+ also supports an additional &commat;define-color rule, in order
330  * to define a color name which may be used instead of color numeric
331  * representations. Also see the #GtkSettings:gtk-color-scheme setting
332  * for a way to override the values of these named colors.
333  * </para>
334  * <example>
335  * <title>Defining colors</title>
336  * <programlisting language="text">
337  * &commat;define-color bg_color &num;f9a039;
338  *
339  * &ast; {
340  *     background-color: &commat;bg_color;
341  * }
342  * </programlisting>
343  * </example>
344  * </refsect2>
345  * <refsect2 id="gtkcssprovider-symbolic-colors">
346  * <title>Symbolic colors</title>
347  * <para>
348  * Besides being able to define color names, the CSS parser is also able
349  * to read different color expressions, which can also be nested, providing
350  * a rich language to define colors which are derived from a set of base
351  * colors.
352  * </para>
353  * <example>
354  * <title>Using symbolic colors</title>
355  * <programlisting language="text">
356  * &commat;define-color entry-color shade (&commat;bg_color, 0.7);
357  *
358  * GtkEntry {
359  *     background-color: @entry-color;
360  * }
361  *
362  * GtkEntry:focused {
363  *     background-color: mix (&commat;entry-color,
364  *                            shade (&num;fff, 0.5),
365  *                            0.8);
366  * }
367  * </programlisting>
368  * </example>
369  * <para>
370  *   The various ways to express colors in GTK+ CSS are:
371  * </para>
372  * <informaltable>
373  *   <tgroup cols="3">
374  *     <thead>
375  *       <row>
376  *         <entry>Syntax</entry>
377  *         <entry>Explanation</entry>
378  *         <entry>Examples</entry>
379  *       </row>
380  *     </thead>
381  *     <tbody>
382  *       <row>
383  *         <entry>rgb(@r, @g, @b)</entry>
384  *         <entry>An opaque color; @r, @g, @b can be either integers between
385  *                0 and 255 or percentages</entry>
386  *         <entry><literallayout>rgb(128, 10, 54)
387  * rgb(20%, 30%, 0%)</literallayout></entry>
388  *       </row>
389  *       <row>
390  *         <entry>rgba(@r, @g, @b, @a)</entry>
391  *         <entry>A translucent color; @r, @g, @b are as in the previous row,
392  *                @a is a floating point number between 0 and 1</entry>
393  *         <entry><literallayout>rgba(255, 255, 0, 0.5)</literallayout></entry>
394  *       </row>
395  *       <row>
396  *         <entry>&num;@xxyyzz</entry>
397  *         <entry>An opaque color; @xx, @yy, @zz are hexadecimal numbers
398  *                specifying @r, @g, @b variants with between 1 and 4
399  *                hexadecimal digits per component are allowed</entry>
400  *         <entry><literallayout>&num;ff12ab
401  * &num;f0c</literallayout></entry>
402  *       </row>
403  *       <row>
404  *         <entry>&commat;name</entry>
405  *         <entry>Reference to a color that has been defined with
406  *                &commat;define-color
407  *         </entry>
408  *         <entry>&commat;bg_color</entry>
409  *       </row>
410  *       <row>
411  *         <entry>mix(@color1, @color2, @f)</entry>
412  *         <entry>A linear combination of @color1 and @color2. @f is a
413  *                floating point number between 0 and 1.</entry>
414  *         <entry><literallayout>mix(&num;ff1e0a, &commat;bg_color, 0.8)</literallayout></entry>
415  *       </row>
416  *       <row>
417  *         <entry>shade(@color, @f)</entry>
418  *         <entry>A lighter or darker variant of @color. @f is a
419  *                floating point number.
420  *         </entry>
421  *         <entry>shade(&commat;fg_color, 0.5)</entry>
422  *       </row>
423  *       <row>
424  *         <entry>lighter(@color)</entry>
425  *         <entry>A lighter variant of @color</entry>
426  *       </row>
427  *       <row>
428  *         <entry>darker(@color)</entry>
429  *         <entry>A darker variant of @color</entry>
430  *       </row>
431  *     </tbody>
432  *   </tgroup>
433  * </informaltable>
434  * </refsect2>
435  * <refsect2 id="gtkcssprovider-gradients">
436  * <title>Gradients</title>
437  * <para>
438  * Linear or radial Gradients can be used as background images.
439  * </para>
440  * <para>
441  * A linear gradient along the line from (@start_x, @start_y) to
442  * (@end_x, @end_y) is specified using the syntax
443  * <literallayout>-gtk-gradient (linear,
444  *               @start_x @start_y, @end_x @end_y,
445  *               color-stop (@position, @color),
446  *               ...)</literallayout>
447  * where @start_x and @end_x can be either a floating point number between
448  * 0 and 1 or one of the special values 'left', 'right' or 'center', @start_y
449  * and @end_y can be either a floating point number between 0 and 1 or one
450  * of the special values 'top', 'bottom' or 'center', @position is a floating
451  * point number between 0 and 1 and @color is a color expression (see above).
452  * The color-stop can be repeated multiple times to add more than one color
453  * stop. 'from (@color)' and 'to (@color)' can be used as abbreviations for
454  * color stops with position 0 and 1, respectively.
455  * </para>
456  * <example>
457  * <title>A linear gradient</title>
458  * <inlinegraphic fileref="gradient1.png" format="PNG"/>
459  * <para>This gradient was specified with
460  * <literallayout>-gtk-gradient (linear,
461  *                left top, right bottom,
462  *                from(&commat;yellow), to(&commat;blue))</literallayout></para>
463  * </example>
464  * <example>
465  * <title>Another linear gradient</title>
466  * <inlinegraphic fileref="gradient2.png" format="PNG"/>
467  * <para>This gradient was specified with
468  * <literallayout>-gtk-gradient (linear,
469  *                0 0, 0 1,
470  *                color-stop(0, &commat;yellow),
471  *                color-stop(0.2, &commat;blue),
472  *                color-stop(1, &num;0f0))</literallayout></para>
473  * </example>
474  * <para>
475  * A radial gradient along the two circles defined by (@start_x, @start_y,
476  * @start_radius) and (@end_x, @end_y, @end_radius) is specified using the
477  * syntax
478  * <literallayout>-gtk-gradient (radial,
479  *                @start_x @start_y, @start_radius,
480  *                @end_x @end_y, @end_radius,
481  *                color-stop (@position, @color),
482  *                ...)</literallayout>
483  * where @start_radius and @end_radius are floating point numbers and
484  * the other parameters are as before.
485  * </para>
486  * <example>
487  * <title>A radial gradient</title>
488  * <inlinegraphic fileref="gradient3.png" format="PNG"/>
489  * <para>This gradient was specified with
490  * <literallayout>-gtk-gradient (radial,
491  *                center center, 0,
492  *                center center, 1,
493  *                from(&commat;yellow), to(&commat;green))</literallayout></para>
494  * </example>
495  * <example>
496  * <title>Another radial gradient</title>
497  * <inlinegraphic fileref="gradient4.png" format="PNG"/>
498  * <para>This gradient was specified with
499  * <literallayout>-gtk-gradient (radial,
500  *                0.4 0.4, 0.1,
501  *                0.6 0.6, 0.7,
502  *                color-stop (0, &num;f00),
503  *                color-stop (0.1, &num;a0f),
504  *                color-stop (0.2, &commat;yellow),
505  *                color-stop (1, &commat;green))</literallayout></para>
506  * </example>
507  * </refsect2>
508  * <refsect2 id="gtkcssprovider-slices">
509  * <title>Border images</title>
510  * <para>
511  * Images can be used in 'slices' for the purpose of creating scalable
512  * borders.
513  * </para>
514  * <inlinegraphic fileref="slices.png" format="PNG"/>
515  * <para>
516  * The syntax for specifying border images of this kind is:
517  * <literallayout>url(@path) @top @right @bottom @left [repeat|stretch]? [repeat|stretch]?</literallayout>
518  * The sizes of the 'cut off' portions are specified
519  * with the @top, @right, @bottom and @left parameters.
520  * The 'middle' sections can be repeated or stretched to create
521  * the desired effect, by adding the 'repeat' or 'stretch' options after
522  * the dimensions. If two options are specified, the first one affects
523  * the horizontal behaviour and the second one the vertical behaviour.
524  * If only one option is specified, it affects both.
525  * </para>
526  * <example>
527  * <title>A border image</title>
528  * <inlinegraphic fileref="border1.png" format="PNG"/>
529  * <para>This border image was specified with
530  * <literallayout>url("gradient1.png") 10 10 10 10</literallayout>
531  * </para>
532  * </example>
533  * <example>
534  * <title>A repeating border image</title>
535  * <inlinegraphic fileref="border2.png" format="PNG"/>
536  * <para>This border image was specified with
537  * <literallayout>url("gradient1.png") 10 10 10 10 repeat</literallayout>
538  * </para>
539  * </example>
540  * <example>
541  * <title>A stretched border image</title>
542  * <inlinegraphic fileref="border3.png" format="PNG"/>
543  * <para>This border image was specified with
544  * <literallayout>url("gradient1.png") 10 10 10 10 stretch</literallayout>
545  * </para>
546  * </example>
547  * </refsect2>
548  * <refsect2 id="gtkcssprovider-transitions">
549  * <para>Styles can specify transitions that will be used to create a gradual
550  * change in the appearance when a widget state changes. The following
551  * syntax is used to specify transitions:
552  * <literallayout>@duration [s|ms] [linear|ease|ease-in|ease-out|ease-in-out] [loop]?</literallayout>
553  * The @duration is the amount of time that the animation will take for
554  * a complete cycle from start to end. If the loop option is given, the
555  * animation will be repated until the state changes again.
556  * The option after the duration determines the transition function from a
557  * small set of predefined functions.
558  * <figure><title>Linear transition</title>
559  * <graphic fileref="linear.png" format="PNG"/>
560  * </figure>
561  * <figure><title>Ease transition</title>
562  * <graphic fileref="ease.png" format="PNG"/>
563  * </figure>
564  * <figure><title>Ease-in-out transition</title>
565  * <graphic fileref="ease-in-out.png" format="PNG"/>
566  * </figure>
567  * <figure><title>Ease-in transition</title>
568  * <graphic fileref="ease-in.png" format="PNG"/>
569  * </figure>
570  * <figure><title>Ease-out transition</title>
571  * <graphic fileref="ease-out.png" format="PNG"/>
572  * </figure>
573  * </para>
574  * </refsect2>
575  * <refsect2 id="gtkcssprovider-properties">
576  * <title>Supported properties</title>
577  * <para>
578  * Properties are the part that differ the most to common CSS,
579  * not all properties are supported (some are planned to be
580  * supported eventually, some others are meaningless or don't
581  * map intuitively in a widget based environment).
582  * </para>
583  * <para>
584  * There is also a difference in shorthand properties, for
585  * example in common CSS it is fine to define a font through
586  * the different @font-family, @font-style, @font-size
587  * properties, meanwhile in GTK+'s CSS only the canonical
588  * @font property is supported.
589  * </para>
590  * <para>
591  * The currently supported properties are:
592  * </para>
593  * <informaltable>
594  *   <tgroup cols="4">
595  *     <thead>
596  *       <row>
597  *         <entry>Property name</entry>
598  *         <entry>Syntax</entry>
599  *         <entry>Maps to</entry>
600  *         <entry>Examples</entry>
601  *       </row>
602  *     </thead>
603  *     <tbody>
604  *       <row>
605  *         <entry>engine</entry>
606  *         <entry>engine-name</entry>
607  *         <entry>#GtkThemingEngine</entry>
608  *         <entry>engine: clearlooks;
609  *  engine: none; /&ast; use the default (i.e. builtin) engine) &ast;/ </entry>
610  *       </row>
611  *       <row>
612  *         <entry>background-color</entry>
613  *         <entry morerows="2">color (see above)</entry>
614  *         <entry morerows="2">#GdkRGBA</entry>
615  *         <entry morerows="2"><literallayout>background-color: &num;fff;
616  * color: &amp;color1;
617  * background-color: shade (&amp;color1, 0.5);
618  * color: mix (&amp;color1, &num;f0f, 0.8);</literallayout>
619  *         </entry>
620  *       </row>
621  *       <row>
622  *         <entry>color</entry>
623  *       </row>
624  *       <row>
625  *         <entry>border-color</entry>
626  *       </row>
627  *       <row>
628  *         <entry>font</entry>
629  *         <entry>@family [@style] [@size]</entry>
630  *         <entry>#PangoFontDescription</entry>
631  *         <entry>font: Sans 15;</entry>
632  *       </row>
633  *       <row>
634  *         <entry>margin</entry>
635  *         <entry morerows="1"><literallayout>@width
636  * @vertical_width @horizontal_width
637  * @top_width @horizontal_width @bottom_width
638  * @top_width @right_width @bottom_width @left_width</literallayout>
639  *         </entry>
640  *         <entry morerows="1">#GtkBorder</entry>
641  *         <entry morerows="1"><literallayout>margin: 5;
642  * margin: 5 10;
643  * margin: 5 10 3;
644  * margin: 5 10 3 5;</literallayout>
645  *         </entry>
646  *       </row>
647  *       <row>
648  *         <entry>padding</entry>
649  *       </row>
650  *       <row>
651  *         <entry>background-image</entry>
652  *         <entry><literallayout>gradient (see above) or
653  * url(@path)</literallayout></entry>
654  *         <entry>#cairo_pattern_t</entry>
655  *         <entry><literallayout>-gtk-gradient (linear,
656  *                left top, right top,
657  *                from (&num;fff), to (&num;000));
658  * -gtk-gradient (linear, 0.0 0.5, 0.5 1.0,
659  *                from (&num;fff),
660  *                color-stop (0.5, &num;f00),
661  *                to (&num;000));
662  * -gtk-gradient (radial,
663  *                center center, 0.2,
664  *                center center, 0.8,
665  *                color-stop (0.0, &num;fff),
666  *                color-stop (1.0, &num;000));
667  * url ('background.png');</literallayout>
668  *         </entry>
669  *       </row>
670  *       <row>
671  *         <entry>border-width</entry>
672  *         <entry>integer</entry>
673  *         <entry>#gint</entry>
674  *         <entry>border-width: 5;</entry>
675  *       </row>
676  *       <row>
677  *         <entry>border-radius</entry>
678  *         <entry>integer</entry>
679  *         <entry>#gint</entry>
680  *         <entry>border-radius: 5;</entry>
681  *       </row>
682  *       <row>
683  *         <entry>border-style</entry>
684  *         <entry>[none|solid|inset|outset]</entry>
685  *         <entry>#GtkBorderStyle</entry>
686  *         <entry>border-style: solid;</entry>
687  *       </row>
688  *       <row>
689  *         <entry>border-image</entry>
690  *         <entry><literallayout>border image (see above)</literallayout></entry>
691  *         <entry>internal use only</entry>
692  *         <entry><literallayout>border-image: url("/path/to/image.png") 3 4 3 4 stretch;
693  * border-image: url("/path/to/image.png") 3 4 4 3 repeat stretch;</literallayout>
694  *         </entry>
695  *       </row>
696  *       <row>
697  *         <entry>transition</entry>
698  *         <entry>transition (see above)</entry>
699  *         <entry>internal use only</entry>
700  *         <entry><literallayout>transition: 150ms ease-in-out;
701  * transition: 1s linear loop;</literallayout>
702  *         </entry>
703  *       </row>
704  *       <row>
705  *         <entry>gtk-key-bindings</entry>
706  *         <entry>binding set name list</entry>
707  *         <entry>internal use only</entry>
708  *         <entry><literallayout>gtk-bindings: binding1, binding2, ...;</literallayout>
709  *         </entry>
710  *       </row>
711  *     </tbody>
712  *   </tgroup>
713  * </informaltable>
714  * <para>
715  * GtkThemingEngines can register their own, engine-specific style properties
716  * with the function gtk_theming_engine_register_property(). These properties
717  * can be set in CSS like other properties, using a name of the form
718  * <literallayout>-<replaceable>namespace</replaceable>-<replaceable>name</replaceable></literallayout>, where <replaceable>namespace</replaceable> is typically
719  * the name of the theming engine, and <replaceable>name</replaceable> is the
720  * name of the property. Style properties that have been registered by widgets
721  * using gtk_widget_class_install_style_property() can also be set in this
722  * way, using the widget class name for <replaceable>namespace</replaceable>.
723  * </para>
724  * <example>
725  * <title>Using engine-specific style properties</title>
726  * <programlisting>
727  * * {
728  *     engine: clearlooks;
729  *     border-radius: 4;
730  *     -GtkPaned-handle-size: 6;
731  *     -clearlooks-colorize-scrollbar: false;
732  * }
733  * </programlisting>
734  * </example>
735  * </refsect2>
736  */
737
738 typedef struct GtkCssRuleset GtkCssRuleset;
739 typedef struct _GtkCssScanner GtkCssScanner;
740 typedef enum ParserScope ParserScope;
741 typedef enum ParserSymbol ParserSymbol;
742
743 struct GtkCssRuleset
744 {
745   GtkCssSelector *selector;
746   GHashTable *widget_style;
747   GHashTable *style;
748
749   guint has_inherit :1;
750 };
751
752 struct _GtkCssScanner
753 {
754   GtkCssProvider *provider;
755   GtkCssParser *parser;
756   GtkCssScanner *parent;
757   GFile *file;
758   GFile *base;
759   GSList *state;
760   GSList *cur_selectors;
761   GHashTable *cur_properties;
762 };
763
764 struct _GtkCssProviderPrivate
765 {
766   GScanner *scanner;
767
768   GHashTable *symbolic_colors;
769
770   GArray *rulesets;
771 };
772
773 enum ParserScope {
774   SCOPE_SELECTOR,
775   SCOPE_PSEUDO_CLASS,
776   SCOPE_NTH_CHILD,
777   SCOPE_DECLARATION,
778   SCOPE_VALUE,
779   SCOPE_BINDING_SET
780 };
781
782 /* Extend GtkStateType, since these
783  * values are also used as symbols
784  */
785 enum ParserSymbol {
786   /* Scope: pseudo-class */
787   SYMBOL_NTH_CHILD = GTK_STATE_FOCUSED + 1,
788   SYMBOL_FIRST_CHILD,
789   SYMBOL_LAST_CHILD,
790   SYMBOL_SORTED_CHILD,
791
792   /* Scope: nth-child */
793   SYMBOL_NTH_CHILD_EVEN,
794   SYMBOL_NTH_CHILD_ODD,
795   SYMBOL_NTH_CHILD_FIRST,
796   SYMBOL_NTH_CHILD_LAST
797 };
798
799 enum {
800   PARSING_ERROR,
801   LAST_SIGNAL
802 };
803
804 static guint css_provider_signals[LAST_SIGNAL] = { 0 };
805
806 static void gtk_css_provider_finalize (GObject *object);
807 static void gtk_css_style_provider_iface_init (GtkStyleProviderIface *iface);
808
809 static gboolean
810 gtk_css_provider_load_internal (GtkCssProvider *css_provider,
811                                 GtkCssScanner  *scanner,
812                                 GFile          *file,
813                                 const char     *data,
814                                 gsize           length,
815                                 GError        **error);
816
817 GQuark
818 gtk_css_provider_error_quark (void)
819 {
820   return g_quark_from_static_string ("gtk-css-provider-error-quark");
821 }
822
823 G_DEFINE_TYPE_EXTENDED (GtkCssProvider, gtk_css_provider, G_TYPE_OBJECT, 0,
824                         G_IMPLEMENT_INTERFACE (GTK_TYPE_STYLE_PROVIDER,
825                                                gtk_css_style_provider_iface_init));
826
827 static void
828 gtk_css_provider_parsing_error (GtkCssProvider  *provider,
829                                 const gchar     *path,
830                                 guint            line,
831                                 guint            position,
832                                 const GError *   error)
833 {
834   /* Only emit a warning when we have no error handlers. This is our
835    * default handlers. And in this case erroneous CSS files are a bug
836    * and should be fixed.
837    * Note that these warnings can also be triggered by a broken theme
838    * that people installed from some weird location on the internets.
839    */
840   if (!g_signal_has_handler_pending (provider,
841                                      css_provider_signals[PARSING_ERROR],
842                                      0,
843                                      TRUE))
844     {
845       g_warning ("Theme parsing error: %s:%u:%u: %s", path ? path : "<unknown>", line, position, error->message);
846     }
847 }
848
849 static void
850 gtk_css_provider_class_init (GtkCssProviderClass *klass)
851 {
852   GObjectClass *object_class = G_OBJECT_CLASS (klass);
853
854   /**
855    * GtkCssProvider::parsing-error:
856    * @provider: the provider that had a parsing error
857    * @path: path to the parsed file or %NULL if the file cannot be
858    *   identified or the data was not loaded from a file
859    * @line: line in the file or data or 0 if unknown
860    * @position: offset into the current line or 0 if unknown or the
861    *   whole line is affected
862    * @error: The parsing error
863    *
864    * Signals that a parsing error occured. the @path, @line and @position
865    * describe the actual location of the error as accurately as possible.
866    *
867    * Parsing errors are never fatal, so the parsing will resume after
868    * the error. Errors may however cause parts of the given
869    * data or even all of it to not be parsed at all. So it is a useful idea
870    * to check that the parsing succeeds by connecting to this signal.
871    *
872    * Note that this signal may be emitted at any time as the css provider
873    * may opt to defer parsing parts or all of the input to a later time
874    * than when a loading function was called.
875    */
876   css_provider_signals[PARSING_ERROR] =
877     g_signal_new (I_("parsing-error"),
878                   G_TYPE_FROM_CLASS (object_class),
879                   G_SIGNAL_RUN_LAST,
880                   G_STRUCT_OFFSET (GtkCssProviderClass, parsing_error),
881                   NULL, NULL,
882                   _gtk_marshal_VOID__STRING_UINT_UINT_BOXED,
883                   G_TYPE_NONE, 4,
884                   G_TYPE_STRING, G_TYPE_UINT, G_TYPE_UINT, G_TYPE_ERROR);
885
886   object_class->finalize = gtk_css_provider_finalize;
887
888   klass->parsing_error = gtk_css_provider_parsing_error;
889
890   g_type_class_add_private (object_class, sizeof (GtkCssProviderPrivate));
891 }
892
893 static void
894 gtk_css_provider_take_error_full (GtkCssProvider *provider,
895                                   GFile          *file,
896                                   guint           line,
897                                   guint           position,
898                                   GError         *error)
899 {
900   char *filename;
901
902   if (file)
903     filename = g_file_get_path (file);
904   else
905     filename = NULL;
906
907   g_signal_emit (provider, css_provider_signals[PARSING_ERROR], 0,
908                  filename, line, position, error);
909
910   g_free (filename);
911   g_error_free (error);
912 }
913
914 static void
915 gtk_css_ruleset_init_copy (GtkCssRuleset       *new,
916                            const GtkCssRuleset *ruleset,
917                            GtkCssSelector      *selector)
918 {
919   memcpy (new, ruleset, sizeof (GtkCssRuleset));
920
921   new->selector = selector;
922   if (new->widget_style)
923     g_hash_table_ref (new->widget_style);
924   if (new->style)
925     g_hash_table_ref (new->style);
926 }
927
928 static void
929 gtk_css_ruleset_clear (GtkCssRuleset *ruleset)
930 {
931   if (ruleset->style)
932     g_hash_table_unref (ruleset->style);
933   if (ruleset->widget_style)
934     g_hash_table_unref (ruleset->widget_style);
935   if (ruleset->selector)
936     _gtk_css_selector_free (ruleset->selector);
937
938   memset (ruleset, 0, sizeof (GtkCssRuleset));
939 }
940
941 static void
942 property_value_free (GValue *value)
943 {
944   if (G_IS_VALUE (value))
945     g_value_unset (value);
946
947   g_slice_free (GValue, value);
948 }
949
950 static void
951 gtk_css_ruleset_add_style (GtkCssRuleset *ruleset,
952                            char          *name,
953                            GValue        *value)
954 {
955   if (ruleset->widget_style == NULL)
956     ruleset->widget_style = g_hash_table_new_full (g_str_hash,
957                                                    g_str_equal,
958                                                    (GDestroyNotify) g_free,
959                                                    (GDestroyNotify) property_value_free);
960
961   g_hash_table_insert (ruleset->widget_style, name, value);
962 }
963
964 static void
965 gtk_css_ruleset_add (GtkCssRuleset *ruleset,
966                      GParamSpec    *pspec,
967                      GValue        *value)
968 {
969   if (ruleset->style == NULL)
970     ruleset->style = g_hash_table_new_full (g_direct_hash,
971                                             g_direct_equal,
972                                             NULL,
973                                             (GDestroyNotify) property_value_free);
974
975   ruleset->has_inherit |= gtk_style_param_get_inherit (pspec);
976   g_hash_table_insert (ruleset->style, pspec, value);
977 }
978
979 static gboolean
980 gtk_css_ruleset_matches (GtkCssRuleset *ruleset,
981                          GtkWidgetPath *path,
982                          guint          length)
983 {
984   return _gtk_css_selector_matches (ruleset->selector, path, length);
985 }
986
987 static void
988 gtk_css_scanner_reset (GtkCssScanner *scanner)
989 {
990   g_slist_free (scanner->state);
991   scanner->state = NULL;
992
993   g_slist_free_full (scanner->cur_selectors, (GDestroyNotify) _gtk_css_selector_free);
994   scanner->cur_selectors = NULL;
995
996   if (scanner->cur_properties)
997     g_hash_table_unref (scanner->cur_properties);
998
999   scanner ->cur_properties = g_hash_table_new_full (g_str_hash,
1000                                                     g_str_equal,
1001                                                     (GDestroyNotify) g_free,
1002                                                     (GDestroyNotify) property_value_free);
1003 }
1004
1005 static void
1006 gtk_css_scanner_destroy (GtkCssScanner *scanner)
1007 {
1008   gtk_css_scanner_reset (scanner);
1009
1010   g_object_unref (scanner->provider);
1011   if (scanner->file)
1012     g_object_unref (scanner->file);
1013   g_object_unref (scanner->base);
1014   g_hash_table_destroy (scanner->cur_properties);
1015   _gtk_css_parser_free (scanner->parser);
1016
1017   g_slice_free (GtkCssScanner, scanner);
1018 }
1019
1020 static void
1021 gtk_css_scanner_parser_error (GtkCssParser *parser,
1022                               const GError *error,
1023                               gpointer      user_data)
1024 {
1025   GtkCssScanner *scanner = user_data;
1026
1027   gtk_css_provider_take_error_full (scanner->provider,
1028                                     scanner->file,
1029                                     _gtk_css_parser_get_line (scanner->parser),
1030                                     _gtk_css_parser_get_position (scanner->parser),
1031                                     g_error_copy (error));
1032 }
1033
1034 static GtkCssScanner *
1035 gtk_css_scanner_new (GtkCssProvider *provider,
1036                      GtkCssScanner  *parent,
1037                      GFile          *file,
1038                      const gchar    *data,
1039                      gsize           length)
1040 {
1041   GtkCssScanner *scanner;
1042
1043   g_assert (data[length] == 0);
1044
1045   scanner = g_slice_new0 (GtkCssScanner);
1046
1047   g_object_ref (provider);
1048   scanner->provider = provider;
1049   scanner->parent = parent;
1050
1051   if (file)
1052     {
1053       scanner->file = g_object_ref (file);
1054       scanner->base = g_file_get_parent (file);
1055     }
1056   else
1057     {
1058       char *dir = g_get_current_dir ();
1059       scanner->base = g_file_new_for_path (dir);
1060       g_free (dir);
1061     }
1062
1063   scanner->cur_properties = g_hash_table_new_full (g_str_hash,
1064                                                    g_str_equal,
1065                                                    (GDestroyNotify) g_free,
1066                                                    (GDestroyNotify) property_value_free);
1067
1068   scanner->parser = _gtk_css_parser_new (data,
1069                                          gtk_css_scanner_parser_error,
1070                                          scanner);
1071
1072   return scanner;
1073 }
1074
1075 static GFile *
1076 gtk_css_scanner_get_base_url (GtkCssScanner *scanner)
1077 {
1078   return scanner->base;
1079 }
1080
1081 static gboolean
1082 gtk_css_scanner_would_recurse (GtkCssScanner *scanner,
1083                                GFile         *file)
1084 {
1085   while (scanner)
1086     {
1087       if (scanner->file && g_file_equal (scanner->file, file))
1088         return TRUE;
1089
1090       scanner = scanner->parent;
1091     }
1092
1093   return FALSE;
1094 }
1095
1096 static void
1097 gtk_css_provider_init (GtkCssProvider *css_provider)
1098 {
1099   GtkCssProviderPrivate *priv;
1100
1101   priv = css_provider->priv = G_TYPE_INSTANCE_GET_PRIVATE (css_provider,
1102                                                            GTK_TYPE_CSS_PROVIDER,
1103                                                            GtkCssProviderPrivate);
1104
1105   priv->rulesets = g_array_new (FALSE, FALSE, sizeof (GtkCssRuleset));
1106
1107   priv->symbolic_colors = g_hash_table_new_full (g_str_hash, g_str_equal,
1108                                                  (GDestroyNotify) g_free,
1109                                                  (GDestroyNotify) gtk_symbolic_color_unref);
1110 }
1111
1112 static void
1113 css_provider_dump_symbolic_colors (GtkCssProvider     *css_provider,
1114                                    GtkStyleProperties *props)
1115 {
1116   GtkCssProviderPrivate *priv;
1117   GHashTableIter iter;
1118   gpointer key, value;
1119
1120   priv = css_provider->priv;
1121   g_hash_table_iter_init (&iter, priv->symbolic_colors);
1122
1123   while (g_hash_table_iter_next (&iter, &key, &value))
1124     {
1125       const gchar *name;
1126       GtkSymbolicColor *color;
1127
1128       name = key;
1129       color = value;
1130
1131       gtk_style_properties_map_color (props, name, color);
1132     }
1133 }
1134
1135 static GtkStyleProperties *
1136 gtk_css_provider_get_style (GtkStyleProvider *provider,
1137                             GtkWidgetPath    *path)
1138 {
1139   GtkCssProvider *css_provider;
1140   GtkCssProviderPrivate *priv;
1141   GtkStyleProperties *props;
1142   guint i, l, length;
1143
1144   css_provider = GTK_CSS_PROVIDER (provider);
1145   priv = css_provider->priv;
1146   length = gtk_widget_path_length (path);
1147   props = gtk_style_properties_new ();
1148
1149   css_provider_dump_symbolic_colors (css_provider, props);
1150
1151   for (l = 1; l <= length; l++)
1152     {
1153       for (i = 0; i < priv->rulesets->len; i++)
1154         {
1155           GtkCssRuleset *ruleset;
1156           GHashTableIter iter;
1157           gpointer key, value;
1158
1159           ruleset = &g_array_index (priv->rulesets, GtkCssRuleset, i);
1160
1161           if (ruleset->style == NULL)
1162             continue;
1163
1164           if (l < length && (!ruleset->has_inherit || _gtk_css_selector_get_state_flags (ruleset->selector)))
1165             continue;
1166
1167           if (!gtk_css_ruleset_matches (ruleset, path, l))
1168             continue;
1169
1170           g_hash_table_iter_init (&iter, ruleset->style);
1171
1172           while (g_hash_table_iter_next (&iter, &key, &value))
1173             {
1174               GParamSpec *pspec = key;
1175
1176               if (l != length && !gtk_style_param_get_inherit (pspec))
1177                 continue;
1178
1179               _gtk_style_properties_set_property_by_pspec (props,
1180                                                            pspec,
1181                                                            _gtk_css_selector_get_state_flags (ruleset->selector),
1182                                                            value);
1183             }
1184         }
1185     }
1186
1187   return props;
1188 }
1189
1190 static void
1191 gtk_css_provider_parser_error (GtkCssParser *parser,
1192                                const GError *error,
1193                                gpointer      user_data)
1194 {
1195   GtkCssProvider *provider = user_data;
1196
1197   gtk_css_provider_take_error_full (provider,
1198                                     NULL,
1199                                     _gtk_css_parser_get_line (parser),
1200                                     _gtk_css_parser_get_position (parser),
1201                                     g_error_copy (error));
1202 }
1203
1204 static gboolean
1205 gtk_css_provider_get_style_property (GtkStyleProvider *provider,
1206                                      GtkWidgetPath    *path,
1207                                      GtkStateFlags     state,
1208                                      GParamSpec       *pspec,
1209                                      GValue           *value)
1210 {
1211   GtkCssProvider *css_provider = GTK_CSS_PROVIDER (provider);
1212   GtkCssProviderPrivate *priv = css_provider->priv;
1213   const GValue *val;
1214   gboolean found = FALSE;
1215   gchar *prop_name;
1216   gint i;
1217
1218   prop_name = g_strdup_printf ("-%s-%s",
1219                                g_type_name (pspec->owner_type),
1220                                pspec->name);
1221
1222   for (i = priv->rulesets->len - 1; i >= 0; i--)
1223     {
1224       GtkCssRuleset *ruleset;
1225       GtkStateFlags selector_state;
1226
1227       ruleset = &g_array_index (priv->rulesets, GtkCssRuleset, i);
1228
1229       if (ruleset->widget_style == NULL)
1230         continue;
1231
1232       if (!gtk_css_ruleset_matches (ruleset, path, gtk_widget_path_length (path)))
1233         continue;
1234
1235       selector_state = _gtk_css_selector_get_state_flags (ruleset->selector);
1236       val = g_hash_table_lookup (ruleset->widget_style, prop_name);
1237
1238       if (val &&
1239           (selector_state == 0 ||
1240            selector_state == state ||
1241            ((selector_state & state) != 0 &&
1242             (selector_state & ~(state)) == 0)))
1243         {
1244           GtkCssParser *parser;
1245
1246           parser = _gtk_css_parser_new (g_value_get_string (val),
1247                                         gtk_css_provider_parser_error,
1248                                         provider);
1249
1250           found = _gtk_css_value_parse (value,
1251                                         parser,
1252                                         NULL);
1253
1254           _gtk_css_parser_free (parser);
1255
1256           if (found)
1257             break;
1258         }
1259     }
1260
1261   g_free (prop_name);
1262
1263   return found;
1264 }
1265
1266 static void
1267 gtk_css_style_provider_iface_init (GtkStyleProviderIface *iface)
1268 {
1269   iface->get_style = gtk_css_provider_get_style;
1270   iface->get_style_property = gtk_css_provider_get_style_property;
1271 }
1272
1273 static void
1274 gtk_css_provider_finalize (GObject *object)
1275 {
1276   GtkCssProvider *css_provider;
1277   GtkCssProviderPrivate *priv;
1278
1279   css_provider = GTK_CSS_PROVIDER (object);
1280   priv = css_provider->priv;
1281
1282   g_array_free (priv->rulesets, TRUE);
1283
1284   if (priv->symbolic_colors)
1285     g_hash_table_destroy (priv->symbolic_colors);
1286
1287   G_OBJECT_CLASS (gtk_css_provider_parent_class)->finalize (object);
1288 }
1289
1290 /**
1291  * gtk_css_provider_new:
1292  *
1293  * Returns a newly created #GtkCssProvider.
1294  *
1295  * Returns: A new #GtkCssProvider
1296  **/
1297 GtkCssProvider *
1298 gtk_css_provider_new (void)
1299 {
1300   return g_object_new (GTK_TYPE_CSS_PROVIDER, NULL);
1301 }
1302
1303 static void
1304 gtk_css_provider_take_error (GtkCssProvider *provider,
1305                              GtkCssScanner  *scanner,
1306                              GError         *error)
1307 {
1308   gtk_css_provider_take_error_full (provider,
1309                                     scanner->file,
1310                                     _gtk_css_parser_get_line (scanner->parser),
1311                                     _gtk_css_parser_get_position (scanner->parser),
1312                                     error);
1313 }
1314
1315 static void
1316 gtk_css_provider_error_literal (GtkCssProvider *provider,
1317                                 GtkCssScanner  *scanner,
1318                                 GQuark          domain,
1319                                 gint            code,
1320                                 const char     *message)
1321 {
1322   gtk_css_provider_take_error (provider,
1323                                scanner,
1324                                g_error_new_literal (domain, code, message));
1325 }
1326
1327 static void
1328 gtk_css_provider_error (GtkCssProvider *provider,
1329                         GtkCssScanner  *scanner,
1330                         GQuark          domain,
1331                         gint            code,
1332                         const char     *format,
1333                         ...)  G_GNUC_PRINTF (5, 6);
1334 static void
1335 gtk_css_provider_error (GtkCssProvider *provider,
1336                         GtkCssScanner  *scanner,
1337                         GQuark          domain,
1338                         gint            code,
1339                         const char     *format,
1340                         ...)
1341 {
1342   GError *error;
1343   va_list args;
1344
1345   va_start (args, format);
1346   error = g_error_new_valist (domain, code, format, args);
1347   va_end (args);
1348
1349   gtk_css_provider_take_error (provider, scanner, error);
1350 }
1351
1352 static void
1353 gtk_css_provider_invalid_token (GtkCssProvider *provider,
1354                                 GtkCssScanner  *scanner,
1355                                 const char     *expected)
1356 {
1357   gtk_css_provider_error (provider,
1358                           scanner,
1359                           GTK_CSS_PROVIDER_ERROR,
1360                           GTK_CSS_PROVIDER_ERROR_SYNTAX,
1361                           "expected a valid %s", expected);
1362 }
1363
1364 static void 
1365 css_provider_commit (GtkCssProvider *css_provider,
1366                      GSList         *selectors,
1367                      GtkCssRuleset  *ruleset)
1368 {
1369   GtkCssProviderPrivate *priv;
1370   GSList *l;
1371
1372   priv = css_provider->priv;
1373
1374   if (ruleset->style == NULL && ruleset->widget_style == NULL)
1375     {
1376       g_slist_free_full (selectors, (GDestroyNotify) _gtk_css_selector_free);
1377       return;
1378     }
1379
1380   for (l = selectors; l; l = l->next)
1381     {
1382       GtkCssRuleset new;
1383
1384       gtk_css_ruleset_init_copy (&new, ruleset, l->data);
1385
1386       g_array_append_val (priv->rulesets, new);
1387     }
1388
1389   g_slist_free (selectors);
1390 }
1391
1392 static void
1393 gtk_css_provider_reset (GtkCssProvider *css_provider)
1394 {
1395   GtkCssProviderPrivate *priv;
1396   guint i;
1397
1398   priv = css_provider->priv;
1399
1400   for (i = 0; i < priv->rulesets->len; i++)
1401     gtk_css_ruleset_clear (&g_array_index (priv->rulesets, GtkCssRuleset, i));
1402   g_array_set_size (priv->rulesets, 0);
1403 }
1404
1405 static void
1406 gtk_css_provider_propagate_error (GtkCssProvider  *provider,
1407                                   const gchar     *path,
1408                                   guint            line,
1409                                   guint            position,
1410                                   const GError    *error,
1411                                   GError         **propagate_to)
1412 {
1413   /* we already set an error. And we'd like to keep the first one */
1414   if (*propagate_to)
1415     return;
1416
1417   *propagate_to = g_error_copy (error);
1418   g_prefix_error (propagate_to, "%s:%u:%u: ", path ? path : "<unknown>", line, position);
1419 }
1420
1421 static void
1422 parse_import (GtkCssScanner *scanner)
1423 {
1424   GFile *file;
1425   char *uri;
1426
1427   uri = _gtk_css_parser_read_uri (scanner->parser);
1428   if (uri == NULL)
1429     {
1430       _gtk_css_parser_resync (scanner->parser, TRUE, 0);
1431       return;
1432     }
1433
1434   file = g_file_resolve_relative_path (gtk_css_scanner_get_base_url (scanner), uri);
1435   g_free (uri);
1436
1437   if (gtk_css_scanner_would_recurse (scanner, file))
1438     {
1439        char *path = g_file_get_path (file);
1440        gtk_css_provider_error (scanner->provider,
1441                                scanner,
1442                                GTK_CSS_PROVIDER_ERROR,
1443                                GTK_CSS_PROVIDER_ERROR_IMPORT,
1444                                "Loading '%s' would recurse",
1445                                path);
1446        g_free (path);
1447     }
1448   else
1449     {
1450       gtk_css_provider_load_internal (scanner->provider,
1451                                       scanner,
1452                                       file,
1453                                       NULL, 0,
1454                                       NULL);
1455     }
1456
1457   if (!_gtk_css_parser_try (scanner->parser, ";", TRUE))
1458     {
1459       g_object_unref (file);
1460       gtk_css_provider_invalid_token (scanner->provider, scanner, "semicolon");
1461       _gtk_css_parser_resync (scanner->parser, TRUE, 0);
1462       return;
1463     }
1464
1465   g_object_unref (file);
1466 }
1467
1468 static void
1469 parse_color_definition (GtkCssScanner *scanner)
1470 {
1471   GtkSymbolicColor *symbolic;
1472   char *name;
1473
1474   name = _gtk_css_parser_try_name (scanner->parser, TRUE);
1475   if (name == NULL)
1476     {
1477       gtk_css_provider_error_literal (scanner->provider,
1478                                       scanner,
1479                                       GTK_CSS_PROVIDER_ERROR,
1480                                       GTK_CSS_PROVIDER_ERROR_SYNTAX,
1481                                       "Not a valid color name");
1482       _gtk_css_parser_resync (scanner->parser, TRUE, 0);
1483       return;
1484     }
1485
1486   symbolic = _gtk_css_parser_read_symbolic_color (scanner->parser);
1487   if (symbolic == NULL)
1488     {
1489       g_free (name);
1490       _gtk_css_parser_resync (scanner->parser, TRUE, 0);
1491       return;
1492     }
1493
1494   if (!_gtk_css_parser_try (scanner->parser, ";", TRUE))
1495     {
1496       g_free (name);
1497       gtk_symbolic_color_unref (symbolic);
1498       gtk_css_provider_error_literal (scanner->provider,
1499                                       scanner,
1500                                       GTK_CSS_PROVIDER_ERROR,
1501                                       GTK_CSS_PROVIDER_ERROR_SYNTAX,
1502                                       "Missing semicolon at end of color definition");
1503       _gtk_css_parser_resync (scanner->parser, TRUE, 0);
1504       return;
1505     }
1506
1507   g_hash_table_insert (scanner->provider->priv->symbolic_colors, name, symbolic);
1508 }
1509
1510 static void
1511 parse_binding_set (GtkCssScanner *scanner)
1512 {
1513   GtkBindingSet *binding_set;
1514   char *name;
1515
1516   name = _gtk_css_parser_try_ident (scanner->parser, TRUE);
1517   if (name == NULL)
1518     {
1519       gtk_css_provider_error_literal (scanner->provider,
1520                                       scanner,
1521                                       GTK_CSS_PROVIDER_ERROR,
1522                                       GTK_CSS_PROVIDER_ERROR_SYNTAX,
1523                                       "Expected name for binding set");
1524       _gtk_css_parser_resync (scanner->parser, TRUE, 0);
1525       goto skip_semicolon;
1526     }
1527
1528   binding_set = gtk_binding_set_find (name);
1529   if (!binding_set)
1530     {
1531       binding_set = gtk_binding_set_new (name);
1532       binding_set->parsed = TRUE;
1533     }
1534   g_free (name);
1535
1536   if (!_gtk_css_parser_try (scanner->parser, "{", TRUE))
1537     {
1538       gtk_css_provider_error_literal (scanner->provider,
1539                                       scanner,
1540                                       GTK_CSS_PROVIDER_ERROR,
1541                                       GTK_CSS_PROVIDER_ERROR_SYNTAX,
1542                                       "Expected '{' for binding set");
1543       _gtk_css_parser_resync (scanner->parser, TRUE, 0);
1544       goto skip_semicolon;
1545     }
1546
1547   while (!_gtk_css_parser_is_eof (scanner->parser) &&
1548          !_gtk_css_parser_begins_with (scanner->parser, '}'))
1549     {
1550       name = _gtk_css_parser_read_value (scanner->parser);
1551       if (name == NULL)
1552         {
1553           _gtk_css_parser_resync (scanner->parser, TRUE, '}');
1554           continue;
1555         }
1556
1557       gtk_binding_entry_add_signal_from_string (binding_set, name);
1558       g_free (name);
1559
1560       if (!_gtk_css_parser_try (scanner->parser, ";", TRUE))
1561         {
1562           if (!_gtk_css_parser_begins_with (scanner->parser, '}') &&
1563               !_gtk_css_parser_is_eof (scanner->parser))
1564             {
1565               gtk_css_provider_error_literal (scanner->provider,
1566                                               scanner,
1567                                               GTK_CSS_PROVIDER_ERROR,
1568                                               GTK_CSS_PROVIDER_ERROR_SYNTAX,
1569                                               "Expected semicolon");
1570               _gtk_css_parser_resync (scanner->parser, TRUE, '}');
1571             }
1572         }
1573     }
1574
1575   if (!_gtk_css_parser_try (scanner->parser, "}", TRUE))
1576     {
1577       gtk_css_provider_error_literal (scanner->provider,
1578                                       scanner,
1579                                       GTK_CSS_PROVIDER_ERROR,
1580                                       GTK_CSS_PROVIDER_ERROR_SYNTAX,
1581                                       "expected '}' after declarations");
1582       if (!_gtk_css_parser_is_eof (scanner->parser))
1583         _gtk_css_parser_resync (scanner->parser, FALSE, 0);
1584     }
1585
1586 skip_semicolon:
1587   if (_gtk_css_parser_try (scanner->parser, ";", TRUE))
1588     gtk_css_provider_error_literal (scanner->provider,
1589                                     scanner,
1590                                     GTK_CSS_PROVIDER_ERROR,
1591                                     GTK_CSS_PROVIDER_ERROR_DEPRECATED,
1592                                     "Nonstandard semicolon at end of binding set");
1593 }
1594
1595 static void
1596 parse_at_keyword (GtkCssScanner *scanner)
1597 {
1598   if (_gtk_css_parser_try (scanner->parser, "@import", TRUE))
1599     parse_import (scanner);
1600   else if (_gtk_css_parser_try (scanner->parser, "@define-color", TRUE))
1601     parse_color_definition (scanner);
1602   else if (_gtk_css_parser_try (scanner->parser, "@binding-set", TRUE))
1603     parse_binding_set (scanner);
1604   else
1605     {
1606       gtk_css_provider_error_literal (scanner->provider,
1607                                       scanner,
1608                                       GTK_CSS_PROVIDER_ERROR,
1609                                       GTK_CSS_PROVIDER_ERROR_SYNTAX,
1610                                       "unknown @ rule");
1611       _gtk_css_parser_resync (scanner->parser, TRUE, 0);
1612     }
1613 }
1614
1615 static gboolean
1616 parse_selector_class (GtkCssScanner *scanner, GArray *classes)
1617 {
1618   GQuark qname;
1619   char *name;
1620     
1621   name = _gtk_css_parser_try_name (scanner->parser, FALSE);
1622
1623   if (name == NULL)
1624     {
1625       gtk_css_provider_error_literal (scanner->provider,
1626                                       scanner,
1627                                       GTK_CSS_PROVIDER_ERROR,
1628                                       GTK_CSS_PROVIDER_ERROR_SYNTAX,
1629                                       "Expected a valid name for class");
1630       return FALSE;
1631     }
1632
1633   qname = g_quark_from_string (name);
1634   g_array_append_val (classes, qname);
1635   g_free (name);
1636   return TRUE;
1637 }
1638
1639 static gboolean
1640 parse_selector_name (GtkCssScanner *scanner, GArray *names)
1641 {
1642   GQuark qname;
1643   char *name;
1644     
1645   name = _gtk_css_parser_try_name (scanner->parser, FALSE);
1646
1647   if (name == NULL)
1648     {
1649       gtk_css_provider_error_literal (scanner->provider,
1650                                       scanner,
1651                                       GTK_CSS_PROVIDER_ERROR,
1652                                       GTK_CSS_PROVIDER_ERROR_SYNTAX,
1653                                       "Expected a valid name for id");
1654       return FALSE;
1655     }
1656
1657   qname = g_quark_from_string (name);
1658   g_array_append_val (names, qname);
1659   g_free (name);
1660   return TRUE;
1661 }
1662
1663 static gboolean
1664 parse_selector_pseudo_class (GtkCssScanner  *scanner,
1665                              GtkRegionFlags *region_to_modify,
1666                              GtkStateFlags  *state_to_modify)
1667 {
1668   struct {
1669     const char *name;
1670     GtkRegionFlags region_flag;
1671     GtkStateFlags state_flag;
1672   } pseudo_classes[] = {
1673     { "first",        GTK_REGION_FIRST, 0 },
1674     { "last",         GTK_REGION_LAST, 0 },
1675     { "sorted",       GTK_REGION_SORTED, 0 },
1676     { "active",       0, GTK_STATE_FLAG_ACTIVE },
1677     { "prelight",     0, GTK_STATE_FLAG_PRELIGHT },
1678     { "hover",        0, GTK_STATE_FLAG_PRELIGHT },
1679     { "selected",     0, GTK_STATE_FLAG_SELECTED },
1680     { "insensitive",  0, GTK_STATE_FLAG_INSENSITIVE },
1681     { "inconsistent", 0, GTK_STATE_FLAG_INCONSISTENT },
1682     { "focused",      0, GTK_STATE_FLAG_FOCUSED },
1683     { "focus",        0, GTK_STATE_FLAG_FOCUSED },
1684     { NULL, }
1685   }, nth_child_classes[] = {
1686     { "first",        GTK_REGION_FIRST, 0 },
1687     { "last",         GTK_REGION_LAST, 0 },
1688     { "even",         GTK_REGION_EVEN, 0 },
1689     { "odd",          GTK_REGION_ODD, 0 },
1690     { NULL, }
1691   }, *classes;
1692   guint i;
1693   char *name;
1694
1695   name = _gtk_css_parser_try_ident (scanner->parser, FALSE);
1696   if (name == NULL)
1697     {
1698       gtk_css_provider_error_literal (scanner->provider,
1699                                       scanner,
1700                                       GTK_CSS_PROVIDER_ERROR,
1701                                       GTK_CSS_PROVIDER_ERROR_SYNTAX,
1702                                       "Missing name of pseudo-class");
1703       return FALSE;
1704     }
1705
1706   if (_gtk_css_parser_try (scanner->parser, "(", TRUE))
1707     {
1708       char *function = name;
1709
1710       name = _gtk_css_parser_try_ident (scanner->parser, TRUE);
1711       if (!_gtk_css_parser_try (scanner->parser, ")", FALSE))
1712         {
1713           gtk_css_provider_error_literal (scanner->provider,
1714                                           scanner,
1715                                           GTK_CSS_PROVIDER_ERROR,
1716                                           GTK_CSS_PROVIDER_ERROR_SYNTAX,
1717                                           "Missing closing bracket for pseudo-class");
1718           return FALSE;
1719         }
1720
1721       if (g_ascii_strcasecmp (function, "nth-child") != 0)
1722         {
1723           gtk_css_provider_error (scanner->provider,
1724                                   scanner,
1725                                   GTK_CSS_PROVIDER_ERROR,
1726                                   GTK_CSS_PROVIDER_ERROR_UNKNOWN_VALUE,
1727                                   "Unknown pseudo-class '%s(%s)'", function, name ? name : "");
1728           g_free (function);
1729           g_free (name);
1730           return FALSE;
1731         }
1732       
1733       g_free (function);
1734     
1735       if (name == NULL)
1736         {
1737           gtk_css_provider_error (scanner->provider,
1738                                   scanner,
1739                                   GTK_CSS_PROVIDER_ERROR,
1740                                   GTK_CSS_PROVIDER_ERROR_UNKNOWN_VALUE,
1741                                   "nth-child() requires an argument");
1742           return FALSE;
1743         }
1744
1745       classes = nth_child_classes;
1746     }
1747   else
1748     classes = pseudo_classes;
1749
1750   for (i = 0; classes[i].name != NULL; i++)
1751     {
1752       if (g_ascii_strcasecmp (name, classes[i].name) == 0)
1753         {
1754           if ((*region_to_modify & classes[i].region_flag) ||
1755               (*state_to_modify & classes[i].state_flag))
1756             {
1757               if (classes == nth_child_classes)
1758                 gtk_css_provider_error (scanner->provider,
1759                                         scanner,
1760                                         GTK_CSS_PROVIDER_ERROR,
1761                                         GTK_CSS_PROVIDER_ERROR_SYNTAX,
1762                                         "Duplicate pseudo-class 'nth-child(%s)'", name);
1763               else
1764                 gtk_css_provider_error (scanner->provider,
1765                                         scanner,
1766                                         GTK_CSS_PROVIDER_ERROR,
1767                                         GTK_CSS_PROVIDER_ERROR_SYNTAX,
1768                                         "Duplicate pseudo-class '%s'", name);
1769             }
1770           *region_to_modify |= classes[i].region_flag;
1771           *state_to_modify |= classes[i].state_flag;
1772
1773           g_free (name);
1774           return TRUE;
1775         }
1776     }
1777
1778   if (classes == nth_child_classes)
1779     gtk_css_provider_error (scanner->provider,
1780                             scanner,
1781                             GTK_CSS_PROVIDER_ERROR,
1782                             GTK_CSS_PROVIDER_ERROR_UNKNOWN_VALUE,
1783                             "Unknown pseudo-class 'nth-child(%s)'", name);
1784   else
1785     gtk_css_provider_error (scanner->provider,
1786                             scanner,
1787                             GTK_CSS_PROVIDER_ERROR,
1788                             GTK_CSS_PROVIDER_ERROR_UNKNOWN_VALUE,
1789                             "Unknown pseudo-class '%s'", name);
1790   g_free (name);
1791   return FALSE;
1792 }
1793
1794 static gboolean
1795 parse_simple_selector (GtkCssScanner *scanner,
1796                        char **name,
1797                        GArray *ids,
1798                        GArray *classes,
1799                        GtkRegionFlags *pseudo_classes,
1800                        GtkStateFlags *state)
1801 {
1802   gboolean parsed_something;
1803   
1804   *name = _gtk_css_parser_try_ident (scanner->parser, FALSE);
1805   if (*name)
1806     parsed_something = TRUE;
1807   else
1808     parsed_something = _gtk_css_parser_try (scanner->parser, "*", FALSE);
1809
1810   do {
1811       if (_gtk_css_parser_try (scanner->parser, "#", FALSE))
1812         {
1813           if (!parse_selector_name (scanner, ids))
1814             return FALSE;
1815         }
1816       else if (_gtk_css_parser_try (scanner->parser, ".", FALSE))
1817         {
1818           if (!parse_selector_class (scanner, classes))
1819             return FALSE;
1820         }
1821       else if (_gtk_css_parser_try (scanner->parser, ":", FALSE))
1822         {
1823           if (!parse_selector_pseudo_class (scanner, pseudo_classes, state))
1824             return FALSE;
1825         }
1826       else if (!parsed_something)
1827         {
1828           gtk_css_provider_error_literal (scanner->provider,
1829                                           scanner,
1830                                           GTK_CSS_PROVIDER_ERROR,
1831                                           GTK_CSS_PROVIDER_ERROR_SYNTAX,
1832                                           "Expected a valid selector");
1833           return FALSE;
1834         }
1835       else
1836         break;
1837
1838       parsed_something = TRUE;
1839     }
1840   while (!_gtk_css_parser_is_eof (scanner->parser));
1841
1842   _gtk_css_parser_skip_whitespace (scanner->parser);
1843   return TRUE;
1844 }
1845
1846 static GtkCssSelector *
1847 parse_selector (GtkCssScanner *scanner)
1848 {
1849   GtkCssSelector *selector = NULL;
1850
1851   do {
1852       char *name = NULL;
1853       GArray *ids = g_array_new (TRUE, FALSE, sizeof (GQuark));
1854       GArray *classes = g_array_new (TRUE, FALSE, sizeof (GQuark));
1855       GtkRegionFlags pseudo_classes = 0;
1856       GtkStateFlags state = 0;
1857       GtkCssCombinator combine = GTK_CSS_COMBINE_DESCANDANT;
1858
1859       if (selector)
1860         {
1861           if (_gtk_css_parser_try (scanner->parser, ">", TRUE))
1862             combine = GTK_CSS_COMBINE_CHILD;
1863         }
1864
1865       if (!parse_simple_selector (scanner, &name, ids, classes, &pseudo_classes, &state))
1866         {
1867           g_array_free (ids, TRUE);
1868           g_array_free (classes, TRUE);
1869           if (selector)
1870             _gtk_css_selector_free (selector);
1871           return NULL;
1872         }
1873
1874       selector = _gtk_css_selector_new (selector,
1875                                         combine,
1876                                         name,
1877                                         (GQuark *) g_array_free (ids, ids->len == 0),
1878                                         (GQuark *) g_array_free (classes, classes->len == 0),
1879                                         pseudo_classes,
1880                                         state);
1881       g_free (name);
1882     }
1883   while (!_gtk_css_parser_is_eof (scanner->parser) &&
1884          !_gtk_css_parser_begins_with (scanner->parser, ',') &&
1885          !_gtk_css_parser_begins_with (scanner->parser, '{'));
1886
1887   return selector;
1888 }
1889
1890 static GSList *
1891 parse_selector_list (GtkCssScanner *scanner)
1892 {
1893   GSList *selectors = NULL;
1894
1895   do {
1896       GtkCssSelector *select = parse_selector (scanner);
1897
1898       if (select == NULL)
1899         {
1900           g_slist_free_full (selectors, (GDestroyNotify) _gtk_css_selector_free);
1901           _gtk_css_parser_resync (scanner->parser, FALSE, 0);
1902           return NULL;
1903         }
1904
1905       selectors = g_slist_prepend (selectors, select);
1906     }
1907   while (_gtk_css_parser_try (scanner->parser, ",", TRUE));
1908
1909   return selectors;
1910 }
1911
1912 static void
1913 parse_declaration (GtkCssScanner *scanner,
1914                    GtkCssRuleset *ruleset)
1915 {
1916   GtkStylePropertyParser parse_func = NULL;
1917   GParamSpec *pspec = NULL;
1918   char *name;
1919
1920   name = _gtk_css_parser_try_ident (scanner->parser, TRUE);
1921   if (name == NULL)
1922     goto check_for_semicolon;
1923
1924   if (!gtk_style_properties_lookup_property (name, &parse_func, &pspec) &&
1925       name[0] != '-')
1926     {
1927       gtk_css_provider_error (scanner->provider,
1928                               scanner,
1929                               GTK_CSS_PROVIDER_ERROR,
1930                               GTK_CSS_PROVIDER_ERROR_NAME,
1931                               "'%s' is not a valid property name",
1932                               name);
1933       _gtk_css_parser_resync (scanner->parser, TRUE, '}');
1934       g_free (name);
1935       return;
1936     }
1937
1938   if (!_gtk_css_parser_try (scanner->parser, ":", TRUE))
1939     {
1940       gtk_css_provider_invalid_token (scanner->provider, scanner, "':'");
1941       _gtk_css_parser_resync (scanner->parser, TRUE, '}');
1942       g_free (name);
1943       return;
1944     }
1945
1946   if (pspec)
1947     {
1948       GValue *val;
1949
1950       g_free (name);
1951
1952       val = g_slice_new0 (GValue);
1953       g_value_init (val, pspec->value_type);
1954
1955       if (_gtk_css_parser_try (scanner->parser, "none", TRUE))
1956         {
1957           /* Insert the default value, so it has an opportunity
1958            * to override other style providers when merged
1959            */
1960           g_param_value_set_default (pspec, val);
1961           gtk_css_ruleset_add (ruleset, pspec, val);
1962         }
1963       else if (parse_func)
1964         {
1965           GError *error = NULL;
1966           char *value_str;
1967           
1968           value_str = _gtk_css_parser_read_value (scanner->parser);
1969           if (value_str == NULL)
1970             {
1971               _gtk_css_parser_resync (scanner->parser, TRUE, '}');
1972               return;
1973             }
1974           
1975           if ((*parse_func) (value_str, val, &error))
1976             gtk_css_ruleset_add (ruleset, pspec, val);
1977           else
1978             gtk_css_provider_take_error (scanner->provider, scanner, error);
1979
1980           g_free (value_str);
1981         }
1982       else
1983         {
1984           if (_gtk_css_value_parse (val,
1985                                     scanner->parser,
1986                                     gtk_css_scanner_get_base_url (scanner)))
1987             {
1988               if (_gtk_css_parser_begins_with (scanner->parser, ';') ||
1989                   _gtk_css_parser_begins_with (scanner->parser, '}') ||
1990                   _gtk_css_parser_is_eof (scanner->parser))
1991                 {
1992                   gtk_css_ruleset_add (ruleset, pspec, val);
1993                 }
1994               else
1995                 {
1996                   gtk_css_provider_error_literal (scanner->provider,
1997                                                   scanner,
1998                                                   GTK_CSS_PROVIDER_ERROR,
1999                                                   GTK_CSS_PROVIDER_ERROR_SYNTAX,
2000                                                   "Junk at end of value");
2001                   _gtk_css_parser_resync (scanner->parser, TRUE, '}');
2002                   g_value_unset (val);
2003                   g_slice_free (GValue, val);
2004                   return;
2005                 }
2006             }
2007           else
2008             {
2009               g_value_unset (val);
2010               g_slice_free (GValue, val);
2011               _gtk_css_parser_resync (scanner->parser, TRUE, '}');
2012               return;
2013             }
2014         }
2015     }
2016   else if (name[0] == '-')
2017     {
2018       char *value_str;
2019
2020       value_str = _gtk_css_parser_read_value (scanner->parser);
2021       if (value_str)
2022         {
2023           GValue *val;
2024
2025           val = g_slice_new0 (GValue);
2026           g_value_init (val, G_TYPE_STRING);
2027           g_value_take_string (val, value_str);
2028
2029           gtk_css_ruleset_add_style (ruleset, name, val);
2030         }
2031       else
2032         {
2033           _gtk_css_parser_resync (scanner->parser, TRUE, '}');
2034           return;
2035         }
2036     }
2037   else
2038     g_free (name);
2039
2040 check_for_semicolon:
2041   if (!_gtk_css_parser_try (scanner->parser, ";", TRUE))
2042     {
2043       if (!_gtk_css_parser_begins_with (scanner->parser, '}') &&
2044           !_gtk_css_parser_is_eof (scanner->parser))
2045         {
2046           gtk_css_provider_error_literal (scanner->provider,
2047                                           scanner,
2048                                           GTK_CSS_PROVIDER_ERROR,
2049                                           GTK_CSS_PROVIDER_ERROR_SYNTAX,
2050                                           "Expected semicolon");
2051           _gtk_css_parser_resync (scanner->parser, TRUE, '}');
2052         }
2053     }
2054 }
2055
2056 static void
2057 parse_declarations (GtkCssScanner *scanner,
2058                     GtkCssRuleset *ruleset)
2059 {
2060   while (!_gtk_css_parser_is_eof (scanner->parser) &&
2061          !_gtk_css_parser_begins_with (scanner->parser, '}'))
2062     {
2063       parse_declaration (scanner, ruleset);
2064     }
2065 }
2066
2067 static void
2068 parse_ruleset (GtkCssScanner *scanner)
2069 {
2070   GSList *selectors;
2071   GtkCssRuleset ruleset = { 0, };
2072
2073   selectors = parse_selector_list (scanner);
2074   if (selectors == NULL)
2075     return;
2076
2077   if (!_gtk_css_parser_try (scanner->parser, "{", TRUE))
2078     {
2079       gtk_css_provider_error_literal (scanner->provider,
2080                                       scanner,
2081                                       GTK_CSS_PROVIDER_ERROR,
2082                                       GTK_CSS_PROVIDER_ERROR_SYNTAX,
2083                                       "expected '{' after selectors");
2084       _gtk_css_parser_resync (scanner->parser, FALSE, 0);
2085       g_slist_free_full (selectors, (GDestroyNotify) _gtk_css_selector_free);
2086       return;
2087     }
2088
2089   parse_declarations (scanner, &ruleset);
2090
2091   if (!_gtk_css_parser_try (scanner->parser, "}", TRUE))
2092     {
2093       gtk_css_provider_error_literal (scanner->provider,
2094                                       scanner,
2095                                       GTK_CSS_PROVIDER_ERROR,
2096                                       GTK_CSS_PROVIDER_ERROR_SYNTAX,
2097                                       "expected '}' after declarations");
2098       if (!_gtk_css_parser_is_eof (scanner->parser))
2099         {
2100           _gtk_css_parser_resync (scanner->parser, FALSE, 0);
2101           g_slist_free_full (selectors, (GDestroyNotify) _gtk_css_selector_free);
2102           gtk_css_ruleset_clear (&ruleset);
2103           return;
2104         }
2105     }
2106
2107   css_provider_commit (scanner->provider, selectors, &ruleset);
2108   gtk_css_ruleset_clear (&ruleset);
2109 }
2110
2111 static void
2112 parse_statement (GtkCssScanner *scanner)
2113 {
2114   if (_gtk_css_parser_begins_with (scanner->parser, '@'))
2115     parse_at_keyword (scanner);
2116   else
2117     parse_ruleset (scanner);
2118 }
2119
2120 static void
2121 parse_stylesheet (GtkCssScanner *scanner)
2122 {
2123   _gtk_css_parser_skip_whitespace (scanner->parser);
2124
2125   while (!_gtk_css_parser_is_eof (scanner->parser))
2126     {
2127       if (_gtk_css_parser_try (scanner->parser, "<!--", TRUE) ||
2128           _gtk_css_parser_try (scanner->parser, "-->", TRUE))
2129         continue;
2130
2131       parse_statement (scanner);
2132     }
2133 }
2134
2135 static int
2136 gtk_css_provider_compare_rule (gconstpointer a_,
2137                                gconstpointer b_)
2138 {
2139   const GtkCssRuleset *a = (const GtkCssRuleset *) a_;
2140   const GtkCssRuleset *b = (const GtkCssRuleset *) b_;
2141   int compare;
2142
2143   compare = _gtk_css_selector_compare (a->selector, b->selector);
2144   if (compare != 0)
2145     return compare;
2146
2147   /* compare pointers in array to ensure a stable sort */
2148   if (a_ < b_)
2149     return -1;
2150
2151   if (a_ > b_)
2152     return 1;
2153
2154   return 0;
2155 }
2156
2157 static void
2158 gtk_css_provider_postprocess (GtkCssProvider *css_provider)
2159 {
2160   GtkCssProviderPrivate *priv = css_provider->priv;
2161
2162   g_array_sort (priv->rulesets, gtk_css_provider_compare_rule);
2163 }
2164
2165 static gboolean
2166 gtk_css_provider_load_internal (GtkCssProvider *css_provider,
2167                                 GtkCssScanner  *parent,
2168                                 GFile          *file,
2169                                 const char     *data,
2170                                 gsize           length,
2171                                 GError        **error)
2172 {
2173   GtkCssScanner *scanner;
2174   gulong error_handler;
2175   char *free_data;
2176
2177   if (error)
2178     error_handler = g_signal_connect (css_provider,
2179                                       "parsing-error",
2180                                       G_CALLBACK (gtk_css_provider_propagate_error),
2181                                       error);
2182   else
2183     error_handler = 0; /* silence gcc */
2184
2185   if (data == NULL)
2186     {
2187       GError *load_error = NULL;
2188
2189       if (g_file_load_contents (file, NULL,
2190                                 &free_data, &length,
2191                                 NULL, &load_error))
2192         {
2193           data = free_data;
2194         }
2195       else
2196         {
2197           if (parent)
2198             {
2199               gtk_css_provider_error (css_provider,
2200                                       parent,
2201                                       GTK_CSS_PROVIDER_ERROR,
2202                                       GTK_CSS_PROVIDER_ERROR_IMPORT,
2203                                       "Failed to import: %s",
2204                                       load_error->message);
2205               g_error_free (load_error);
2206             }
2207           else
2208             {
2209               gtk_css_provider_take_error_full (css_provider,
2210                                                 file,
2211                                                 0, 0,
2212                                                 load_error);
2213             }
2214         }
2215     }
2216   else
2217     free_data = NULL;
2218
2219   if (data)
2220     {
2221       scanner = gtk_css_scanner_new (css_provider, parent, file, data, length);
2222
2223       parse_stylesheet (scanner);
2224
2225       gtk_css_scanner_destroy (scanner);
2226
2227       if (parent == NULL)
2228         gtk_css_provider_postprocess (css_provider);
2229     }
2230
2231   if (error)
2232     {
2233       g_signal_handler_disconnect (css_provider, error_handler);
2234       
2235       if (*error)
2236         {
2237           /* We clear all contents from the provider for backwards compat reasons */
2238           gtk_css_provider_reset (css_provider);
2239           return FALSE;
2240         }
2241     }
2242
2243   return TRUE;
2244 }
2245
2246 /**
2247  * gtk_css_provider_load_from_data:
2248  * @css_provider: a #GtkCssProvider
2249  * @data: CSS data loaded in memory
2250  * @length: the length of @data in bytes, or -1 for NUL terminated strings
2251  * @error: (out) (allow-none): return location for a #GError, or %NULL
2252  *
2253  * Loads @data into @css_provider, making it clear any previously loaded
2254  * information.
2255  *
2256  * Returns: %TRUE if the data could be loaded.
2257  **/
2258 gboolean
2259 gtk_css_provider_load_from_data (GtkCssProvider  *css_provider,
2260                                  const gchar     *data,
2261                                  gssize           length,
2262                                  GError         **error)
2263 {
2264   g_return_val_if_fail (GTK_IS_CSS_PROVIDER (css_provider), FALSE);
2265   g_return_val_if_fail (data != NULL, FALSE);
2266
2267   if (length < 0)
2268     length = strlen (data);
2269
2270   gtk_css_provider_reset (css_provider);
2271
2272   return gtk_css_provider_load_internal (css_provider, NULL, NULL, data, length, error);
2273 }
2274
2275 /**
2276  * gtk_css_provider_load_from_file:
2277  * @css_provider: a #GtkCssProvider
2278  * @file: #GFile pointing to a file to load
2279  * @error: (out) (allow-none): return location for a #GError, or %NULL
2280  *
2281  * Loads the data contained in @file into @css_provider, making it
2282  * clear any previously loaded information.
2283  *
2284  * Returns: %TRUE if the data could be loaded.
2285  **/
2286 gboolean
2287 gtk_css_provider_load_from_file (GtkCssProvider  *css_provider,
2288                                  GFile           *file,
2289                                  GError         **error)
2290 {
2291   g_return_val_if_fail (GTK_IS_CSS_PROVIDER (css_provider), FALSE);
2292   g_return_val_if_fail (G_IS_FILE (file), FALSE);
2293
2294   gtk_css_provider_reset (css_provider);
2295
2296   return gtk_css_provider_load_internal (css_provider, NULL, file, NULL, 0, error);
2297 }
2298
2299 /**
2300  * gtk_css_provider_load_from_path:
2301  * @css_provider: a #GtkCssProvider
2302  * @path: the path of a filename to load, in the GLib filename encoding
2303  * @error: (out) (allow-none): return location for a #GError, or %NULL
2304  *
2305  * Loads the data contained in @path into @css_provider, making it clear
2306  * any previously loaded information.
2307  *
2308  * Returns: %TRUE if the data could be loaded.
2309  **/
2310 gboolean
2311 gtk_css_provider_load_from_path (GtkCssProvider  *css_provider,
2312                                  const gchar     *path,
2313                                  GError         **error)
2314 {
2315   GFile *file;
2316   gboolean result;
2317
2318   g_return_val_if_fail (GTK_IS_CSS_PROVIDER (css_provider), FALSE);
2319   g_return_val_if_fail (path != NULL, FALSE);
2320
2321   file = g_file_new_for_path (path);
2322   
2323   result = gtk_css_provider_load_from_file (css_provider, file, error);
2324
2325   g_object_unref (file);
2326
2327   return result;
2328 }
2329
2330 /**
2331  * gtk_css_provider_get_default:
2332  *
2333  * Returns the provider containing the style settings used as a
2334  * fallback for all widgets.
2335  *
2336  * Returns: (transfer none): The provider used for fallback styling.
2337  *          This memory is owned by GTK+, and you must not free it.
2338  **/
2339 GtkCssProvider *
2340 gtk_css_provider_get_default (void)
2341 {
2342   static GtkCssProvider *provider;
2343
2344   if (G_UNLIKELY (!provider))
2345     {
2346       const gchar *str =
2347         "@define-color fg_color #000; \n"
2348         "@define-color bg_color #dcdad5; \n"
2349         "@define-color text_color #000; \n"
2350         "@define-color base_color #fff; \n"
2351         "@define-color selected_bg_color #4b6983; \n"
2352         "@define-color selected_fg_color #fff; \n"
2353         "@define-color tooltip_bg_color #eee1b3; \n"
2354         "@define-color tooltip_fg_color #000; \n"
2355         "@define-color placeholder_text_color #808080; \n"
2356         "\n"
2357         "@define-color info_fg_color rgb (181, 171, 156);\n"
2358         "@define-color info_bg_color rgb (252, 252, 189);\n"
2359         "@define-color warning_fg_color rgb (173, 120, 41);\n"
2360         "@define-color warning_bg_color rgb (250, 173, 61);\n"
2361         "@define-color question_fg_color rgb (97, 122, 214);\n"
2362         "@define-color question_bg_color rgb (138, 173, 212);\n"
2363         "@define-color error_fg_color rgb (166, 38, 38);\n"
2364         "@define-color error_bg_color rgb (237, 54, 54);\n"
2365         "\n"
2366         "* {\n"
2367         "  background-color: @bg_color;\n"
2368         "  color: @fg_color;\n"
2369         "  border-color: shade (@bg_color, 0.6);\n"
2370         "  padding: 2;\n"
2371         "  border-width: 0;\n"
2372         "}\n"
2373         "\n"
2374         "*:prelight {\n"
2375         "  background-color: shade (@bg_color, 1.05);\n"
2376         "  color: shade (@fg_color, 1.3);\n"
2377         "}\n"
2378         "\n"
2379         "*:selected {\n"
2380         "  background-color: @selected_bg_color;\n"
2381         "  color: @selected_fg_color;\n"
2382         "}\n"
2383         "\n"
2384         ".expander, GtkTreeView.view.expander {\n"
2385         "  color: #fff;\n"
2386         "}\n"
2387         "\n"
2388         ".expander:prelight,\n"
2389         "GtkTreeView.view.expander:selected:prelight {\n"
2390         "  color: @text_color;\n"
2391         "}\n"
2392         "\n"
2393         ".expander:active {\n"
2394         "  transition: 200ms linear;\n"
2395         "}\n"
2396         "\n"
2397         "*:insensitive {\n"
2398         "  border-color: shade (@bg_color, 0.7);\n"
2399         "  background-color: shade (@bg_color, 0.9);\n"
2400         "  color: shade (@bg_color, 0.7);\n"
2401         "}\n"
2402         "\n"
2403         ".view {\n"
2404         "  border-width: 0;\n"
2405         "  border-radius: 0;\n"
2406         "  background-color: @base_color;\n"
2407         "  color: @text_color;\n"
2408         "}\n"
2409         ".view:selected {\n"
2410         "  background-color: shade (@bg_color, 0.9);\n"
2411         "  color: @fg_color;\n"
2412         "}\n"
2413         "\n"
2414         ".view:selected:focused {\n"
2415         "  background-color: @selected_bg_color;\n"
2416         "  color: @selected_fg_color;\n"
2417         "}\n"
2418         "\n"
2419         ".view column:sorted row,\n"
2420         ".view column:sorted row:prelight {\n"
2421         "  background-color: shade (@bg_color, 0.85);\n"
2422         "}\n"
2423         "\n"
2424         ".view column:sorted row:nth-child(odd),\n"
2425         ".view column:sorted row:nth-child(odd):prelight {\n"
2426         "  background-color: shade (@bg_color, 0.8);\n"
2427         "}\n"
2428         "\n"
2429         ".view row,\n"
2430         ".view row:prelight {\n"
2431         "  background-color: @base_color;\n"
2432         "  color: @text_color;\n"
2433         "}\n"
2434         "\n"
2435         ".view row:nth-child(odd),\n"
2436         ".view row:nth-child(odd):prelight {\n"
2437         "  background-color: shade (@base_color, 0.93); \n"
2438         "}\n"
2439         "\n"
2440         ".view row:selected:focused {\n"
2441         "  background-color: @selected_bg_color;\n"
2442         "}\n"
2443         "\n"
2444         ".view row:selected {\n"
2445         "  background-color: darker (@bg_color);\n"
2446         "  color: @selected_fg_color;\n"
2447         "}\n"
2448         "\n"
2449         ".view.cell.trough,\n"
2450         ".view.cell.trough:hover,\n"
2451         ".view.cell.trough:selected,\n"
2452         ".view.cell.trough:selected:focused {\n"
2453         "  background-color: @bg_color;\n"
2454         "  color: @fg_color;\n"
2455         "}\n"
2456         "\n"
2457         ".view.cell.progressbar,\n"
2458         ".view.cell.progressbar:hover,\n"
2459         ".view.cell.progressbar:selected,\n"
2460         ".view.cell.progressbar:selected:focused {\n"
2461         "  background-color: @selected_bg_color;\n"
2462         "  color: @selected_fg_color;\n"
2463         "}\n"
2464         "\n"
2465         ".rubberband {\n"
2466         "  background-color: alpha (@fg_color, 0.25);\n"
2467         "  border-color: @fg_color;\n"
2468         "  border-style: solid;\n"
2469         "  border-width: 1;\n"
2470         "}\n"
2471         "\n"
2472         ".tooltip {\n"
2473         "  background-color: @tooltip_bg_color; \n"
2474         "  color: @tooltip_fg_color; \n"
2475         "  border-color: @tooltip_fg_color; \n"
2476         "  border-width: 1;\n"
2477         "  border-style: solid;\n"
2478         "}\n"
2479         "\n"
2480         ".button,\n"
2481         ".slider {\n"
2482         "  border-style: outset; \n"
2483         "  border-width: 2; \n"
2484         "}\n"
2485         "\n"
2486         ".button:active {\n"
2487         "  background-color: shade (@bg_color, 0.7);\n"
2488         "  border-style: inset; \n"
2489         "}\n"
2490         "\n"
2491         ".button:prelight,\n"
2492         ".slider:prelight {\n"
2493         "  background-color: @selected_bg_color;\n"
2494         "  color: @selected_fg_color;\n"
2495         "  border-color: shade (@selected_bg_color, 0.7);\n"
2496         "}\n"
2497         "\n"
2498         ".trough {\n"
2499         "  background-color: darker (@bg_color);\n"
2500         "  border-style: inset;\n"
2501         "  border-width: 1;\n"
2502         "  padding: 0;\n"
2503         "}\n"
2504         "\n"
2505         ".entry {\n"
2506         "  border-style: inset;\n"
2507         "  border-width: 2;\n"
2508         "  background-color: @base_color;\n"
2509         "  color: @text_color;\n"
2510         "}\n"
2511         "\n"
2512         ".entry:insensitive {\n"
2513         "  background-color: shade (@base_color, 0.9);\n"
2514         "  color: shade (@base_color, 0.7);\n"
2515         "}\n"
2516         ".entry:active {\n"
2517         "  background-color: #c4c2bd;\n"
2518         "  color: #000;\n"
2519         "}\n"
2520         "\n"
2521         ".progressbar,\n"
2522         ".entry.progressbar, \n"
2523         ".cell.progressbar {\n"
2524         "  background-color: @selected_bg_color;\n"
2525         "  border-color: shade (@selected_bg_color, 0.7);\n"
2526         "  color: @selected_fg_color;\n"
2527         "  border-style: outset;\n"
2528         "  border-width: 1;\n"
2529         "}\n"
2530         "\n"
2531         "GtkCheckButton:hover,\n"
2532         "GtkCheckButton:selected,\n"
2533         "GtkRadioButton:hover,\n"
2534         "GtkRadioButton:selected {\n"
2535         "  background-color: shade (@bg_color, 1.05);\n"
2536         "}\n"
2537         "\n"
2538         ".check, .radio,"
2539         ".cell.check, .cell.radio,\n"
2540         ".cell.check:hover, .cell.radio:hover {\n"
2541         "  border-style: solid;\n"
2542         "  border-width: 1;\n"
2543         "  background-color: @base_color;\n"
2544         "  border-color: @fg_color;\n"
2545         "}\n"
2546         "\n"
2547         ".check:active, .radio:active,\n"
2548         ".check:hover, .radio:hover {\n"
2549         "  background-color: @base_color;\n"
2550         "  border-color: @fg_color;\n"
2551         "  color: @text_color;\n"
2552         "}\n"
2553         "\n"
2554         ".check:selected, .radio:selected {\n"
2555         "  background-color: darker (@bg_color);\n"
2556         "  color: @selected_fg_color;\n"
2557         "  border-color: @selected_fg_color;\n"
2558         "}\n"
2559         "\n"
2560         ".check:selected:focused, .radio:selected:focused {\n"
2561         "  background-color: @selected_bg_color;\n"
2562         "}\n"
2563         "\n"
2564         ".menu.check, .menu.radio {\n"
2565         "  color: @fg_color;\n"
2566         "  border-style: none;\n"
2567         "  border-width: 0;\n"
2568         "}\n"
2569         "\n"
2570         ".popup {\n"
2571         "  border-style: outset;\n"
2572         "  border-width: 1;\n"
2573         "}\n"
2574         "\n"
2575         ".viewport {\n"
2576         "  border-style: inset;\n"
2577         "  border-width: 2;\n"
2578         "}\n"
2579         "\n"
2580         ".notebook {\n"
2581         "  border-style: outset;\n"
2582         "  border-width: 1;\n"
2583         "}\n"
2584         "\n"
2585         ".frame {\n"
2586         "  border-style: inset;\n"
2587         "  border-width: 1;\n"
2588         "}\n"
2589         "\n"
2590         "GtkScrolledWindow.frame {\n"
2591         "  padding: 0;\n"
2592         "}\n"
2593         "\n"
2594         ".menu,\n"
2595         ".menubar,\n"
2596         ".toolbar {\n"
2597         "  border-style: outset;\n"
2598         "  border-width: 1;\n"
2599         "}\n"
2600         "\n"
2601         ".menu:hover,\n"
2602         ".menubar:hover,\n"
2603         ".menu.check:hover,\n"
2604         ".menu.radio:hover {\n"
2605         "  background-color: @selected_bg_color;\n"
2606         "  color: @selected_fg_color;\n"
2607         "}\n"
2608         "\n"
2609         "GtkSpinButton.button {\n"
2610         "  border-width: 1;\n"
2611         "}\n"
2612         "\n"
2613         ".scale.slider:hover,\n"
2614         "GtkSpinButton.button:hover {\n"
2615         "  background-color: shade (@bg_color, 1.05);\n"
2616         "  border-color: shade (@bg_color, 0.8);\n"
2617         "}\n"
2618         "\n"
2619         "GtkSwitch.trough:active {\n"
2620         "  background-color: @selected_bg_color;\n"
2621         "  color: @selected_fg_color;\n"
2622         "}\n"
2623         "\n"
2624         "GtkToggleButton.button:inconsistent {\n"
2625         "  border-style: outset;\n"
2626         "  border-width: 1px;\n"
2627         "  background-color: shade (@bg_color, 0.9);\n"
2628         "  border-color: shade (@bg_color, 0.7);\n"
2629         "}\n"
2630         "\n"
2631         "GtkLabel:selected {\n"
2632         "  background-color: shade (@bg_color, 0.9);\n"
2633         "}\n"
2634         "\n"
2635         "GtkLabel:selected:focused {\n"
2636         "  background-color: @selected_bg_color;\n"
2637         "}\n"
2638         "\n"
2639         ".spinner:active {\n"
2640         "  transition: 750ms linear loop;\n"
2641         "}\n"
2642         "\n"
2643         ".info {\n"
2644         "  background-color: @info_bg_color;\n"
2645         "  color: @info_fg_color;\n"
2646         "}\n"
2647         "\n"
2648         ".warning {\n"
2649         "  background-color: @warning_bg_color;\n"
2650         "  color: @warning_fg_color;\n"
2651         "}\n"
2652         "\n"
2653         ".question {\n"
2654         "  background-color: @question_bg_color;\n"
2655         "  color: @question_fg_color;\n"
2656         "}\n"
2657         "\n"
2658         ".error {\n"
2659         "  background-color: @error_bg_color;\n"
2660         "  color: @error_fg_color;\n"
2661         "}\n"
2662         "\n"
2663         ".highlight {\n"
2664         "  background-color: @selected_bg_color;\n"
2665         "  color: @selected_fg_color;\n"
2666         "}\n"
2667         "\n"
2668         ".light-area-focus {\n"
2669         "  color: #000;\n"
2670         "}\n"
2671         "\n"
2672         ".dark-area-focus {\n"
2673         "  color: #fff;\n"
2674         "}\n"
2675         "GtkCalendar.view {\n"
2676         "  border-width: 1;\n"
2677         "  border-style: inset;\n"
2678         "  padding: 1;\n"
2679         "}\n"
2680         "\n"
2681         "GtkCalendar.view:inconsistent {\n"
2682         "  color: darker (@bg_color);\n"
2683         "}\n"
2684         "\n"
2685         "GtkCalendar.header {\n"
2686         "  background-color: @bg_color;\n"
2687         "  border-style: outset;\n"
2688         "  border-width: 2;\n"
2689         "}\n"
2690         "\n"
2691         "GtkCalendar.highlight {\n"
2692         "  border-width: 0;\n"
2693         "}\n"
2694         "\n"
2695         "GtkCalendar.button {\n"
2696         "  background-color: @bg_color;\n"
2697         "}\n"
2698         "\n"
2699         "GtkCalendar.button:hover {\n"
2700         "  background-color: lighter (@bg_color);\n"
2701         "  color: @fg_color;\n"
2702         "}\n"
2703         "\n"
2704         ".menu * {\n"
2705         "  border-width: 0;\n"
2706         "  padding: 2;\n"
2707         "}\n"
2708         "\n";
2709
2710       provider = gtk_css_provider_new ();
2711       if (!gtk_css_provider_load_from_data (provider, str, -1, NULL))
2712         {
2713           g_error ("Failed to load the internal default CSS.");
2714         }
2715     }
2716
2717   return provider;
2718 }
2719
2720 gchar *
2721 _gtk_css_provider_get_theme_dir (void)
2722 {
2723   const gchar *var;
2724   gchar *path;
2725
2726   var = g_getenv ("GTK_DATA_PREFIX");
2727
2728   if (var)
2729     path = g_build_filename (var, "share", "themes", NULL);
2730   else
2731     path = g_build_filename (GTK_DATA_PREFIX, "share", "themes", NULL);
2732
2733   return path;
2734 }
2735
2736 /**
2737  * gtk_css_provider_get_named:
2738  * @name: A theme name
2739  * @variant: (allow-none): variant to load, for example, "dark", or
2740  *     %NULL for the default
2741  *
2742  * Loads a theme from the usual theme paths
2743  *
2744  * Returns: (transfer none): a #GtkCssProvider with the theme loaded.
2745  *     This memory is owned by GTK+, and you must not free it.
2746  */
2747 GtkCssProvider *
2748 gtk_css_provider_get_named (const gchar *name,
2749                             const gchar *variant)
2750 {
2751   static GHashTable *themes = NULL;
2752   GtkCssProvider *provider;
2753   gchar *key;
2754
2755   if (G_UNLIKELY (!themes))
2756     themes = g_hash_table_new (g_str_hash, g_str_equal);
2757
2758   if (variant == NULL)
2759     key = (gchar *)name;
2760   else
2761     key = g_strconcat (name, "-", variant, NULL);
2762
2763   provider = g_hash_table_lookup (themes, key);
2764
2765   if (!provider)
2766     {
2767       const gchar *home_dir;
2768       gchar *subpath, *path = NULL;
2769
2770       if (variant)
2771         subpath = g_strdup_printf ("gtk-3.0" G_DIR_SEPARATOR_S "gtk-%s.css", variant);
2772       else
2773         subpath = g_strdup ("gtk-3.0" G_DIR_SEPARATOR_S "gtk.css");
2774
2775       /* First look in the users home directory
2776        */
2777       home_dir = g_get_home_dir ();
2778       if (home_dir)
2779         {
2780           path = g_build_filename (home_dir, ".themes", name, subpath, NULL);
2781
2782           if (!g_file_test (path, G_FILE_TEST_EXISTS))
2783             {
2784               g_free (path);
2785               path = NULL;
2786             }
2787         }
2788
2789       if (!path)
2790         {
2791           gchar *theme_dir;
2792
2793           theme_dir = _gtk_css_provider_get_theme_dir ();
2794           path = g_build_filename (theme_dir, name, subpath, NULL);
2795           g_free (theme_dir);
2796
2797           if (!g_file_test (path, G_FILE_TEST_EXISTS))
2798             {
2799               g_free (path);
2800               path = NULL;
2801             }
2802         }
2803
2804       g_free (subpath);
2805
2806       if (path)
2807         {
2808           GError *error;
2809
2810           provider = gtk_css_provider_new ();
2811           error = NULL;
2812           if (!gtk_css_provider_load_from_path (provider, path, &error))
2813             {
2814               g_warning ("Could not load named theme \"%s\": %s", name, error->message);
2815               g_error_free (error);
2816
2817               g_object_unref (provider);
2818               provider = NULL;
2819             }
2820           else
2821             g_hash_table_insert (themes, g_strdup (key), provider);
2822
2823           g_free (path);
2824         }
2825     }
2826
2827   if (key != name)
2828     g_free (key);
2829
2830   return provider;
2831 }
2832
2833 static int
2834 compare_pspecs (gconstpointer a, gconstpointer b)
2835 {
2836   return strcmp (((const GParamSpec *) a)->name, ((const GParamSpec *) b)->name);
2837 }
2838
2839 static void
2840 gtk_css_ruleset_print (const GtkCssRuleset *ruleset,
2841                        GString             *str)
2842 {
2843   GList *keys, *walk;
2844   char *s;
2845
2846   _gtk_css_selector_print (ruleset->selector, str);
2847
2848   g_string_append (str, " {\n");
2849
2850   if (ruleset->style)
2851     {
2852       keys = g_hash_table_get_keys (ruleset->style);
2853       /* so the output is identical for identical selector styles */
2854       keys = g_list_sort (keys, compare_pspecs);
2855
2856       for (walk = keys; walk; walk = walk->next)
2857         {
2858           GParamSpec *pspec = walk->data;
2859           const GValue *value = g_hash_table_lookup (ruleset->style, pspec);
2860
2861           g_string_append (str, "  ");
2862           g_string_append (str, pspec->name);
2863           g_string_append (str, ": ");
2864           s = _gtk_css_value_to_string (value);
2865           g_string_append (str, s);
2866           g_free (s);
2867           g_string_append (str, ";\n");
2868         }
2869
2870       g_list_free (keys);
2871     }
2872
2873   if (ruleset->widget_style)
2874     {
2875       keys = g_hash_table_get_keys (ruleset->widget_style);
2876       /* so the output is identical for identical selector styles */
2877       keys = g_list_sort (keys, (GCompareFunc) strcmp);
2878
2879       for (walk = keys; walk; walk = walk->next)
2880         {
2881           const char *name = walk->data;
2882           const GValue *value = g_hash_table_lookup (ruleset->style, (gpointer) name);
2883
2884           g_string_append (str, "  ");
2885           g_string_append (str, name);
2886           g_string_append (str, ": ");
2887           s = _gtk_css_value_to_string (value);
2888           g_string_append (str, s);
2889           g_free (s);
2890           g_string_append (str, ";\n");
2891         }
2892
2893       g_list_free (keys);
2894     }
2895
2896   g_string_append (str, "}\n");
2897 }
2898
2899 static void
2900 gtk_css_provider_print_colors (GHashTable *colors,
2901                                GString    *str)
2902 {
2903   GList *keys, *walk;
2904   char *s;
2905
2906   keys = g_hash_table_get_keys (colors);
2907   /* so the output is identical for identical styles */
2908   keys = g_list_sort (keys, (GCompareFunc) strcmp);
2909
2910   for (walk = keys; walk; walk = walk->next)
2911     {
2912       const char *name = walk->data;
2913       GtkSymbolicColor *symbolic = g_hash_table_lookup (colors, (gpointer) name);
2914
2915       g_string_append (str, "@define-color ");
2916       g_string_append (str, name);
2917       g_string_append (str, " ");
2918       s = gtk_symbolic_color_to_string (symbolic);
2919       g_string_append (str, s);
2920       g_free (s);
2921       g_string_append (str, ";\n");
2922     }
2923
2924   g_list_free (keys);
2925 }
2926
2927 /**
2928  * gtk_css_provider_to_string:
2929  * @provider: the provider to write to a string
2930  *
2931  * Convertes the @provider into a string representation in CSS
2932  * format.
2933  * 
2934  * Using gtk_css_provider_load_from_data() with the return value
2935  * from this function on a new provider created with
2936  * gtk_css_provider_new() will basicallu create a duplicate of
2937  * this @provider.
2938  *
2939  * Returns: a new string representing the @provider.
2940  **/
2941 char *
2942 gtk_css_provider_to_string (GtkCssProvider *provider)
2943 {
2944   GtkCssProviderPrivate *priv;
2945   GString *str;
2946   guint i;
2947
2948   g_return_val_if_fail (GTK_IS_CSS_PROVIDER (provider), NULL);
2949
2950   priv = provider->priv;
2951
2952   str = g_string_new ("");
2953
2954   gtk_css_provider_print_colors (priv->symbolic_colors, str);
2955
2956   for (i = 0; i < priv->rulesets->len; i++)
2957     {
2958       if (i > 0)
2959         g_string_append (str, "\n");
2960       gtk_css_ruleset_print (&g_array_index (priv->rulesets, GtkCssRuleset, i), str);
2961     }
2962
2963   return g_string_free (str, FALSE);
2964 }
2965