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