]> Pileus Git - ~andy/gtk/blob - gtk/gtkthemingengine.c
Render background image if set for checks and options
[~andy/gtk] / gtk / gtkthemingengine.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 <math.h>
23 #include <gtk/gtk.h>
24
25 #include <gtk/gtkthemingengine.h>
26 #include <gtk/gtkstylecontext.h>
27 #include <gtk/gtkintl.h>
28
29 #include "gtkprivate.h"
30 #include "gtkmodulesprivate.h"
31 #include "gtkborderimageprivate.h"
32 #include "gtkpango.h"
33 #include "gtkshadowprivate.h"
34 #include "gtkcsstypesprivate.h"
35 #include "gtkthemingengineprivate.h"
36 #include "gtkroundedboxprivate.h"
37
38 /**
39  * SECTION:gtkthemingengine
40  * @Short_description: Theming renderers
41  * @Title: GtkThemingEngine
42  * @See_also: #GtkStyleContext
43  *
44  * #GtkThemingEngine is the object used for rendering themed content
45  * in GTK+ widgets. Even though GTK+ has a default implementation,
46  * it can be overridden in CSS files by enforcing a #GtkThemingEngine
47  * object to be loaded as a module.
48  *
49  * In order to implement a theming engine, a #GtkThemingEngine subclass
50  * must be created, alongside the CSS file that will reference it, the
51  * theming engine would be created as an .so library, and installed in
52  * $(gtk-modules-dir)/theming-engines/.
53  *
54  * #GtkThemingEngine<!-- -->s have limited access to the object they are
55  * rendering, the #GtkThemingEngine API has read-only accessors to the
56  * style information contained in the rendered object's #GtkStyleContext.
57  */
58
59 enum {
60   SIDE_LEFT   = 1,
61   SIDE_BOTTOM = 1 << 1,
62   SIDE_RIGHT  = 1 << 2,
63   SIDE_TOP    = 1 << 3,
64   SIDE_ALL    = 0xF
65 };
66
67 enum {
68   PROP_0,
69   PROP_NAME
70 };
71
72 struct GtkThemingEnginePrivate
73 {
74   GtkStyleContext *context;
75   gchar *name;
76 };
77
78 #define GTK_THEMING_ENGINE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GTK_TYPE_THEMING_ENGINE, GtkThemingEnginePrivate))
79
80 static void gtk_theming_engine_finalize          (GObject      *object);
81 static void gtk_theming_engine_impl_set_property (GObject      *object,
82                                                   guint         prop_id,
83                                                   const GValue *value,
84                                                   GParamSpec   *pspec);
85 static void gtk_theming_engine_impl_get_property (GObject      *object,
86                                                   guint         prop_id,
87                                                   GValue       *value,
88                                                   GParamSpec   *pspec);
89
90 static void gtk_theming_engine_render_check (GtkThemingEngine *engine,
91                                              cairo_t          *cr,
92                                              gdouble           x,
93                                              gdouble           y,
94                                              gdouble           width,
95                                              gdouble           height);
96 static void gtk_theming_engine_render_option (GtkThemingEngine *engine,
97                                               cairo_t          *cr,
98                                               gdouble           x,
99                                               gdouble           y,
100                                               gdouble           width,
101                                               gdouble           height);
102 static void gtk_theming_engine_render_arrow  (GtkThemingEngine *engine,
103                                               cairo_t          *cr,
104                                               gdouble           angle,
105                                               gdouble           x,
106                                               gdouble           y,
107                                               gdouble           size);
108 static void gtk_theming_engine_render_background (GtkThemingEngine *engine,
109                                                   cairo_t          *cr,
110                                                   gdouble           x,
111                                                   gdouble           y,
112                                                   gdouble           width,
113                                                   gdouble           height);
114 static void gtk_theming_engine_render_frame  (GtkThemingEngine *engine,
115                                               cairo_t          *cr,
116                                               gdouble           x,
117                                               gdouble           y,
118                                               gdouble           width,
119                                               gdouble           height);
120 static void gtk_theming_engine_render_expander (GtkThemingEngine *engine,
121                                                 cairo_t          *cr,
122                                                 gdouble           x,
123                                                 gdouble           y,
124                                                 gdouble           width,
125                                                 gdouble           height);
126 static void gtk_theming_engine_render_focus    (GtkThemingEngine *engine,
127                                                 cairo_t          *cr,
128                                                 gdouble           x,
129                                                 gdouble           y,
130                                                 gdouble           width,
131                                                 gdouble           height);
132 static void gtk_theming_engine_render_layout   (GtkThemingEngine *engine,
133                                                 cairo_t          *cr,
134                                                 gdouble           x,
135                                                 gdouble           y,
136                                                 PangoLayout      *layout);
137 static void gtk_theming_engine_render_line     (GtkThemingEngine *engine,
138                                                 cairo_t          *cr,
139                                                 gdouble           x0,
140                                                 gdouble           y0,
141                                                 gdouble           x1,
142                                                 gdouble           y1);
143 static void gtk_theming_engine_render_slider   (GtkThemingEngine *engine,
144                                                 cairo_t          *cr,
145                                                 gdouble           x,
146                                                 gdouble           y,
147                                                 gdouble           width,
148                                                 gdouble           height,
149                                                 GtkOrientation    orientation);
150 static void gtk_theming_engine_render_frame_gap (GtkThemingEngine *engine,
151                                                  cairo_t          *cr,
152                                                  gdouble           x,
153                                                  gdouble           y,
154                                                  gdouble           width,
155                                                  gdouble           height,
156                                                  GtkPositionType   gap_side,
157                                                  gdouble           xy0_gap,
158                                                  gdouble           xy1_gap);
159 static void gtk_theming_engine_render_extension (GtkThemingEngine *engine,
160                                                  cairo_t          *cr,
161                                                  gdouble           x,
162                                                  gdouble           y,
163                                                  gdouble           width,
164                                                  gdouble           height,
165                                                  GtkPositionType   gap_side);
166 static void gtk_theming_engine_render_handle    (GtkThemingEngine *engine,
167                                                  cairo_t          *cr,
168                                                  gdouble           x,
169                                                  gdouble           y,
170                                                  gdouble           width,
171                                                  gdouble           height);
172 static void gtk_theming_engine_render_activity  (GtkThemingEngine *engine,
173                                                  cairo_t          *cr,
174                                                  gdouble           x,
175                                                  gdouble           y,
176                                                  gdouble           width,
177                                                  gdouble           height);
178 static GdkPixbuf * gtk_theming_engine_render_icon_pixbuf (GtkThemingEngine    *engine,
179                                                           const GtkIconSource *source,
180                                                           GtkIconSize          size);
181 static void gtk_theming_engine_render_icon (GtkThemingEngine *engine,
182                                             cairo_t *cr,
183                                             GdkPixbuf *pixbuf,
184                                             gdouble x,
185                                             gdouble y);
186 static void render_background_internal (GtkThemingEngine *engine,
187                                         cairo_t          *cr,
188                                         gdouble           x,
189                                         gdouble           y,
190                                         gdouble           width,
191                                         gdouble           height,
192                                         GtkJunctionSides  junction,
193                                         cairo_pattern_t  *optional_background);
194
195 G_DEFINE_TYPE (GtkThemingEngine, gtk_theming_engine, G_TYPE_OBJECT)
196
197
198 typedef struct GtkThemingModule GtkThemingModule;
199 typedef struct GtkThemingModuleClass GtkThemingModuleClass;
200
201 struct GtkThemingModule
202 {
203   GTypeModule parent_instance;
204   GModule *module;
205   gchar *name;
206
207   void (*init) (GTypeModule *module);
208   void (*exit) (void);
209   GtkThemingEngine * (*create_engine) (void);
210 };
211
212 struct GtkThemingModuleClass
213 {
214   GTypeModuleClass parent_class;
215 };
216
217 #define GTK_TYPE_THEMING_MODULE  (gtk_theming_module_get_type ())
218 #define GTK_THEMING_MODULE(o)    (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_THEMING_MODULE, GtkThemingModule))
219 #define GTK_IS_THEMING_MODULE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_THEMING_MODULE))
220
221 G_DEFINE_TYPE (GtkThemingModule, gtk_theming_module, G_TYPE_TYPE_MODULE);
222
223 static void
224 gtk_theming_engine_class_init (GtkThemingEngineClass *klass)
225 {
226   GObjectClass *object_class = G_OBJECT_CLASS (klass);
227
228   object_class->finalize = gtk_theming_engine_finalize;
229   object_class->set_property = gtk_theming_engine_impl_set_property;
230   object_class->get_property = gtk_theming_engine_impl_get_property;
231
232   klass->render_icon = gtk_theming_engine_render_icon;
233   klass->render_check = gtk_theming_engine_render_check;
234   klass->render_option = gtk_theming_engine_render_option;
235   klass->render_arrow = gtk_theming_engine_render_arrow;
236   klass->render_background = gtk_theming_engine_render_background;
237   klass->render_frame = gtk_theming_engine_render_frame;
238   klass->render_expander = gtk_theming_engine_render_expander;
239   klass->render_focus = gtk_theming_engine_render_focus;
240   klass->render_layout = gtk_theming_engine_render_layout;
241   klass->render_line = gtk_theming_engine_render_line;
242   klass->render_slider = gtk_theming_engine_render_slider;
243   klass->render_frame_gap = gtk_theming_engine_render_frame_gap;
244   klass->render_extension = gtk_theming_engine_render_extension;
245   klass->render_handle = gtk_theming_engine_render_handle;
246   klass->render_activity = gtk_theming_engine_render_activity;
247   klass->render_icon_pixbuf = gtk_theming_engine_render_icon_pixbuf;
248
249   /**
250    * GtkThemingEngine:name:
251    *
252    * The theming engine name, this name will be used when registering
253    * custom properties, for a theming engine named "Clearlooks" registering
254    * a "glossy" custom property, it could be referenced in the CSS file as
255    *
256    * <programlisting>
257    * -Clearlooks-glossy: true;
258    * </programlisting>
259    *
260    * Since: 3.0
261    */
262   g_object_class_install_property (object_class,
263                                    PROP_NAME,
264                                    g_param_spec_string ("name",
265                                                         P_("Name"),
266                                                         P_("Theming engine name"),
267                                                         NULL,
268                                                         G_PARAM_CONSTRUCT_ONLY | GTK_PARAM_READWRITE));
269
270   g_type_class_add_private (object_class, sizeof (GtkThemingEnginePrivate));
271 }
272
273 static void
274 gtk_theming_engine_init (GtkThemingEngine *engine)
275 {
276   engine->priv = GTK_THEMING_ENGINE_GET_PRIVATE (engine);
277 }
278
279 static void
280 gtk_theming_engine_finalize (GObject *object)
281 {
282   GtkThemingEnginePrivate *priv;
283
284   priv = GTK_THEMING_ENGINE (object)->priv;
285   g_free (priv->name);
286
287   G_OBJECT_GET_CLASS (gtk_theming_engine_parent_class)->finalize (object);
288 }
289
290 static void
291 gtk_theming_engine_impl_set_property (GObject      *object,
292                                       guint         prop_id,
293                                       const GValue *value,
294                                       GParamSpec   *pspec)
295 {
296   GtkThemingEnginePrivate *priv;
297
298   priv = GTK_THEMING_ENGINE (object)->priv;
299
300   switch (prop_id)
301     {
302     case PROP_NAME:
303       if (priv->name)
304         g_free (priv->name);
305
306       priv->name = g_value_dup_string (value);
307       break;
308     default:
309       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
310       break;
311     }
312 }
313
314 static void
315 gtk_theming_engine_impl_get_property (GObject    *object,
316                                       guint       prop_id,
317                                       GValue     *value,
318                                       GParamSpec *pspec)
319 {
320   GtkThemingEnginePrivate *priv;
321
322   priv = GTK_THEMING_ENGINE (object)->priv;
323
324   switch (prop_id)
325     {
326     case PROP_NAME:
327       g_value_set_string (value, priv->name);
328       break;
329     default:
330       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
331       break;
332     }
333 }
334
335 void
336 _gtk_theming_engine_set_context (GtkThemingEngine *engine,
337                                  GtkStyleContext  *context)
338 {
339   GtkThemingEnginePrivate *priv;
340
341   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
342   g_return_if_fail (GTK_IS_STYLE_CONTEXT (context));
343
344   priv = engine->priv;
345   priv->context = context;
346 }
347
348 /**
349  * gtk_theming_engine_register_property: (skip)
350  * @name_space: namespace for the property name
351  * @parse_func: parsing function to use, or %NULL
352  * @pspec: the #GParamSpec for the new property
353  *
354  * Registers a property so it can be used in the CSS file format,
355  * on the CSS file the property will look like
356  * "-${@name_space}-${property_name}". being
357  * ${property_name} the given to @pspec. @name_space will usually
358  * be the theme engine name.
359  *
360  * For any type a @parse_func may be provided, being this function
361  * used for turning any property value (between ':' and ';') in
362  * CSS to the #GValue needed. For basic types there is already
363  * builtin parsing support, so %NULL may be provided for these
364  * cases.
365  *
366  * <note>
367  * Engines must ensure property registration happens exactly once,
368  * usually GTK+ deals with theming engines as singletons, so this
369  * should be guaranteed to happen once, but bear this in mind
370  * when creating #GtkThemeEngine<!-- -->s yourself.
371  * </note>
372  *
373  * <note>
374  * In order to make use of the custom registered properties in
375  * the CSS file, make sure the engine is loaded first by specifying
376  * the engine property, either in a previous rule or within the same
377  * one.
378  * <programlisting>
379  * &ast; {
380  *     engine: someengine;
381  *     -SomeEngine-custom-property: 2;
382  * }
383  * </programlisting>
384  * </note>
385  *
386  * Since: 3.0
387  **/
388 void
389 gtk_theming_engine_register_property (const gchar            *name_space,
390                                       GtkStylePropertyParser  parse_func,
391                                       GParamSpec             *pspec)
392 {
393   gchar *name;
394
395   g_return_if_fail (name_space != NULL);
396   g_return_if_fail (strchr (name_space, ' ') == NULL);
397   g_return_if_fail (G_IS_PARAM_SPEC (pspec));
398
399   /* FIXME: hack hack hack, replacing pspec->name to include namespace */
400   name = g_strdup_printf ("-%s-%s", name_space, pspec->name);
401   pspec->name = (char *)g_intern_string (name);
402   g_free (name);
403
404   gtk_style_properties_register_property (parse_func, pspec);
405 }
406
407 /**
408  * gtk_theming_engine_get_property:
409  * @engine: a #GtkThemingEngine
410  * @property: the property name
411  * @state: state to retrieve the value for
412  * @value: (out) (transfer full): return location for the property value,
413  *         you must free this memory using g_value_unset() once you are
414  *         done with it.
415  *
416  * Gets a property value as retrieved from the style settings that apply
417  * to the currently rendered element.
418  *
419  * Since: 3.0
420  **/
421 void
422 gtk_theming_engine_get_property (GtkThemingEngine *engine,
423                                  const gchar      *property,
424                                  GtkStateFlags     state,
425                                  GValue           *value)
426 {
427   GtkThemingEnginePrivate *priv;
428
429   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
430   g_return_if_fail (property != NULL);
431   g_return_if_fail (value != NULL);
432
433   priv = engine->priv;
434   gtk_style_context_get_property (priv->context, property, state, value);
435 }
436
437 /**
438  * gtk_theming_engine_get_valist:
439  * @engine: a #GtkThemingEngine
440  * @state: state to retrieve values for
441  * @args: va_list of property name/return location pairs, followed by %NULL
442  *
443  * Retrieves several style property values that apply to the currently
444  * rendered element.
445  *
446  * Since: 3.0
447  **/
448 void
449 gtk_theming_engine_get_valist (GtkThemingEngine *engine,
450                                GtkStateFlags     state,
451                                va_list           args)
452 {
453   GtkThemingEnginePrivate *priv;
454
455   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
456
457   priv = engine->priv;
458   gtk_style_context_get_valist (priv->context, state, args);
459 }
460
461 void
462 _gtk_theming_engine_get (GtkThemingEngine *engine,
463                          GtkStateFlags     state,
464                          GtkStylePropertyContext *property_context,
465                          ...)
466 {
467   GtkThemingEnginePrivate *priv;
468   va_list args;
469
470   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
471
472   priv = engine->priv;
473
474   va_start (args, property_context);
475   _gtk_style_context_get_valist (priv->context, state, property_context, args);
476   va_end (args);
477 }
478
479
480 /**
481  * gtk_theming_engine_get:
482  * @engine: a #GtkThemingEngine
483  * @state: state to retrieve values for
484  * @...: property name /return value pairs, followed by %NULL
485  *
486  * Retrieves several style property values that apply to the currently
487  * rendered element.
488  *
489  * Since: 3.0
490  **/
491 void
492 gtk_theming_engine_get (GtkThemingEngine *engine,
493                         GtkStateFlags     state,
494                         ...)
495 {
496   GtkThemingEnginePrivate *priv;
497   va_list args;
498
499   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
500
501   priv = engine->priv;
502
503   va_start (args, state);
504   gtk_style_context_get_valist (priv->context, state, args);
505   va_end (args);
506 }
507
508 /**
509  * gtk_theming_engine_get_style_property:
510  * @engine: a #GtkThemingEngine
511  * @property_name: the name of the widget style property
512  * @value: Return location for the property value, free with
513  *         g_value_unset() after use.
514  *
515  * Gets the value for a widget style property.
516  *
517  * Since: 3.0
518  **/
519 void
520 gtk_theming_engine_get_style_property (GtkThemingEngine *engine,
521                                        const gchar      *property_name,
522                                        GValue           *value)
523 {
524   GtkThemingEnginePrivate *priv;
525
526   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
527   g_return_if_fail (property_name != NULL);
528
529   priv = engine->priv;
530   gtk_style_context_get_style_property (priv->context, property_name, value);
531 }
532
533 /**
534  * gtk_theming_engine_get_style_valist:
535  * @engine: a #GtkThemingEngine
536  * @args: va_list of property name/return location pairs, followed by %NULL
537  *
538  * Retrieves several widget style properties from @engine according to the
539  * currently rendered content's style.
540  *
541  * Since: 3.0
542  **/
543 void
544 gtk_theming_engine_get_style_valist (GtkThemingEngine *engine,
545                                      va_list           args)
546 {
547   GtkThemingEnginePrivate *priv;
548
549   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
550
551   priv = engine->priv;
552   gtk_style_context_get_style_valist (priv->context, args);
553 }
554
555 /**
556  * gtk_theming_engine_get_style:
557  * @engine: a #GtkThemingEngine
558  * @...: property name /return value pairs, followed by %NULL
559  *
560  * Retrieves several widget style properties from @engine according
561  * to the currently rendered content's style.
562  *
563  * Since: 3.0
564  **/
565 void
566 gtk_theming_engine_get_style (GtkThemingEngine *engine,
567                               ...)
568 {
569   GtkThemingEnginePrivate *priv;
570   va_list args;
571
572   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
573
574   priv = engine->priv;
575
576   va_start (args, engine);
577   gtk_style_context_get_style_valist (priv->context, args);
578   va_end (args);
579 }
580
581 /**
582  * gtk_theming_engine_lookup_color:
583  * @engine: a #GtkThemingEngine
584  * @color_name: color name to lookup
585  * @color: (out): Return location for the looked up color
586  *
587  * Looks up and resolves a color name in the current style's color map.
588  *
589  * Returns: %TRUE if @color_name was found and resolved, %FALSE otherwise
590  **/
591 gboolean
592 gtk_theming_engine_lookup_color (GtkThemingEngine *engine,
593                                  const gchar      *color_name,
594                                  GdkRGBA          *color)
595 {
596   GtkThemingEnginePrivate *priv;
597
598   g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), FALSE);
599   g_return_val_if_fail (color_name != NULL, FALSE);
600
601   priv = engine->priv;
602   return gtk_style_context_lookup_color (priv->context, color_name, color);
603 }
604
605 /**
606  * gtk_theming_engine_get_state:
607  * @engine: a #GtkThemingEngine
608  *
609  * returns the state used when rendering.
610  *
611  * Returns: the state flags
612  *
613  * Since: 3.0
614  **/
615 GtkStateFlags
616 gtk_theming_engine_get_state (GtkThemingEngine *engine)
617 {
618   GtkThemingEnginePrivate *priv;
619
620   g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), 0);
621
622   priv = engine->priv;
623   return gtk_style_context_get_state (priv->context);
624 }
625
626 /**
627  * gtk_theming_engine_state_is_running:
628  * @engine: a #GtkThemingEngine
629  * @state: a widget state
630  * @progress: (out): return location for the transition progress
631  *
632  * Returns %TRUE if there is a transition animation running for the
633  * current region (see gtk_style_context_push_animatable_region()).
634  *
635  * If @progress is not %NULL, the animation progress will be returned
636  * there, 0.0 means the state is closest to being %FALSE, while 1.0 means
637  * it's closest to being %TRUE. This means transition animations will
638  * run from 0 to 1 when @state is being set to %TRUE and from 1 to 0 when
639  * it's being set to %FALSE.
640  *
641  * Returns: %TRUE if there is a running transition animation for @state.
642  *
643  * Since: 3.0
644  **/
645 gboolean
646 gtk_theming_engine_state_is_running (GtkThemingEngine *engine,
647                                      GtkStateType      state,
648                                      gdouble          *progress)
649 {
650   GtkThemingEnginePrivate *priv;
651
652   g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), FALSE);
653
654   priv = engine->priv;
655   return gtk_style_context_state_is_running (priv->context, state, progress);
656 }
657
658 /**
659  * gtk_theming_engine_get_path:
660  * @engine: a #GtkThemingEngine
661  *
662  * Returns the widget path used for style matching.
663  *
664  * Returns: (transfer none): A #GtkWidgetPath
665  *
666  * Since: 3.0
667  **/
668 const GtkWidgetPath *
669 gtk_theming_engine_get_path (GtkThemingEngine *engine)
670 {
671   GtkThemingEnginePrivate *priv;
672
673   g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), NULL);
674
675   priv = engine->priv;
676   return gtk_style_context_get_path (priv->context);
677 }
678
679 /**
680  * gtk_theming_engine_has_class:
681  * @engine: a #GtkThemingEngine
682  * @style_class: class name to look up
683  *
684  * Returns %TRUE if the currently rendered contents have
685  * defined the given class name.
686  *
687  * Returns: %TRUE if @engine has @class_name defined
688  *
689  * Since: 3.0
690  **/
691 gboolean
692 gtk_theming_engine_has_class (GtkThemingEngine *engine,
693                               const gchar      *style_class)
694 {
695   GtkThemingEnginePrivate *priv;
696
697   g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), FALSE);
698
699   priv = engine->priv;
700   return gtk_style_context_has_class (priv->context, style_class);
701 }
702
703 /**
704  * gtk_theming_engine_has_region:
705  * @engine: a #GtkThemingEngine
706  * @style_region: a region name
707  * @flags: (out) (allow-none): return location for region flags
708  *
709  * Returns %TRUE if the currently rendered contents have the
710  * region defined. If @flags_return is not %NULL, it is set
711  * to the flags affecting the region.
712  *
713  * Returns: %TRUE if region is defined
714  *
715  * Since: 3.0
716  **/
717 gboolean
718 gtk_theming_engine_has_region (GtkThemingEngine *engine,
719                                const gchar      *style_region,
720                                GtkRegionFlags   *flags)
721 {
722   GtkThemingEnginePrivate *priv;
723
724   if (flags)
725     *flags = 0;
726
727   g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), FALSE);
728
729   priv = engine->priv;
730   return gtk_style_context_has_region (priv->context, style_region, flags);
731 }
732
733 /**
734  * gtk_theming_engine_get_direction:
735  * @engine: a #GtkThemingEngine
736  *
737  * Returns the widget direction used for rendering.
738  *
739  * Returns: the widget direction
740  *
741  * Since: 3.0
742  **/
743 GtkTextDirection
744 gtk_theming_engine_get_direction (GtkThemingEngine *engine)
745 {
746   GtkThemingEnginePrivate *priv;
747
748   g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), GTK_TEXT_DIR_LTR);
749
750   priv = engine->priv;
751   return gtk_style_context_get_direction (priv->context);
752 }
753
754 /**
755  * gtk_theming_engine_get_junction_sides:
756  * @engine: a #GtkThemingEngine
757  *
758  * Returns the widget direction used for rendering.
759  *
760  * Returns: the widget direction
761  *
762  * Since: 3.0
763  **/
764 GtkJunctionSides
765 gtk_theming_engine_get_junction_sides (GtkThemingEngine *engine)
766 {
767   GtkThemingEnginePrivate *priv;
768
769   g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), 0);
770
771   priv = engine->priv;
772   return gtk_style_context_get_junction_sides (priv->context);
773 }
774
775 /**
776  * gtk_theming_engine_get_color:
777  * @engine: a #GtkThemingEngine
778  * @state: state to retrieve the color for
779  * @color: (out): return value for the foreground color
780  *
781  * Gets the foreground color for a given state.
782  *
783  * Since: 3.0
784  **/
785 void
786 gtk_theming_engine_get_color (GtkThemingEngine *engine,
787                               GtkStateFlags     state,
788                               GdkRGBA          *color)
789 {
790   GtkThemingEnginePrivate *priv;
791
792   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
793
794   priv = engine->priv;
795   gtk_style_context_get_color (priv->context, state, color);
796 }
797
798 /**
799  * gtk_theming_engine_get_background_color:
800  * @engine: a #GtkThemingEngine
801  * @state: state to retrieve the color for
802  * @color: (out): return value for the background color
803  *
804  * Gets the background color for a given state.
805  *
806  * Since: 3.0
807  **/
808 void
809 gtk_theming_engine_get_background_color (GtkThemingEngine *engine,
810                                          GtkStateFlags     state,
811                                          GdkRGBA          *color)
812 {
813   GtkThemingEnginePrivate *priv;
814
815   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
816
817   priv = engine->priv;
818   gtk_style_context_get_background_color (priv->context, state, color);
819 }
820
821 /**
822  * gtk_theming_engine_get_border_color:
823  * @engine: a #GtkThemingEngine
824  * @state: state to retrieve the color for
825  * @color: (out): return value for the border color
826  *
827  * Gets the border color for a given state.
828  *
829  * Since: 3.0
830  **/
831 void
832 gtk_theming_engine_get_border_color (GtkThemingEngine *engine,
833                                      GtkStateFlags     state,
834                                      GdkRGBA          *color)
835 {
836   GtkThemingEnginePrivate *priv;
837
838   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
839
840   priv = engine->priv;
841   gtk_style_context_get_border_color (priv->context, state, color);
842 }
843
844 /**
845  * gtk_theming_engine_get_border:
846  * @engine: a #GtkthemingEngine
847  * @state: state to retrieve the border for
848  * @border: (out): return value for the border settings
849  *
850  * Gets the border for a given state as a #GtkBorder.
851  *
852  * Since: 3.0
853  **/
854 void
855 gtk_theming_engine_get_border (GtkThemingEngine *engine,
856                                GtkStateFlags     state,
857                                GtkBorder        *border)
858 {
859   GtkThemingEnginePrivate *priv;
860
861   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
862
863   priv = engine->priv;
864   gtk_style_context_get_border (priv->context, state, border);
865 }
866
867 /**
868  * gtk_theming_engine_get_padding:
869  * @engine: a #GtkthemingEngine
870  * @state: state to retrieve the padding for
871  * @padding: (out): return value for the padding settings
872  *
873  * Gets the padding for a given state as a #GtkBorder.
874  *
875  * Since: 3.0
876  **/
877 void
878 gtk_theming_engine_get_padding (GtkThemingEngine *engine,
879                                 GtkStateFlags     state,
880                                 GtkBorder        *padding)
881 {
882   GtkThemingEnginePrivate *priv;
883
884   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
885
886   priv = engine->priv;
887   gtk_style_context_get_padding (priv->context, state, padding);
888 }
889
890 /**
891  * gtk_theming_engine_get_margin:
892  * @engine: a #GtkThemingEngine
893  * @state: state to retrieve the border for
894  * @margin: (out): return value for the margin settings
895  *
896  * Gets the margin for a given state as a #GtkBorder.
897  *
898  * Since: 3.0
899  **/
900 void
901 gtk_theming_engine_get_margin (GtkThemingEngine *engine,
902                                GtkStateFlags     state,
903                                GtkBorder        *margin)
904 {
905   GtkThemingEnginePrivate *priv;
906
907   g_return_if_fail (GTK_IS_THEMING_ENGINE (engine));
908
909   priv = engine->priv;
910   gtk_style_context_get_margin (priv->context, state, margin);
911 }
912
913 /**
914  * gtk_theming_engine_get_font:
915  * @engine: a #GtkThemingEngine
916  * @state: state to retrieve the font for
917  *
918  * Returns the font description for a given state.
919  *
920  * Returns: (transfer none): the #PangoFontDescription for the given
921  *          state. This object is owned by GTK+ and should not be
922  *          freed.
923  *
924  * Since: 3.0
925  **/
926 const PangoFontDescription *
927 gtk_theming_engine_get_font (GtkThemingEngine *engine,
928                              GtkStateFlags     state)
929 {
930   GtkThemingEnginePrivate *priv;
931
932   g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), NULL);
933
934   priv = engine->priv;
935   return gtk_style_context_get_font (priv->context, state);
936 }
937
938 /* GtkThemingModule */
939
940 static gboolean
941 gtk_theming_module_load (GTypeModule *type_module)
942 {
943   GtkThemingModule *theming_module;
944   GModule *module;
945   gchar *name, *module_path;
946
947   theming_module = GTK_THEMING_MODULE (type_module);
948   name = theming_module->name;
949   module_path = _gtk_find_module (name, "theming-engines");
950
951   if (!module_path)
952     return FALSE;
953
954   module = g_module_open (module_path, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
955   g_free (module_path);
956
957   if (!module)
958     return FALSE;
959
960   if (!g_module_symbol (module, "theme_init",
961                         (gpointer *) &theming_module->init) ||
962       !g_module_symbol (module, "theme_exit",
963                         (gpointer *) &theming_module->exit) ||
964       !g_module_symbol (module, "create_engine",
965                         (gpointer *) &theming_module->create_engine))
966     {
967       g_module_close (module);
968
969       return FALSE;
970     }
971
972   theming_module->module = module;
973
974   theming_module->init (G_TYPE_MODULE (theming_module));
975
976   return TRUE;
977 }
978
979 static void
980 gtk_theming_module_unload (GTypeModule *type_module)
981 {
982   GtkThemingModule *theming_module;
983
984   theming_module = GTK_THEMING_MODULE (type_module);
985
986   theming_module->exit ();
987
988   g_module_close (theming_module->module);
989
990   theming_module->module = NULL;
991   theming_module->init = NULL;
992   theming_module->exit = NULL;
993   theming_module->create_engine = NULL;
994 }
995
996 static void
997 gtk_theming_module_class_init (GtkThemingModuleClass *klass)
998 {
999   GTypeModuleClass *module_class = G_TYPE_MODULE_CLASS (klass);
1000
1001   module_class->load = gtk_theming_module_load;
1002   module_class->unload = gtk_theming_module_unload;
1003 }
1004
1005 static void
1006 gtk_theming_module_init (GtkThemingModule *module)
1007 {
1008 }
1009
1010 /**
1011  * gtk_theming_engine_load:
1012  * @name: Theme engine name to load
1013  *
1014  * Loads and initializes a theming engine module from the
1015  * standard directories.
1016  *
1017  * Returns: (transfer none): A theming engine, or %NULL if
1018  * the engine @name doesn't exist.
1019  **/
1020 GtkThemingEngine *
1021 gtk_theming_engine_load (const gchar *name)
1022 {
1023   static GHashTable *engines = NULL;
1024   static GtkThemingEngine *default_engine;
1025   GtkThemingEngine *engine = NULL;
1026
1027   if (name)
1028     {
1029       if (!engines)
1030         engines = g_hash_table_new (g_str_hash, g_str_equal);
1031
1032       engine = g_hash_table_lookup (engines, name);
1033
1034       if (!engine)
1035         {
1036           GtkThemingModule *module;
1037
1038           module = g_object_new (GTK_TYPE_THEMING_MODULE, NULL);
1039           g_type_module_set_name (G_TYPE_MODULE (module), name);
1040           module->name = g_strdup (name);
1041
1042           if (module && g_type_module_use (G_TYPE_MODULE (module)))
1043             {
1044               engine = (module->create_engine) ();
1045
1046               if (engine)
1047                 g_hash_table_insert (engines, module->name, engine);
1048             }
1049         }
1050     }
1051   else
1052     {
1053       if (G_UNLIKELY (!default_engine))
1054         default_engine = g_object_new (GTK_TYPE_THEMING_ENGINE, NULL);
1055
1056       engine = default_engine;
1057     }
1058
1059   return engine;
1060 }
1061
1062 /**
1063  * gtk_theming_engine_get_screen:
1064  * @engine: a #GtkThemingEngine
1065  *
1066  * Returns the #GdkScreen to which @engine currently rendering to.
1067  *
1068  * Returns: (transfer none): a #GdkScreen, or %NULL.
1069  **/
1070 GdkScreen *
1071 gtk_theming_engine_get_screen (GtkThemingEngine *engine)
1072 {
1073   GtkThemingEnginePrivate *priv;
1074
1075   g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), NULL);
1076
1077   priv = engine->priv;
1078   return gtk_style_context_get_screen (priv->context);
1079 }
1080
1081 /* Paint method implementations */
1082 static void
1083 gtk_theming_engine_render_check (GtkThemingEngine *engine,
1084                                  cairo_t          *cr,
1085                                  gdouble           x,
1086                                  gdouble           y,
1087                                  gdouble           width,
1088                                  gdouble           height)
1089 {
1090   GdkRGBA fg_color, bg_color;
1091   GtkStateFlags flags;
1092   gint exterior_size, interior_size, thickness, pad;
1093   GtkBorderStyle border_style;
1094   GtkBorder border;
1095   gint border_width;
1096   GtkStylePropertyContext context;
1097   cairo_pattern_t *pattern;
1098
1099   flags = gtk_theming_engine_get_state (engine);
1100   cairo_save (cr);
1101
1102   gtk_theming_engine_get_color (engine, flags, &fg_color);
1103   gtk_theming_engine_get_background_color (engine, flags, &bg_color);
1104   gtk_theming_engine_get_border (engine, flags, &border);
1105
1106   context.width = width;
1107   context.height = height;
1108
1109   _gtk_theming_engine_get (engine, flags, &context,
1110                            "background-image", &pattern,
1111                            "border-style", &border_style,
1112                            NULL);
1113
1114   if (pattern != NULL)
1115     {
1116       render_background_internal (engine, cr, x, y, width, height, 
1117                                   gtk_theming_engine_get_junction_sides (engine), pattern);
1118       cairo_restore (cr);
1119       cairo_pattern_destroy (pattern);
1120       return;
1121     }
1122
1123   border_width = MIN (MIN (border.top, border.bottom),
1124                       MIN (border.left, border.right));
1125   exterior_size = MIN (width, height);
1126
1127   if (exterior_size % 2 == 0) /* Ensure odd */
1128     exterior_size -= 1;
1129
1130   /* FIXME: thickness */
1131   thickness = 1;
1132   pad = thickness + MAX (1, (exterior_size - 2 * thickness) / 9);
1133   interior_size = MAX (1, exterior_size - 2 * pad);
1134
1135   if (interior_size < 7)
1136     {
1137       interior_size = 7;
1138       pad = MAX (0, (exterior_size - interior_size) / 2);
1139     }
1140
1141   x -= (1 + exterior_size - (gint) width) / 2;
1142   y -= (1 + exterior_size - (gint) height) / 2;
1143
1144   if (border_style == GTK_BORDER_STYLE_SOLID)
1145     {
1146       GdkRGBA border_color;
1147
1148       cairo_set_line_width (cr, border_width);
1149       gtk_theming_engine_get_border_color (engine, flags, &border_color);
1150
1151       cairo_rectangle (cr, x + 0.5, y + 0.5, exterior_size - 1, exterior_size - 1);
1152       gdk_cairo_set_source_rgba (cr, &bg_color);
1153       cairo_fill_preserve (cr);
1154
1155       gdk_cairo_set_source_rgba (cr, &border_color);
1156       cairo_stroke (cr);
1157     }
1158
1159   gdk_cairo_set_source_rgba (cr, &fg_color);
1160
1161   if (flags & GTK_STATE_FLAG_INCONSISTENT)
1162     {
1163       int line_thickness = MAX (1, (3 + interior_size * 2) / 7);
1164
1165       cairo_rectangle (cr,
1166                        x + pad,
1167                        y + pad + (1 + interior_size - line_thickness) / 2,
1168                        interior_size,
1169                        line_thickness);
1170       cairo_fill (cr);
1171     }
1172   else
1173     {
1174       gdouble progress;
1175       gboolean running;
1176
1177       running = gtk_theming_engine_state_is_running (engine, GTK_STATE_ACTIVE, &progress);
1178
1179       if ((flags & GTK_STATE_FLAG_ACTIVE) || running)
1180         {
1181           if (!running)
1182             progress = 1;
1183
1184           cairo_translate (cr,
1185                            x + pad, y + pad);
1186
1187           cairo_scale (cr, interior_size / 7., interior_size / 7.);
1188
1189           cairo_rectangle (cr, 0, 0, 7 * progress, 7);
1190           cairo_clip (cr);
1191
1192           cairo_move_to  (cr, 7.0, 0.0);
1193           cairo_line_to  (cr, 7.5, 1.0);
1194           cairo_curve_to (cr, 5.3, 2.0,
1195                           4.3, 4.0,
1196                           3.5, 7.0);
1197           cairo_curve_to (cr, 3.0, 5.7,
1198                           1.3, 4.7,
1199                           0.0, 4.7);
1200           cairo_line_to  (cr, 0.2, 3.5);
1201           cairo_curve_to (cr, 1.1, 3.5,
1202                           2.3, 4.3,
1203                           3.0, 5.0);
1204           cairo_curve_to (cr, 1.0, 3.9,
1205                           2.4, 4.1,
1206                           3.2, 4.9);
1207           cairo_curve_to (cr, 3.5, 3.1,
1208                           5.2, 2.0,
1209                           7.0, 0.0);
1210
1211           cairo_fill (cr);
1212         }
1213     }
1214
1215   cairo_restore (cr);
1216 }
1217
1218 static void
1219 gtk_theming_engine_render_option (GtkThemingEngine *engine,
1220                                   cairo_t          *cr,
1221                                   gdouble           x,
1222                                   gdouble           y,
1223                                   gdouble           width,
1224                                   gdouble           height)
1225 {
1226   GtkStateFlags flags;
1227   GdkRGBA fg_color, bg_color;
1228   gint exterior_size, interior_size, pad, thickness, border_width;
1229   GtkBorderStyle border_style;
1230   GtkBorder border;
1231   GtkStylePropertyContext context;
1232   cairo_pattern_t *pattern;
1233
1234   flags = gtk_theming_engine_get_state (engine);
1235
1236   cairo_save (cr);
1237
1238   gtk_theming_engine_get_color (engine, flags, &fg_color);
1239   gtk_theming_engine_get_background_color (engine, flags, &bg_color);
1240   gtk_theming_engine_get_border (engine, flags, &border);
1241
1242   context.width = width;
1243   context.height = height;
1244
1245   _gtk_theming_engine_get (engine, flags, &context,
1246                            "background-image", &pattern,
1247                            "border-style", &border_style,
1248                            NULL);
1249
1250   if (pattern != NULL)
1251     {
1252       render_background_internal (engine, cr, x, y, width, height, 
1253                                   gtk_theming_engine_get_junction_sides (engine), pattern);
1254       cairo_restore (cr);
1255       cairo_pattern_destroy (pattern);
1256       return;
1257     }
1258
1259   exterior_size = MIN (width, height);
1260   border_width = MIN (MIN (border.top, border.bottom),
1261                       MIN (border.left, border.right));
1262
1263   if (exterior_size % 2 == 0) /* Ensure odd */
1264     exterior_size -= 1;
1265
1266   x -= (1 + exterior_size - width) / 2;
1267   y -= (1 + exterior_size - height) / 2;
1268
1269   if (border_style == GTK_BORDER_STYLE_SOLID)
1270     {
1271       GdkRGBA border_color;
1272
1273       cairo_set_line_width (cr, border_width);
1274       gtk_theming_engine_get_border_color (engine, flags, &border_color);
1275
1276       cairo_new_sub_path (cr);
1277       cairo_arc (cr,
1278                  x + exterior_size / 2.,
1279                  y + exterior_size / 2.,
1280                  (exterior_size - 1) / 2.,
1281                  0, 2 * G_PI);
1282
1283       gdk_cairo_set_source_rgba (cr, &bg_color);
1284       cairo_fill_preserve (cr);
1285
1286       gdk_cairo_set_source_rgba (cr, &border_color);
1287       cairo_stroke (cr);
1288     }
1289
1290   gdk_cairo_set_source_rgba (cr, &fg_color);
1291
1292   /* FIXME: thickness */
1293   thickness = 1;
1294
1295   if (flags & GTK_STATE_FLAG_INCONSISTENT)
1296     {
1297       gint line_thickness;
1298
1299       pad = thickness + MAX (1, (exterior_size - 2 * thickness) / 9);
1300       interior_size = MAX (1, exterior_size - 2 * pad);
1301
1302       if (interior_size < 7)
1303         {
1304           interior_size = 7;
1305           pad = MAX (0, (exterior_size - interior_size) / 2);
1306         }
1307
1308       line_thickness = MAX (1, (3 + interior_size * 2) / 7);
1309
1310       cairo_rectangle (cr,
1311                        x + pad,
1312                        y + pad + (interior_size - line_thickness) / 2.,
1313                        interior_size,
1314                        line_thickness);
1315       cairo_fill (cr);
1316     }
1317   if (flags & GTK_STATE_FLAG_ACTIVE)
1318     {
1319       pad = thickness + MAX (1, 2 * (exterior_size - 2 * thickness) / 9);
1320       interior_size = MAX (1, exterior_size - 2 * pad);
1321
1322       if (interior_size < 5)
1323         {
1324           interior_size = 7;
1325           pad = MAX (0, (exterior_size - interior_size) / 2);
1326         }
1327
1328       cairo_new_sub_path (cr);
1329       cairo_arc (cr,
1330                  x + pad + interior_size / 2.,
1331                  y + pad + interior_size / 2.,
1332                  interior_size / 2.,
1333                  0, 2 * G_PI);
1334       cairo_fill (cr);
1335     }
1336
1337   cairo_restore (cr);
1338 }
1339
1340 static void
1341 add_path_arrow (cairo_t *cr,
1342                 gdouble  angle,
1343                 gdouble  x,
1344                 gdouble  y,
1345                 gdouble  size)
1346 {
1347   cairo_save (cr);
1348
1349   cairo_translate (cr, x + (size / 2), y + (size / 2));
1350   cairo_rotate (cr, angle);
1351
1352   cairo_move_to (cr, 0, - (size / 4));
1353   cairo_line_to (cr, - (size / 2), (size / 4));
1354   cairo_line_to (cr, (size / 2), (size / 4));
1355   cairo_close_path (cr);
1356
1357   cairo_restore (cr);
1358 }
1359
1360 static void
1361 gtk_theming_engine_render_arrow (GtkThemingEngine *engine,
1362                                  cairo_t          *cr,
1363                                  gdouble           angle,
1364                                  gdouble           x,
1365                                  gdouble           y,
1366                                  gdouble           size)
1367 {
1368   GtkStateFlags flags;
1369   GdkRGBA fg_color;
1370
1371   cairo_save (cr);
1372
1373   flags = gtk_theming_engine_get_state (engine);
1374   gtk_theming_engine_get_color (engine, flags, &fg_color);
1375
1376   if (flags & GTK_STATE_FLAG_INSENSITIVE)
1377     {
1378       add_path_arrow (cr, angle, x + 1, y + 1, size);
1379       cairo_set_source_rgb (cr, 1, 1, 1);
1380       cairo_fill (cr);
1381     }
1382
1383   add_path_arrow (cr, angle, x, y, size);
1384   gdk_cairo_set_source_rgba (cr, &fg_color);
1385   cairo_fill (cr);
1386
1387   cairo_restore (cr);
1388 }
1389
1390 static void
1391 add_path_line (cairo_t        *cr,
1392                gdouble         x1,
1393                gdouble         y1,
1394                gdouble         x2,
1395                gdouble         y2)
1396 {
1397   /* Adjust endpoints */
1398   if (y1 == y2)
1399     {
1400       y1 += 0.5;
1401       y2 += 0.5;
1402       x2 += 1;
1403     }
1404   else if (x1 == x2)
1405     {
1406       x1 += 0.5;
1407       x2 += 0.5;
1408       y2 += 1;
1409     }
1410
1411   cairo_move_to (cr, x1, y1);
1412   cairo_line_to (cr, x2, y2);
1413 }
1414
1415 static void
1416 color_shade (const GdkRGBA *color,
1417              gdouble        factor,
1418              GdkRGBA       *color_return)
1419 {
1420   GtkSymbolicColor *literal, *shade;
1421
1422   literal = gtk_symbolic_color_new_literal (color);
1423   shade = gtk_symbolic_color_new_shade (literal, factor);
1424   gtk_symbolic_color_unref (literal);
1425
1426   gtk_symbolic_color_resolve (shade, NULL, color_return);
1427   gtk_symbolic_color_unref (shade);
1428 }
1429
1430 /* optional_background is the background-image, in case it was
1431    already availible we avoid getting it (and thus possibly
1432    rendering it) twice */
1433 static void
1434 render_background_internal (GtkThemingEngine *engine,
1435                             cairo_t          *cr,
1436                             gdouble           x,
1437                             gdouble           y,
1438                             gdouble           width,
1439                             gdouble           height,
1440                             GtkJunctionSides  junction,
1441                             cairo_pattern_t  *optional_background)
1442 {
1443   GdkRGBA bg_color;
1444   cairo_pattern_t *pattern;
1445   GtkCssBackgroundRepeat *repeat;
1446   GtkStateFlags flags;
1447   gboolean running;
1448   gdouble progress;
1449   GtkRoundedBox border_box;
1450   GtkShadow *box_shadow;
1451   GtkBorder border;
1452   GtkStylePropertyContext context;
1453
1454   flags = gtk_theming_engine_get_state (engine);
1455
1456   gtk_theming_engine_get_background_color (engine, flags, &bg_color);
1457
1458   context.width = width;
1459   context.height = height;
1460
1461   if (optional_background)
1462     pattern = cairo_pattern_reference (optional_background);
1463   else
1464     _gtk_theming_engine_get (engine, flags, &context, 
1465                              "background-image", &pattern,
1466                              NULL);
1467
1468   _gtk_theming_engine_get (engine, flags, &context, 
1469                            "background-repeat", &repeat,
1470                            "box-shadow", &box_shadow,
1471                            NULL);
1472
1473   cairo_save (cr);
1474   cairo_translate (cr, x, y);
1475
1476   running = gtk_theming_engine_state_is_running (engine, GTK_STATE_PRELIGHT, &progress);
1477
1478   if (gtk_theming_engine_has_class (engine, "background"))
1479     {
1480       cairo_set_source_rgba (cr, 1.0, 1.0, 1.0, 0.0); /* transparent */
1481       cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
1482       cairo_paint (cr);
1483     }
1484
1485   if (running)
1486     {
1487       cairo_pattern_t *other_pattern;
1488       GtkStateFlags other_flags;
1489       GdkRGBA other_bg;
1490       cairo_pattern_t *new_pattern = NULL;
1491
1492       if (flags & GTK_STATE_FLAG_PRELIGHT)
1493         {
1494           other_flags = flags & ~(GTK_STATE_FLAG_PRELIGHT);
1495           progress = 1 - progress;
1496         }
1497       else
1498         other_flags = flags | GTK_STATE_FLAG_PRELIGHT;
1499
1500       gtk_theming_engine_get_background_color (engine, other_flags, &other_bg);
1501       _gtk_theming_engine_get (engine, other_flags, &context,
1502                                "background-image", &other_pattern,
1503                                NULL);
1504
1505       if (pattern && other_pattern)
1506         {
1507           cairo_pattern_type_t type, other_type;
1508           gint n0, n1;
1509
1510           cairo_pattern_get_color_stop_count (pattern, &n0);
1511           cairo_pattern_get_color_stop_count (other_pattern, &n1);
1512           type = cairo_pattern_get_type (pattern);
1513           other_type = cairo_pattern_get_type (other_pattern);
1514
1515           if (type == other_type && n0 == n1)
1516             {
1517               gdouble offset0, red0, green0, blue0, alpha0;
1518               gdouble offset1, red1, green1, blue1, alpha1;
1519               gdouble x00, x01, y00, y01, x10, x11, y10, y11;
1520               gdouble r00, r01, r10, r11;
1521               guint i;
1522
1523               if (type == CAIRO_PATTERN_TYPE_LINEAR)
1524                 {
1525                   cairo_pattern_get_linear_points (pattern, &x00, &y00, &x01, &y01);
1526                   cairo_pattern_get_linear_points (other_pattern, &x10, &y10, &x11, &y11);
1527
1528                   new_pattern = cairo_pattern_create_linear (x00 + (x10 - x00) * progress,
1529                                                              y00 + (y10 - y00) * progress,
1530                                                              x01 + (x11 - x01) * progress,
1531                                                              y01 + (y11 - y01) * progress);
1532                 }
1533               else
1534                 {
1535                   cairo_pattern_get_radial_circles (pattern, &x00, &y00, &r00, &x01, &y01, &r01);
1536                   cairo_pattern_get_radial_circles (other_pattern, &x10, &y10, &r10, &x11, &y11, &r11);
1537
1538                   new_pattern = cairo_pattern_create_radial (x00 + (x10 - x00) * progress,
1539                                                              y00 + (y10 - y00) * progress,
1540                                                              r00 + (r10 - r00) * progress,
1541                                                              x01 + (x11 - x01) * progress,
1542                                                              y01 + (y11 - y01) * progress,
1543                                                              r01 + (r11 - r01) * progress);
1544                 }
1545
1546               cairo_pattern_set_filter (new_pattern, CAIRO_FILTER_FAST);
1547               i = 0;
1548
1549               /* Blend both gradients into one */
1550               while (i < n0 && i < n1)
1551                 {
1552                   cairo_pattern_get_color_stop_rgba (pattern, i,
1553                                                      &offset0,
1554                                                      &red0, &green0, &blue0,
1555                                                      &alpha0);
1556                   cairo_pattern_get_color_stop_rgba (other_pattern, i,
1557                                                      &offset1,
1558                                                      &red1, &green1, &blue1,
1559                                                      &alpha1);
1560
1561                   cairo_pattern_add_color_stop_rgba (new_pattern,
1562                                                      offset0 + ((offset1 - offset0) * progress),
1563                                                      red0 + ((red1 - red0) * progress),
1564                                                      green0 + ((green1 - green0) * progress),
1565                                                      blue0 + ((blue1 - blue0) * progress),
1566                                                      alpha0 + ((alpha1 - alpha0) * progress));
1567                   i++;
1568                 }
1569             }
1570           else
1571             {
1572               cairo_save (cr);
1573
1574               cairo_rectangle (cr, 0, 0, width, height);
1575               cairo_clip (cr);
1576
1577               cairo_push_group (cr);
1578
1579               cairo_scale (cr, width, height);
1580               cairo_set_source (cr, other_pattern);
1581               cairo_paint_with_alpha (cr, progress);
1582               cairo_set_source (cr, pattern);
1583               cairo_paint_with_alpha (cr, 1.0 - progress);
1584
1585               new_pattern = cairo_pop_group (cr);
1586
1587               cairo_restore (cr);
1588             }
1589         }
1590       else if (pattern || other_pattern)
1591         {
1592           cairo_pattern_t *p;
1593           const GdkRGBA *c;
1594           gdouble x0, y0, x1, y1, r0, r1;
1595           gint n, i;
1596
1597           /* Blend a pattern with a color */
1598           if (pattern)
1599             {
1600               p = pattern;
1601               c = &other_bg;
1602               progress = 1 - progress;
1603             }
1604           else
1605             {
1606               p = other_pattern;
1607               c = &bg_color;
1608             }
1609
1610           if (cairo_pattern_get_type (p) == CAIRO_PATTERN_TYPE_LINEAR)
1611             {
1612               cairo_pattern_get_linear_points (p, &x0, &y0, &x1, &y1);
1613               new_pattern = cairo_pattern_create_linear (x0, y0, x1, y1);
1614             }
1615           else
1616             {
1617               cairo_pattern_get_radial_circles (p, &x0, &y0, &r0, &x1, &y1, &r1);
1618               new_pattern = cairo_pattern_create_radial (x0, y0, r0, x1, y1, r1);
1619             }
1620
1621           cairo_pattern_get_color_stop_count (p, &n);
1622
1623           for (i = 0; i < n; i++)
1624             {
1625               gdouble red1, green1, blue1, alpha1;
1626               gdouble offset;
1627
1628               cairo_pattern_get_color_stop_rgba (p, i,
1629                                                  &offset,
1630                                                  &red1, &green1, &blue1,
1631                                                  &alpha1);
1632               cairo_pattern_add_color_stop_rgba (new_pattern, offset,
1633                                                  c->red + ((red1 - c->red) * progress),
1634                                                  c->green + ((green1 - c->green) * progress),
1635                                                  c->blue + ((blue1 - c->blue) * progress),
1636                                                  c->alpha + ((alpha1 - c->alpha) * progress));
1637             }
1638         }
1639       else
1640         {
1641           /* Merge just colors */
1642           new_pattern = cairo_pattern_create_rgba (CLAMP (bg_color.red + ((other_bg.red - bg_color.red) * progress), 0, 1),
1643                                                    CLAMP (bg_color.green + ((other_bg.green - bg_color.green) * progress), 0, 1),
1644                                                    CLAMP (bg_color.blue + ((other_bg.blue - bg_color.blue) * progress), 0, 1),
1645                                                    CLAMP (bg_color.alpha + ((other_bg.alpha - bg_color.alpha) * progress), 0, 1));
1646         }
1647
1648       if (new_pattern)
1649         {
1650           /* Replace pattern to use */
1651           cairo_pattern_destroy (pattern);
1652           pattern = new_pattern;
1653         }
1654
1655       if (other_pattern)
1656         cairo_pattern_destroy (other_pattern);
1657     }
1658
1659   gtk_theming_engine_get_border (engine, flags, &border);
1660
1661   /* In the CSS box model, by default the background positioning area is
1662    * the padding-box, i.e. all the border-box minus the borders themselves,
1663    * which determines also its default size, see
1664    * http://dev.w3.org/csswg/css3-background/#background-origin
1665    *
1666    * In the future we might want to support different origins or clips, but
1667    * right now we just shrink to the default.
1668    */
1669   _gtk_rounded_box_init_rect (&border_box, 0, 0, width, height);
1670   _gtk_rounded_box_apply_border_radius (&border_box, engine, flags, junction);
1671   _gtk_rounded_box_shrink (&border_box,
1672                            border.top, border.right,
1673                            border.bottom, border.left);
1674   _gtk_rounded_box_path (&border_box, cr);
1675
1676   if (pattern)
1677     {
1678       cairo_surface_t *surface;
1679       int scale_width, scale_height;
1680
1681       if (cairo_pattern_get_surface (pattern, &surface) != CAIRO_STATUS_SUCCESS)
1682           surface = NULL;
1683
1684       if (surface && repeat &&
1685           repeat->repeat != GTK_CSS_BACKGROUND_REPEAT_STYLE_NONE)
1686         {
1687           scale_width = cairo_image_surface_get_width (surface);
1688           scale_height = cairo_image_surface_get_height (surface);
1689           if (repeat->repeat == GTK_CSS_BACKGROUND_REPEAT_STYLE_REPEAT)
1690             cairo_pattern_set_extend (pattern, CAIRO_EXTEND_REPEAT);
1691           else if (repeat->repeat == GTK_CSS_BACKGROUND_REPEAT_STYLE_NO_REPEAT)
1692             cairo_pattern_set_extend (pattern, CAIRO_EXTEND_NONE);
1693         }
1694       else
1695         {
1696           cairo_pattern_set_extend (pattern, CAIRO_EXTEND_PAD);
1697           scale_width = width;
1698           scale_height = height;
1699         }
1700
1701       cairo_scale (cr, scale_width, scale_height);
1702       cairo_set_source (cr, pattern);
1703       cairo_scale (cr, 1.0 / scale_width, 1.0 / scale_height);
1704     }
1705   else
1706     gdk_cairo_set_source_rgba (cr, &bg_color);
1707
1708   cairo_fill (cr);
1709
1710   if (pattern)
1711     cairo_pattern_destroy (pattern);
1712
1713   if (repeat)
1714     g_free (repeat);
1715
1716   if (box_shadow != NULL)
1717     {
1718       _gtk_box_shadow_render (box_shadow, cr, &border_box);
1719       _gtk_shadow_unref (box_shadow);
1720     }
1721
1722   cairo_restore (cr);
1723 }
1724
1725 static void
1726 gtk_theming_engine_render_background (GtkThemingEngine *engine,
1727                                       cairo_t          *cr,
1728                                       gdouble           x,
1729                                       gdouble           y,
1730                                       gdouble           width,
1731                                       gdouble           height)
1732 {
1733   GtkJunctionSides junction;
1734
1735   junction = gtk_theming_engine_get_junction_sides (engine);
1736
1737   render_background_internal (engine, cr,
1738                               x, y, width, height,
1739                               junction, NULL);
1740 }
1741
1742 static void
1743 gtk_theming_engine_hide_border_sides (GtkBorder *border,
1744                                       guint      hidden_side)
1745 {
1746   if (hidden_side & SIDE_TOP)
1747     border->top = 0;
1748   if (hidden_side & SIDE_RIGHT)
1749     border->right = 0;
1750   if (hidden_side & SIDE_BOTTOM)
1751     border->bottom = 0;
1752   if (hidden_side & SIDE_LEFT)
1753     border->left = 0;
1754 }
1755
1756 static void
1757 render_frame_internal (GtkThemingEngine *engine,
1758                        cairo_t          *cr,
1759                        gdouble           x,
1760                        gdouble           y,
1761                        gdouble           width,
1762                        gdouble           height,
1763                        guint             hidden_side,
1764                        GtkJunctionSides  junction)
1765 {
1766   GtkStateFlags state;
1767   GtkBorderStyle border_style;
1768   GtkRoundedBox border_box, padding_box;
1769   gdouble progress;
1770   gboolean running;
1771   GtkBorder border;
1772   static const guint current_side[4] = { SIDE_TOP, SIDE_RIGHT, SIDE_BOTTOM, SIDE_LEFT };
1773   GdkRGBA *colors[4];
1774   guint i, j;
1775
1776   state = gtk_theming_engine_get_state (engine);
1777
1778   gtk_theming_engine_get_border (engine, state, &border);
1779   gtk_theming_engine_hide_border_sides (&border, hidden_side);
1780
1781   gtk_theming_engine_get (engine, state,
1782                           "border-style", &border_style,
1783                           "border-top-color", &colors[0],
1784                           "border-right-color", &colors[1],
1785                           "border-bottom-color", &colors[2],
1786                           "border-left-color", &colors[3],
1787                           NULL);
1788
1789   running = gtk_theming_engine_state_is_running (engine, GTK_STATE_PRELIGHT, &progress);
1790
1791   if (running)
1792     {
1793       GtkStateFlags other_state;
1794       GdkRGBA *other_colors[4];
1795
1796       if (state & GTK_STATE_FLAG_PRELIGHT)
1797         {
1798           other_state = state & ~(GTK_STATE_FLAG_PRELIGHT);
1799           progress = 1 - progress;
1800         }
1801       else
1802         other_state = state | GTK_STATE_FLAG_PRELIGHT;
1803
1804       gtk_theming_engine_get (engine, other_state,
1805                               "border-top-color", &other_colors[0],
1806                               "border-right-color", &other_colors[1],
1807                               "border-bottom-color", &other_colors[2],
1808                               "border-left-color", &other_colors[3],
1809                               NULL);
1810
1811       for (i = 0; i < 4; i++)
1812         {
1813           colors[i]->red = CLAMP (colors[i]->red + ((other_colors[i]->red - colors[i]->red) * progress), 0, 1);
1814           colors[i]->green = CLAMP (colors[i]->green + ((other_colors[i]->green - colors[i]->green) * progress), 0, 1);
1815           colors[i]->blue = CLAMP (colors[i]->blue + ((other_colors[i]->blue - colors[i]->blue) * progress), 0, 1);
1816           colors[i]->alpha = CLAMP (colors[i]->alpha + ((other_colors[i]->alpha - colors[i]->alpha) * progress), 0, 1);
1817           gdk_rgba_free (other_colors[i]);
1818         }
1819     }
1820
1821   switch (border_style)
1822     {
1823     default:
1824       g_assert_not_reached ();
1825     case GTK_BORDER_STYLE_NONE:
1826     case GTK_BORDER_STYLE_SOLID:
1827       break;
1828     case GTK_BORDER_STYLE_INSET:
1829       color_shade (colors[1], 1.8, colors[1]);
1830       color_shade (colors[2], 1.8, colors[2]);
1831       break;
1832     case GTK_BORDER_STYLE_OUTSET:
1833       color_shade (colors[0], 1.8, colors[0]);
1834       color_shade (colors[3], 1.8, colors[3]);
1835       break;
1836     }
1837
1838   cairo_save (cr);
1839
1840   cairo_set_fill_rule (cr, CAIRO_FILL_RULE_EVEN_ODD);
1841
1842   _gtk_rounded_box_init_rect (&border_box, x, y, width, height);
1843   _gtk_rounded_box_apply_border_radius (&border_box, engine, state, junction);
1844   padding_box = border_box;
1845   _gtk_rounded_box_shrink (&padding_box, border.top, border.right, border.bottom, border.left);
1846
1847   switch (border_style)
1848     {
1849     case GTK_BORDER_STYLE_NONE:
1850       break;
1851     case GTK_BORDER_STYLE_SOLID:
1852     case GTK_BORDER_STYLE_INSET:
1853     case GTK_BORDER_STYLE_OUTSET:
1854
1855       if (gdk_rgba_equal (colors[0], colors[1]) &&
1856           gdk_rgba_equal (colors[0], colors[2]) &&
1857           gdk_rgba_equal (colors[0], colors[3]))
1858         {
1859           gdk_cairo_set_source_rgba (cr, colors[0]);
1860
1861           _gtk_rounded_box_path (&border_box, cr);
1862           _gtk_rounded_box_path (&padding_box, cr);
1863           cairo_fill (cr);
1864         }
1865       else
1866         {
1867           for (i = 0; i < 4; i++) 
1868             {
1869               if (hidden_side & current_side[i])
1870                 continue;
1871
1872               for (j = 0; j < 4; j++)
1873                 { 
1874                   if (hidden_side & current_side[j])
1875                     continue;
1876
1877                   if (i == j || 
1878                       gdk_rgba_equal (colors[i], colors[j]))
1879                     {
1880                       /* We were already painted when i == j */
1881                       if (i > j)
1882                         break;
1883
1884                       if (j == 0)
1885                         _gtk_rounded_box_path_top (&border_box, &padding_box, cr);
1886                       else if (j == 1)
1887                         _gtk_rounded_box_path_right (&border_box, &padding_box, cr);
1888                       else if (j == 2)
1889                         _gtk_rounded_box_path_bottom (&border_box, &padding_box, cr);
1890                       else if (j == 3)
1891                         _gtk_rounded_box_path_left (&border_box, &padding_box, cr);
1892                     }
1893                 }
1894               /* We were already painted when i == j */
1895               if (i > j)
1896                 continue;
1897
1898               gdk_cairo_set_source_rgba (cr, colors[i]);
1899
1900               cairo_fill (cr);
1901             }
1902         }
1903       break;
1904     }
1905
1906   cairo_restore (cr);
1907
1908   for (i = 0; i < 4; i++)
1909     gdk_rgba_free (colors[i]);
1910 }
1911
1912 static void
1913 gtk_theming_engine_render_frame (GtkThemingEngine *engine,
1914                                  cairo_t          *cr,
1915                                  gdouble           x,
1916                                  gdouble           y,
1917                                  gdouble           width,
1918                                  gdouble           height)
1919 {
1920   GtkStateFlags flags;
1921   GtkBorderStyle border_style;
1922   GtkJunctionSides junction;
1923   GtkBorderImage *border_image;
1924   GtkBorder border;
1925   GtkStylePropertyContext context;
1926
1927   flags = gtk_theming_engine_get_state (engine);
1928   junction = gtk_theming_engine_get_junction_sides (engine);
1929   gtk_theming_engine_get_border (engine, flags, &border);
1930
1931   context.width = width;
1932   context.height = height;
1933
1934   _gtk_theming_engine_get (engine, flags, &context,
1935                            "border-image", &border_image,
1936                            "border-style", &border_style,
1937                            NULL);
1938
1939   if (border_image != NULL)
1940     {
1941       _gtk_border_image_render (border_image, &border,
1942                                 cr, x, y, width, height);
1943       _gtk_border_image_unref (border_image);
1944     }
1945   else if (border_style != GTK_BORDER_STYLE_NONE)
1946     render_frame_internal (engine, cr,
1947                            x, y, width, height,
1948                            0, junction);
1949 }
1950
1951 static void
1952 gtk_theming_engine_render_expander (GtkThemingEngine *engine,
1953                                     cairo_t          *cr,
1954                                     gdouble           x,
1955                                     gdouble           y,
1956                                     gdouble           width,
1957                                     gdouble           height)
1958 {
1959   GtkStateFlags flags;
1960   GdkRGBA outline_color, fg_color;
1961   double vertical_overshoot;
1962   int diameter;
1963   double radius;
1964   double interp;                /* interpolation factor for center position */
1965   double x_double_horz, y_double_horz;
1966   double x_double_vert, y_double_vert;
1967   double x_double, y_double;
1968   gdouble angle;
1969   gint line_width;
1970   gboolean running, is_rtl;
1971   gdouble progress;
1972
1973   cairo_save (cr);
1974   flags = gtk_theming_engine_get_state (engine);
1975
1976   gtk_theming_engine_get_color (engine, flags, &fg_color);
1977   gtk_theming_engine_get_border_color (engine, flags, &outline_color);
1978
1979   running = gtk_theming_engine_state_is_running (engine, GTK_STATE_ACTIVE, &progress);
1980   is_rtl = (gtk_theming_engine_get_direction (engine) == GTK_TEXT_DIR_RTL);
1981   line_width = 1;
1982
1983   if (!running)
1984     progress = (flags & GTK_STATE_FLAG_ACTIVE) ? 1 : 0;
1985
1986   if (!gtk_theming_engine_has_class (engine, GTK_STYLE_CLASS_HORIZONTAL))
1987     {
1988       if (is_rtl)
1989         angle = (G_PI) - ((G_PI / 2) * progress);
1990       else
1991         angle = (G_PI / 2) * progress;
1992     }
1993   else
1994     {
1995       if (is_rtl)
1996         angle = (G_PI / 2) + ((G_PI / 2) * progress);
1997       else
1998         angle = (G_PI / 2) - ((G_PI / 2) * progress);
1999     }
2000
2001   interp = progress;
2002
2003   /* Compute distance that the stroke extends beyonds the end
2004    * of the triangle we draw.
2005    */
2006   vertical_overshoot = line_width / 2.0 * (1. / tan (G_PI / 8));
2007
2008   /* For odd line widths, we end the vertical line of the triangle
2009    * at a half pixel, so we round differently.
2010    */
2011   if (line_width % 2 == 1)
2012     vertical_overshoot = ceil (0.5 + vertical_overshoot) - 0.5;
2013   else
2014     vertical_overshoot = ceil (vertical_overshoot);
2015
2016   /* Adjust the size of the triangle we draw so that the entire stroke fits
2017    */
2018   diameter = (gint) MAX (3, width - 2 * vertical_overshoot);
2019
2020   /* If the line width is odd, we want the diameter to be even,
2021    * and vice versa, so force the sum to be odd. This relationship
2022    * makes the point of the triangle look right.
2023    */
2024   diameter -= (1 - (diameter + line_width) % 2);
2025
2026   radius = diameter / 2.;
2027
2028   /* Adjust the center so that the stroke is properly aligned with
2029    * the pixel grid. The center adjustment is different for the
2030    * horizontal and vertical orientations. For intermediate positions
2031    * we interpolate between the two.
2032    */
2033   x_double_vert = floor ((x + width / 2) - (radius + line_width) / 2.) + (radius + line_width) / 2.;
2034   y_double_vert = (y + height / 2) - 0.5;
2035
2036   x_double_horz = (x + width / 2) - 0.5;
2037   y_double_horz = floor ((y + height / 2) - (radius + line_width) / 2.) + (radius + line_width) / 2.;
2038
2039   x_double = x_double_vert * (1 - interp) + x_double_horz * interp;
2040   y_double = y_double_vert * (1 - interp) + y_double_horz * interp;
2041
2042   cairo_translate (cr, x_double, y_double);
2043   cairo_rotate (cr, angle);
2044
2045   cairo_move_to (cr, - radius / 2., - radius);
2046   cairo_line_to (cr,   radius / 2.,   0);
2047   cairo_line_to (cr, - radius / 2.,   radius);
2048   cairo_close_path (cr);
2049
2050   cairo_set_line_width (cr, line_width);
2051
2052   gdk_cairo_set_source_rgba (cr, &fg_color);
2053
2054   cairo_fill_preserve (cr);
2055
2056   gdk_cairo_set_source_rgba (cr, &outline_color);
2057   cairo_stroke (cr);
2058
2059   cairo_restore (cr);
2060 }
2061
2062 static void
2063 gtk_theming_engine_render_focus (GtkThemingEngine *engine,
2064                                  cairo_t          *cr,
2065                                  gdouble           x,
2066                                  gdouble           y,
2067                                  gdouble           width,
2068                                  gdouble           height)
2069 {
2070   GtkStateFlags flags;
2071   GdkRGBA color;
2072   gint line_width;
2073   gint8 *dash_list;
2074
2075   cairo_save (cr);
2076   flags = gtk_theming_engine_get_state (engine);
2077
2078   gtk_theming_engine_get_color (engine, flags, &color);
2079
2080   gtk_theming_engine_get_style (engine,
2081                                 "focus-line-width", &line_width,
2082                                 "focus-line-pattern", (gchar *) &dash_list,
2083                                 NULL);
2084
2085   cairo_set_line_width (cr, (gdouble) line_width);
2086
2087   if (dash_list[0])
2088     {
2089       gint n_dashes = strlen ((const gchar *) dash_list);
2090       gdouble *dashes = g_new (gdouble, n_dashes);
2091       gdouble total_length = 0;
2092       gdouble dash_offset;
2093       gint i;
2094
2095       for (i = 0; i < n_dashes; i++)
2096         {
2097           dashes[i] = dash_list[i];
2098           total_length += dash_list[i];
2099         }
2100
2101       /* The dash offset here aligns the pattern to integer pixels
2102        * by starting the dash at the right side of the left border
2103        * Negative dash offsets in cairo don't work
2104        * (https://bugs.freedesktop.org/show_bug.cgi?id=2729)
2105        */
2106       dash_offset = - line_width / 2.;
2107
2108       while (dash_offset < 0)
2109         dash_offset += total_length;
2110
2111       cairo_set_dash (cr, dashes, n_dashes, dash_offset);
2112       g_free (dashes);
2113     }
2114
2115   cairo_rectangle (cr,
2116                    x + line_width / 2.,
2117                    y + line_width / 2.,
2118                    width - line_width,
2119                    height - line_width);
2120
2121   gdk_cairo_set_source_rgba (cr, &color);
2122   cairo_stroke (cr);
2123
2124   cairo_restore (cr);
2125
2126   g_free (dash_list);
2127 }
2128
2129 static void
2130 gtk_theming_engine_render_line (GtkThemingEngine *engine,
2131                                 cairo_t          *cr,
2132                                 gdouble           x0,
2133                                 gdouble           y0,
2134                                 gdouble           x1,
2135                                 gdouble           y1)
2136 {
2137   GdkRGBA color;
2138   GtkStateFlags flags;
2139
2140   flags = gtk_theming_engine_get_state (engine);
2141   cairo_save (cr);
2142
2143   gtk_theming_engine_get_color (engine, flags, &color);
2144
2145   cairo_set_line_cap (cr, CAIRO_LINE_CAP_SQUARE);
2146   cairo_set_line_width (cr, 1);
2147
2148   cairo_move_to (cr, x0 + 0.5, y0 + 0.5);
2149   cairo_line_to (cr, x1 + 0.5, y1 + 0.5);
2150
2151   gdk_cairo_set_source_rgba (cr, &color);
2152   cairo_stroke (cr);
2153
2154   cairo_restore (cr);
2155 }
2156
2157 static void
2158 prepare_context_for_layout (cairo_t *cr,
2159                             gdouble x,
2160                             gdouble y,
2161                             PangoLayout *layout)
2162 {
2163   const PangoMatrix *matrix;
2164
2165   matrix = pango_context_get_matrix (pango_layout_get_context (layout));
2166
2167   cairo_move_to (cr, x, y);
2168
2169   if (matrix)
2170     {
2171       cairo_matrix_t cairo_matrix;
2172
2173       cairo_matrix_init (&cairo_matrix,
2174                          matrix->xx, matrix->yx,
2175                          matrix->xy, matrix->yy,
2176                          matrix->x0, matrix->y0);
2177
2178       cairo_transform (cr, &cairo_matrix);
2179     }
2180 }
2181
2182 static void
2183 gtk_theming_engine_render_layout (GtkThemingEngine *engine,
2184                                   cairo_t          *cr,
2185                                   gdouble           x,
2186                                   gdouble           y,
2187                                   PangoLayout      *layout)
2188 {
2189   GdkRGBA fg_color;
2190   GtkShadow *text_shadow = NULL;
2191   GtkStateFlags flags;
2192   gdouble progress;
2193   gboolean running;
2194
2195   cairo_save (cr);
2196   flags = gtk_theming_engine_get_state (engine);
2197   gtk_theming_engine_get_color (engine, flags, &fg_color);
2198
2199   running = gtk_theming_engine_state_is_running (engine, GTK_STATE_PRELIGHT, &progress);
2200
2201   if (running)
2202     {
2203       GtkStateFlags other_flags;
2204       GdkRGBA other_fg;
2205
2206       if (flags & GTK_STATE_FLAG_PRELIGHT)
2207         {
2208           other_flags = flags & ~(GTK_STATE_FLAG_PRELIGHT);
2209           progress = 1 - progress;
2210         }
2211       else
2212         other_flags = flags | GTK_STATE_FLAG_PRELIGHT;
2213
2214       gtk_theming_engine_get_color (engine, other_flags, &other_fg);
2215
2216       fg_color.red = CLAMP (fg_color.red + ((other_fg.red - fg_color.red) * progress), 0, 1);
2217       fg_color.green = CLAMP (fg_color.green + ((other_fg.green - fg_color.green) * progress), 0, 1);
2218       fg_color.blue = CLAMP (fg_color.blue + ((other_fg.blue - fg_color.blue) * progress), 0, 1);
2219       fg_color.alpha = CLAMP (fg_color.alpha + ((other_fg.alpha - fg_color.alpha) * progress), 0, 1);
2220     }
2221
2222   gtk_theming_engine_get (engine, flags,
2223                           "text-shadow", &text_shadow,
2224                           NULL);
2225
2226   prepare_context_for_layout (cr, x, y, layout);
2227
2228   if (text_shadow != NULL)
2229     {
2230       _gtk_text_shadow_paint_layout (text_shadow, cr, layout);
2231       _gtk_shadow_unref (text_shadow);
2232     }
2233
2234   gdk_cairo_set_source_rgba (cr, &fg_color);
2235   pango_cairo_show_layout (cr, layout);
2236
2237   cairo_restore (cr);
2238 }
2239
2240 static void
2241 gtk_theming_engine_render_slider (GtkThemingEngine *engine,
2242                                   cairo_t          *cr,
2243                                   gdouble           x,
2244                                   gdouble           y,
2245                                   gdouble           width,
2246                                   gdouble           height,
2247                                   GtkOrientation    orientation)
2248 {
2249   const GtkWidgetPath *path;
2250   gint thickness;
2251
2252   path = gtk_theming_engine_get_path (engine);
2253
2254   gtk_theming_engine_render_background (engine, cr, x, y, width, height);
2255   gtk_theming_engine_render_frame (engine, cr, x, y, width, height);
2256
2257   /* FIXME: thickness */
2258   thickness = 2;
2259
2260   if (gtk_widget_path_is_type (path, GTK_TYPE_SCALE))
2261     {
2262       if (orientation == GTK_ORIENTATION_VERTICAL)
2263         gtk_theming_engine_render_line (engine, cr,
2264                                         x + thickness,
2265                                         y + (gint) height / 2,
2266                                         x + width - thickness - 1,
2267                                         y + (gint) height / 2);
2268       else
2269         gtk_theming_engine_render_line (engine, cr,
2270                                         x + (gint) width / 2,
2271                                         y + thickness,
2272                                         x + (gint) width / 2,
2273                                         y + height - thickness - 1);
2274     }
2275 }
2276
2277 static void
2278 gtk_theming_engine_render_frame_gap (GtkThemingEngine *engine,
2279                                      cairo_t          *cr,
2280                                      gdouble           x,
2281                                      gdouble           y,
2282                                      gdouble           width,
2283                                      gdouble           height,
2284                                      GtkPositionType   gap_side,
2285                                      gdouble           xy0_gap,
2286                                      gdouble           xy1_gap)
2287 {
2288   GtkJunctionSides junction;
2289   GtkStateFlags state;
2290   gint border_width;
2291   GtkCssBorderCornerRadius *top_left_radius, *top_right_radius;
2292   GtkCssBorderCornerRadius *bottom_left_radius, *bottom_right_radius;
2293   GtkCssBorderRadius border_radius = { { 0, },  };
2294   gdouble x0, y0, x1, y1, xc, yc, wc, hc;
2295   GtkBorder border;
2296
2297   xc = yc = wc = hc = 0;
2298   state = gtk_theming_engine_get_state (engine);
2299   junction = gtk_theming_engine_get_junction_sides (engine);
2300
2301   gtk_theming_engine_get_border (engine, state, &border);
2302   gtk_theming_engine_get (engine, state,
2303                           /* Can't use border-radius as it's an int for
2304                            * backwards compat */
2305                           "border-top-left-radius", &top_left_radius,
2306                           "border-top-right-radius", &top_right_radius,
2307                           "border-bottom-right-radius", &bottom_right_radius,
2308                           "border-bottom-left-radius", &bottom_left_radius,
2309                           NULL);
2310
2311   if (top_left_radius)
2312     border_radius.top_left = *top_left_radius;
2313   g_free (top_left_radius);
2314   if (top_right_radius)
2315     border_radius.top_right = *top_right_radius;
2316   g_free (top_right_radius);
2317   if (bottom_right_radius)
2318     border_radius.bottom_right = *bottom_right_radius;
2319   g_free (bottom_right_radius);
2320   if (bottom_left_radius)
2321     border_radius.bottom_left = *bottom_left_radius;
2322   g_free (bottom_left_radius);
2323
2324   border_width = MIN (MIN (border.top, border.bottom),
2325                       MIN (border.left, border.right));
2326
2327   cairo_save (cr);
2328
2329   switch (gap_side)
2330     {
2331     case GTK_POS_TOP:
2332       xc = x + xy0_gap + border_width;
2333       yc = y;
2334       wc = MAX (xy1_gap - xy0_gap - 2 * border_width, 0);
2335       hc = border_width;
2336
2337       if (xy0_gap < border_radius.top_left.horizontal)
2338         junction |= GTK_JUNCTION_CORNER_TOPLEFT;
2339
2340       if (xy1_gap > width - border_radius.top_right.horizontal)
2341         junction |= GTK_JUNCTION_CORNER_TOPRIGHT;
2342       break;
2343     case GTK_POS_BOTTOM:
2344       xc = x + xy0_gap + border_width;
2345       yc = y + height - border_width;
2346       wc = MAX (xy1_gap - xy0_gap - 2 * border_width, 0);
2347       hc = border_width;
2348
2349       if (xy0_gap < border_radius.bottom_left.horizontal)
2350         junction |= GTK_JUNCTION_CORNER_BOTTOMLEFT;
2351
2352       if (xy1_gap > width - border_radius.bottom_right.horizontal)
2353         junction |= GTK_JUNCTION_CORNER_BOTTOMRIGHT;
2354
2355       break;
2356     case GTK_POS_LEFT:
2357       xc = x;
2358       yc = y + xy0_gap + border_width;
2359       wc = border_width;
2360       hc = MAX (xy1_gap - xy0_gap - 2 * border_width, 0);
2361
2362       if (xy0_gap < border_radius.top_left.vertical)
2363         junction |= GTK_JUNCTION_CORNER_TOPLEFT;
2364
2365       if (xy1_gap > height - border_radius.bottom_left.vertical)
2366         junction |= GTK_JUNCTION_CORNER_BOTTOMLEFT;
2367
2368       break;
2369     case GTK_POS_RIGHT:
2370       xc = x + width - border_width;
2371       yc = y + xy0_gap + border_width;
2372       wc = border_width;
2373       hc = MAX (xy1_gap - xy0_gap - 2 * border_width, 0);
2374
2375       if (xy0_gap < border_radius.top_right.vertical)
2376         junction |= GTK_JUNCTION_CORNER_TOPRIGHT;
2377
2378       if (xy1_gap > height - border_radius.bottom_right.vertical)
2379         junction |= GTK_JUNCTION_CORNER_BOTTOMRIGHT;
2380
2381       break;
2382     }
2383
2384   cairo_clip_extents (cr, &x0, &y0, &x1, &y1);
2385   cairo_rectangle (cr, x0, y0, x1 - x0, yc - y0);
2386   cairo_rectangle (cr, x0, yc, xc - x0, hc);
2387   cairo_rectangle (cr, xc + wc, yc, x1 - (xc + wc), hc);
2388   cairo_rectangle (cr, x0, yc + hc, x1 - x0, y1 - (yc + hc));
2389   cairo_clip (cr);
2390
2391   render_frame_internal (engine, cr,
2392                          x, y, width, height,
2393                          0, junction);
2394
2395   cairo_restore (cr);
2396 }
2397
2398 static void
2399 gtk_theming_engine_render_extension (GtkThemingEngine *engine,
2400                                      cairo_t          *cr,
2401                                      gdouble           x,
2402                                      gdouble           y,
2403                                      gdouble           width,
2404                                      gdouble           height,
2405                                      GtkPositionType   gap_side)
2406 {
2407   GtkJunctionSides junction = 0;
2408   guint hidden_side = 0;
2409
2410   cairo_save (cr);
2411
2412   switch (gap_side)
2413     {
2414     case GTK_POS_LEFT:
2415       junction = GTK_JUNCTION_LEFT;
2416       hidden_side = SIDE_LEFT;
2417
2418       cairo_translate (cr, x + width, y);
2419       cairo_rotate (cr, G_PI / 2);
2420       break;
2421     case GTK_POS_RIGHT:
2422       junction = GTK_JUNCTION_RIGHT;
2423       hidden_side = SIDE_RIGHT;
2424
2425       cairo_translate (cr, x, y + height);
2426       cairo_rotate (cr, - G_PI / 2);
2427       break;
2428     case GTK_POS_TOP:
2429       junction = GTK_JUNCTION_TOP;
2430       hidden_side = SIDE_TOP;
2431
2432       cairo_translate (cr, x + width, y + height);
2433       cairo_rotate (cr, G_PI);
2434       break;
2435     case GTK_POS_BOTTOM:
2436       junction = GTK_JUNCTION_BOTTOM;
2437       hidden_side = SIDE_BOTTOM;
2438
2439       cairo_translate (cr, x, y);
2440       break;
2441     }
2442
2443   if (gap_side == GTK_POS_TOP ||
2444       gap_side == GTK_POS_BOTTOM)
2445     render_background_internal (engine, cr,
2446                                 0, 0, width, height,
2447                                 GTK_JUNCTION_BOTTOM, NULL);
2448   else
2449     render_background_internal (engine, cr,
2450                                 0, 0, height, width,
2451                                 GTK_JUNCTION_BOTTOM, NULL);
2452   cairo_restore (cr);
2453
2454   cairo_save (cr);
2455
2456   render_frame_internal (engine, cr,
2457                          x, y, width, height,
2458                          hidden_side, junction);
2459
2460   cairo_restore (cr);
2461 }
2462
2463 static void
2464 render_dot (cairo_t       *cr,
2465             const GdkRGBA *lighter,
2466             const GdkRGBA *darker,
2467             gdouble        x,
2468             gdouble        y,
2469             gdouble        size)
2470 {
2471   size = CLAMP ((gint) size, 2, 3);
2472
2473   if (size == 2)
2474     {
2475       gdk_cairo_set_source_rgba (cr, lighter);
2476       cairo_rectangle (cr, x, y, 1, 1);
2477       cairo_rectangle (cr, x + 1, y + 1, 1, 1);
2478       cairo_fill (cr);
2479     }
2480   else if (size == 3)
2481     {
2482       gdk_cairo_set_source_rgba (cr, lighter);
2483       cairo_rectangle (cr, x, y, 2, 1);
2484       cairo_rectangle (cr, x, y, 1, 2);
2485       cairo_fill (cr);
2486
2487       gdk_cairo_set_source_rgba (cr, darker);
2488       cairo_rectangle (cr, x + 1, y + 1, 2, 1);
2489       cairo_rectangle (cr, x + 2, y, 1, 2);
2490       cairo_fill (cr);
2491     }
2492 }
2493
2494 static void
2495 gtk_theming_engine_render_handle (GtkThemingEngine *engine,
2496                                   cairo_t          *cr,
2497                                   gdouble           x,
2498                                   gdouble           y,
2499                                   gdouble           width,
2500                                   gdouble           height)
2501 {
2502   GtkStateFlags flags;
2503   GdkRGBA bg_color, lighter, darker;
2504   GtkJunctionSides sides;
2505   gint xx, yy;
2506
2507   cairo_save (cr);
2508   flags = gtk_theming_engine_get_state (engine);
2509
2510   cairo_set_line_width (cr, 1.0);
2511   sides = gtk_theming_engine_get_junction_sides (engine);
2512   gtk_theming_engine_get_background_color (engine, flags, &bg_color);
2513
2514   color_shade (&bg_color, 0.7, &darker);
2515   color_shade (&bg_color, 1.3, &lighter);
2516
2517   render_background_internal (engine, cr, x, y, width, height, sides, NULL);
2518
2519   if (gtk_theming_engine_has_class (engine, GTK_STYLE_CLASS_GRIP))
2520     {
2521       /* reduce confusing values to a meaningful state */
2522       if ((sides & (GTK_JUNCTION_CORNER_TOPLEFT | GTK_JUNCTION_CORNER_BOTTOMRIGHT)) == (GTK_JUNCTION_CORNER_TOPLEFT | GTK_JUNCTION_CORNER_BOTTOMRIGHT))
2523         sides &= ~GTK_JUNCTION_CORNER_TOPLEFT;
2524
2525       if ((sides & (GTK_JUNCTION_CORNER_TOPRIGHT | GTK_JUNCTION_CORNER_BOTTOMLEFT)) == (GTK_JUNCTION_CORNER_TOPRIGHT | GTK_JUNCTION_CORNER_BOTTOMLEFT))
2526         sides &= ~GTK_JUNCTION_CORNER_TOPRIGHT;
2527
2528       if (sides == 0)
2529         sides = GTK_JUNCTION_CORNER_BOTTOMRIGHT;
2530
2531       /* align drawing area to the connected side */
2532       if (sides == GTK_JUNCTION_LEFT)
2533         {
2534           if (height < width)
2535             width = height;
2536         }
2537       else if (sides == GTK_JUNCTION_CORNER_TOPLEFT)
2538         {
2539           if (width < height)
2540             height = width;
2541           else if (height < width)
2542             width = height;
2543         }
2544       else if (sides == GTK_JUNCTION_CORNER_BOTTOMLEFT)
2545         {
2546           /* make it square, aligning to bottom left */
2547           if (width < height)
2548             {
2549               y += (height - width);
2550               height = width;
2551             }
2552           else if (height < width)
2553             width = height;
2554         }
2555       else if (sides == GTK_JUNCTION_RIGHT)
2556         {
2557           /* aligning to right */
2558           if (height < width)
2559             {
2560               x += (width - height);
2561               width = height;
2562             }
2563         }
2564       else if (sides == GTK_JUNCTION_CORNER_TOPRIGHT)
2565         {
2566           if (width < height)
2567             height = width;
2568           else if (height < width)
2569             {
2570               x += (width - height);
2571               width = height;
2572             }
2573         }
2574       else if (sides == GTK_JUNCTION_CORNER_BOTTOMRIGHT)
2575         {
2576           /* make it square, aligning to bottom right */
2577           if (width < height)
2578             {
2579               y += (height - width);
2580               height = width;
2581             }
2582           else if (height < width)
2583             {
2584               x += (width - height);
2585               width = height;
2586             }
2587         }
2588       else if (sides == GTK_JUNCTION_TOP)
2589         {
2590           if (width < height)
2591             height = width;
2592         }
2593       else if (sides == GTK_JUNCTION_BOTTOM)
2594         {
2595           /* align to bottom */
2596           if (width < height)
2597             {
2598               y += (height - width);
2599               height = width;
2600             }
2601         }
2602       else
2603         g_assert_not_reached ();
2604
2605       if (sides == GTK_JUNCTION_LEFT ||
2606           sides == GTK_JUNCTION_RIGHT)
2607         {
2608           gint xi;
2609
2610           xi = x;
2611
2612           while (xi < x + width)
2613             {
2614               gdk_cairo_set_source_rgba (cr, &lighter);
2615               add_path_line (cr, x, y, x, y + height);
2616               cairo_stroke (cr);
2617               xi++;
2618
2619               gdk_cairo_set_source_rgba (cr, &darker);
2620               add_path_line (cr, xi, y, xi, y + height);
2621               cairo_stroke (cr);
2622               xi += 2;
2623             }
2624         }
2625       else if (sides == GTK_JUNCTION_TOP ||
2626                sides == GTK_JUNCTION_BOTTOM)
2627         {
2628           gint yi;
2629
2630           yi = y;
2631
2632           while (yi < y + height)
2633             {
2634               gdk_cairo_set_source_rgba (cr, &lighter);
2635               add_path_line (cr, x, yi, x + width, yi);
2636               cairo_stroke (cr);
2637               yi++;
2638
2639               gdk_cairo_set_source_rgba (cr, &darker);
2640               add_path_line (cr, x, yi, x + width, yi);
2641               cairo_stroke (cr);
2642               yi += 2;
2643             }
2644         }
2645       else if (sides == GTK_JUNCTION_CORNER_TOPLEFT)
2646         {
2647           gint xi, yi;
2648
2649           xi = x + width;
2650           yi = y + height;
2651
2652           while (xi > x + 3)
2653             {
2654               gdk_cairo_set_source_rgba (cr, &darker);
2655               add_path_line (cr, xi, y, x, yi);
2656               cairo_stroke (cr);
2657
2658               --xi;
2659               --yi;
2660
2661               add_path_line (cr, xi, y, x, yi);
2662               cairo_stroke (cr);
2663
2664               --xi;
2665               --yi;
2666
2667               gdk_cairo_set_source_rgba (cr, &lighter);
2668               add_path_line (cr, xi, y, x, yi);
2669               cairo_stroke (cr);
2670
2671               xi -= 3;
2672               yi -= 3;
2673             }
2674         }
2675       else if (sides == GTK_JUNCTION_CORNER_TOPRIGHT)
2676         {
2677           gint xi, yi;
2678
2679           xi = x;
2680           yi = y + height;
2681
2682           while (xi < (x + width - 3))
2683             {
2684               gdk_cairo_set_source_rgba (cr, &lighter);
2685               add_path_line (cr, xi, y, x + width, yi);
2686               cairo_stroke (cr);
2687
2688               ++xi;
2689               --yi;
2690
2691               gdk_cairo_set_source_rgba (cr, &darker);
2692               add_path_line (cr, xi, y, x + width, yi);
2693               cairo_stroke (cr);
2694
2695               ++xi;
2696               --yi;
2697
2698               add_path_line (cr, xi, y, x + width, yi);
2699               cairo_stroke (cr);
2700
2701               xi += 3;
2702               yi -= 3;
2703             }
2704         }
2705       else if (sides == GTK_JUNCTION_CORNER_BOTTOMLEFT)
2706         {
2707           gint xi, yi;
2708
2709           xi = x + width;
2710           yi = y;
2711
2712           while (xi > x + 3)
2713             {
2714               gdk_cairo_set_source_rgba (cr, &darker);
2715               add_path_line (cr, x, yi, xi, y + height);
2716               cairo_stroke (cr);
2717
2718               --xi;
2719               ++yi;
2720
2721               add_path_line (cr, x, yi, xi, y + height);
2722               cairo_stroke (cr);
2723
2724               --xi;
2725               ++yi;
2726
2727               gdk_cairo_set_source_rgba (cr, &lighter);
2728               add_path_line (cr, x, yi, xi, y + height);
2729               cairo_stroke (cr);
2730
2731               xi -= 3;
2732               yi += 3;
2733             }
2734         }
2735       else if (sides == GTK_JUNCTION_CORNER_BOTTOMRIGHT)
2736         {
2737           gint xi, yi;
2738
2739           xi = x;
2740           yi = y;
2741
2742           while (xi < (x + width - 3))
2743             {
2744               gdk_cairo_set_source_rgba (cr, &lighter);
2745               add_path_line (cr, xi, y + height, x + width, yi);
2746               cairo_stroke (cr);
2747
2748               ++xi;
2749               ++yi;
2750
2751               gdk_cairo_set_source_rgba (cr, &darker);
2752               add_path_line (cr, xi, y + height, x + width, yi);
2753               cairo_stroke (cr);
2754
2755               ++xi;
2756               ++yi;
2757
2758               add_path_line (cr, xi, y + height, x + width, yi);
2759               cairo_stroke (cr);
2760
2761               xi += 3;
2762               yi += 3;
2763             }
2764         }
2765     }
2766   else if (gtk_theming_engine_has_class (engine, GTK_STYLE_CLASS_PANE_SEPARATOR))
2767     {
2768       if (width > height)
2769         for (xx = x + width / 2 - 15; xx <= x + width / 2 + 15; xx += 5)
2770           render_dot (cr, &lighter, &darker, xx, y + height / 2 - 1, 3);
2771       else
2772         for (yy = y + height / 2 - 15; yy <= y + height / 2 + 15; yy += 5)
2773           render_dot (cr, &lighter, &darker, x + width / 2 - 1, yy, 3);
2774     }
2775   else
2776     {
2777       for (yy = y; yy < y + height; yy += 3)
2778         for (xx = x; xx < x + width; xx += 6)
2779           {
2780             render_dot (cr, &lighter, &darker, xx, yy, 2);
2781             render_dot (cr, &lighter, &darker, xx + 3, yy + 1, 2);
2782           }
2783     }
2784
2785   cairo_restore (cr);
2786 }
2787
2788 void
2789 _gtk_theming_engine_paint_spinner (cairo_t *cr,
2790                                    gdouble  radius,
2791                                    gdouble  progress,
2792                                    GdkRGBA *color)
2793 {
2794   guint num_steps, step;
2795   gdouble half;
2796   gint i;
2797
2798   num_steps = 12;
2799
2800   if (progress >= 0)
2801     step = (guint) (progress * num_steps);
2802   else
2803     step = 0;
2804
2805   cairo_save (cr);
2806
2807   cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
2808   cairo_set_line_width (cr, 2.0);
2809
2810   half = num_steps / 2;
2811
2812   for (i = 0; i < num_steps; i++)
2813     {
2814       gint inset = 0.7 * radius;
2815
2816       /* transparency is a function of time and intial value */
2817       gdouble t = 1.0 - (gdouble) ((i + step) % num_steps) / num_steps;
2818       gdouble xscale = - sin (i * G_PI / half);
2819       gdouble yscale = - cos (i * G_PI / half);
2820
2821       cairo_set_source_rgba (cr,
2822                              color->red,
2823                              color->green,
2824                              color->blue,
2825                              color->alpha * t);
2826
2827       cairo_move_to (cr,
2828                      (radius - inset) * xscale,
2829                      (radius - inset) * yscale);
2830       cairo_line_to (cr,
2831                      radius * xscale,
2832                      radius * yscale);
2833
2834       cairo_stroke (cr);
2835     }
2836
2837   cairo_restore (cr);
2838 }
2839
2840 static void
2841 render_spinner (GtkThemingEngine *engine,
2842                 cairo_t          *cr,
2843                 gdouble           x,
2844                 gdouble           y,
2845                 gdouble           width,
2846                 gdouble           height)
2847 {
2848   GtkStateFlags state;
2849   GtkShadow *shadow;
2850   GdkRGBA color;
2851   gdouble progress;
2852   gdouble radius;
2853
2854   state = gtk_theming_engine_get_state (engine);
2855
2856   if (!gtk_theming_engine_state_is_running (engine, GTK_STATE_ACTIVE, &progress))
2857     progress = -1;
2858
2859   radius = MIN (width / 2, height / 2);
2860
2861   gtk_theming_engine_get_color (engine, state, &color);
2862   gtk_theming_engine_get (engine, state,
2863                           "icon-shadow", &shadow,
2864                           NULL);
2865
2866   cairo_save (cr);
2867   cairo_translate (cr, x + width / 2, y + height / 2);
2868
2869   if (shadow != NULL)
2870     {
2871       _gtk_icon_shadow_paint_spinner (shadow, cr,
2872                                       radius,
2873                                       progress);
2874       _gtk_shadow_unref (shadow);
2875     }
2876
2877   _gtk_theming_engine_paint_spinner (cr,
2878                                      radius,
2879                                      progress,
2880                                      &color);
2881
2882   cairo_restore (cr);
2883 }
2884
2885 static void
2886 gtk_theming_engine_render_activity (GtkThemingEngine *engine,
2887                                     cairo_t          *cr,
2888                                     gdouble           x,
2889                                     gdouble           y,
2890                                     gdouble           width,
2891                                     gdouble           height)
2892 {
2893   if (gtk_theming_engine_has_class (engine, GTK_STYLE_CLASS_SPINNER))
2894     {
2895       render_spinner (engine, cr, x, y, width, height);
2896     }
2897   else
2898     {
2899       gtk_theming_engine_render_background (engine, cr, x, y, width, height);
2900       gtk_theming_engine_render_frame (engine, cr, x, y, width, height);
2901     }
2902 }
2903
2904 static GdkPixbuf *
2905 scale_or_ref (GdkPixbuf *src,
2906               gint       width,
2907               gint       height)
2908 {
2909   if (width == gdk_pixbuf_get_width (src) &&
2910       height == gdk_pixbuf_get_height (src))
2911     return g_object_ref (src);
2912   else
2913     return gdk_pixbuf_scale_simple (src,
2914                                     width, height,
2915                                     GDK_INTERP_BILINEAR);
2916 }
2917
2918 static gboolean
2919 lookup_icon_size (GtkThemingEngine *engine,
2920                   GtkIconSize       size,
2921                   gint             *width,
2922                   gint             *height)
2923 {
2924   GdkScreen *screen;
2925   GtkSettings *settings;
2926
2927   screen = gtk_theming_engine_get_screen (engine);
2928   settings = gtk_settings_get_for_screen (screen);
2929
2930   return gtk_icon_size_lookup_for_settings (settings, size, width, height);
2931 }
2932
2933 static void
2934 colorshift_source (cairo_t *cr,
2935                    gdouble shift)
2936 {
2937   cairo_pattern_t *source;
2938
2939   cairo_save (cr);
2940   cairo_paint (cr);
2941
2942   source = cairo_pattern_reference (cairo_get_source (cr));
2943
2944   cairo_set_source_rgb (cr, shift, shift, shift);
2945   cairo_set_operator (cr, CAIRO_OPERATOR_COLOR_DODGE);
2946
2947   cairo_mask (cr, source);
2948
2949   cairo_pattern_destroy (source);
2950   cairo_restore (cr);
2951 }
2952
2953 static GdkPixbuf *
2954 gtk_theming_engine_render_icon_pixbuf (GtkThemingEngine    *engine,
2955                                        const GtkIconSource *source,
2956                                        GtkIconSize          size)
2957 {
2958   GdkPixbuf *scaled;
2959   GdkPixbuf *stated;
2960   GdkPixbuf *base_pixbuf;
2961   GtkStateFlags state;
2962   gint width = 1;
2963   gint height = 1;
2964   cairo_t *cr;
2965   cairo_surface_t *surface;
2966
2967   base_pixbuf = gtk_icon_source_get_pixbuf (source);
2968   state = gtk_theming_engine_get_state (engine);
2969
2970   g_return_val_if_fail (base_pixbuf != NULL, NULL);
2971
2972   if (size != (GtkIconSize) -1 &&
2973       !lookup_icon_size (engine, size, &width, &height))
2974     {
2975       g_warning (G_STRLOC ": invalid icon size '%d'", size);
2976       return NULL;
2977     }
2978
2979   /* If the size was wildcarded, and we're allowed to scale, then scale; otherwise,
2980    * leave it alone.
2981    */
2982   if (size != (GtkIconSize) -1 &&
2983       gtk_icon_source_get_size_wildcarded (source))
2984     scaled = scale_or_ref (base_pixbuf, width, height);
2985   else
2986     scaled = g_object_ref (base_pixbuf);
2987
2988   /* If the state was wildcarded, then generate a state. */
2989   if (gtk_icon_source_get_state_wildcarded (source))
2990     {
2991       if (state & GTK_STATE_FLAG_INSENSITIVE)
2992         {
2993           surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
2994                                                 gdk_pixbuf_get_width (scaled),
2995                                                 gdk_pixbuf_get_height (scaled));
2996           cr = cairo_create (surface);
2997           gdk_cairo_set_source_pixbuf (cr, scaled, 0, 0);
2998           cairo_paint_with_alpha (cr, 0.5);
2999
3000           cairo_destroy (cr);
3001
3002           g_object_unref (scaled);
3003           stated = gdk_pixbuf_get_from_surface (surface, 0, 0,
3004                                                 cairo_image_surface_get_width (surface),
3005                                                 cairo_image_surface_get_height (surface));
3006           cairo_surface_destroy (surface);
3007         }
3008       else if (state & GTK_STATE_FLAG_PRELIGHT)
3009         {
3010           surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
3011                                                 gdk_pixbuf_get_width (scaled),
3012                                                 gdk_pixbuf_get_height (scaled));
3013
3014           cr = cairo_create (surface);
3015           gdk_cairo_set_source_pixbuf (cr, scaled, 0, 0);
3016           colorshift_source (cr, 0.10);
3017
3018           cairo_destroy (cr);
3019
3020           g_object_unref (scaled);
3021           stated = gdk_pixbuf_get_from_surface (surface, 0, 0,
3022                                                 cairo_image_surface_get_width (surface),
3023                                                 cairo_image_surface_get_height (surface));
3024           cairo_surface_destroy (surface);
3025         }
3026       else
3027         stated = scaled;
3028     }
3029   else
3030     stated = scaled;
3031
3032   return stated;
3033 }
3034
3035 static void
3036 gtk_theming_engine_render_icon (GtkThemingEngine *engine,
3037                                 cairo_t *cr,
3038                                 GdkPixbuf *pixbuf,
3039                                 gdouble x,
3040                                 gdouble y)
3041 {
3042   GtkStateFlags state;
3043   GtkShadow *icon_shadow;
3044
3045   state = gtk_theming_engine_get_state (engine);
3046
3047   cairo_save (cr);
3048
3049   gdk_cairo_set_source_pixbuf (cr, pixbuf, x, y);
3050
3051   gtk_theming_engine_get (engine, state,
3052                           "icon-shadow", &icon_shadow,
3053                           NULL);
3054
3055   if (icon_shadow != NULL)
3056     {
3057       _gtk_icon_shadow_paint (icon_shadow, cr);
3058       _gtk_shadow_unref (icon_shadow);
3059     }
3060
3061   cairo_paint (cr);
3062
3063   cairo_restore (cr);
3064 }
3065