]> Pileus Git - ~andy/gtk/blob - gtk/gtkthemingengine.c
themingengine: Reduce border to 0 on hidden sides
[~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 gtk_theming_engine_hide_border_sides (GtkBorder *border,
1638                                       guint      hidden_side)
1639 {
1640   if (hidden_side & SIDE_TOP)
1641     border->top = 0;
1642   if (hidden_side & SIDE_RIGHT)
1643     border->right = 0;
1644   if (hidden_side & SIDE_BOTTOM)
1645     border->bottom = 0;
1646   if (hidden_side & SIDE_LEFT)
1647     border->left = 0;
1648 }
1649
1650 static void
1651 render_frame_internal (GtkThemingEngine *engine,
1652                        cairo_t          *cr,
1653                        gdouble           x,
1654                        gdouble           y,
1655                        gdouble           width,
1656                        gdouble           height,
1657                        guint             hidden_side,
1658                        GtkJunctionSides  junction)
1659 {
1660   GtkStateFlags state;
1661   GdkRGBA lighter;
1662   GdkRGBA border_color;
1663   GtkBorderStyle border_style;
1664   GtkRoundedBox border_box, padding_box;
1665   gdouble progress;
1666   gboolean running;
1667   GtkBorder border;
1668   double min_size;
1669
1670   state = gtk_theming_engine_get_state (engine);
1671
1672   gtk_theming_engine_get_border_color (engine, state, &border_color);
1673   gtk_theming_engine_get_border (engine, state, &border);
1674   gtk_theming_engine_hide_border_sides (&border, hidden_side);
1675
1676   gtk_theming_engine_get (engine, state,
1677                           "border-style", &border_style,
1678                           NULL);
1679
1680   running = gtk_theming_engine_state_is_running (engine, GTK_STATE_PRELIGHT, &progress);
1681
1682   if (running)
1683     {
1684       GtkStateFlags other_state;
1685       GdkRGBA other_color;
1686
1687       if (state & GTK_STATE_FLAG_PRELIGHT)
1688         {
1689           other_state = state & ~(GTK_STATE_FLAG_PRELIGHT);
1690           progress = 1 - progress;
1691         }
1692       else
1693         other_state = state | GTK_STATE_FLAG_PRELIGHT;
1694
1695       gtk_theming_engine_get_border_color (engine, other_state, &other_color);
1696
1697       border_color.red = CLAMP (border_color.red + ((other_color.red - border_color.red) * progress), 0, 1);
1698       border_color.green = CLAMP (border_color.green + ((other_color.green - border_color.green) * progress), 0, 1);
1699       border_color.blue = CLAMP (border_color.blue + ((other_color.blue - border_color.blue) * progress), 0, 1);
1700       border_color.alpha = CLAMP (border_color.alpha + ((other_color.alpha - border_color.alpha) * progress), 0, 1);
1701     }
1702
1703   cairo_save (cr);
1704
1705   cairo_set_fill_rule (cr, CAIRO_FILL_RULE_EVEN_ODD);
1706
1707   _gtk_rounded_box_init_rect (&border_box, x, y, width, height);
1708   _gtk_rounded_box_apply_border_radius (&border_box, engine, state, junction);
1709   padding_box = border_box;
1710   _gtk_rounded_box_shrink (&padding_box, border.top, border.right, border.bottom, border.left);
1711
1712   switch (border_style)
1713     {
1714     case GTK_BORDER_STYLE_NONE:
1715       break;
1716     case GTK_BORDER_STYLE_SOLID:
1717       gdk_cairo_set_source_rgba (cr, &border_color);
1718
1719       _gtk_rounded_box_path (&border_box, cr);
1720       _gtk_rounded_box_path (&padding_box, cr);
1721       cairo_fill (cr);
1722
1723       break;
1724     case GTK_BORDER_STYLE_INSET:
1725     case GTK_BORDER_STYLE_OUTSET:
1726       color_shade (&border_color, 1.8, &lighter);
1727       min_size = MIN (width, height) / 2;
1728
1729       cairo_save (cr);
1730
1731       _gtk_rounded_box_path (&border_box, cr);
1732       _gtk_rounded_box_path (&padding_box, cr);
1733       cairo_clip (cr);
1734
1735       if (border_style == GTK_BORDER_STYLE_INSET)
1736         gdk_cairo_set_source_rgba (cr, &border_color);
1737       else
1738         gdk_cairo_set_source_rgba (cr, &lighter);
1739       cairo_move_to (cr, x, y);
1740       cairo_line_to (cr, x, y + height);
1741       cairo_line_to (cr, x + min_size, y + height - min_size);
1742       cairo_line_to (cr, x + width - min_size, y + min_size);
1743       cairo_line_to (cr, x + width, y);
1744       cairo_fill (cr);
1745
1746       if (border_style == GTK_BORDER_STYLE_INSET)
1747         gdk_cairo_set_source_rgba (cr, &lighter);
1748       else
1749         gdk_cairo_set_source_rgba (cr, &border_color);
1750       cairo_move_to (cr, x + width, y + height);
1751       cairo_line_to (cr, x, y + height);
1752       cairo_line_to (cr, x + min_size, y + height - min_size);
1753       cairo_line_to (cr, x + width - min_size, y + min_size);
1754       cairo_line_to (cr, x + width, y);
1755       cairo_fill (cr);
1756
1757       cairo_restore (cr);
1758     }
1759
1760   cairo_restore (cr);
1761 }
1762
1763 static void
1764 gtk_theming_engine_render_frame (GtkThemingEngine *engine,
1765                                  cairo_t          *cr,
1766                                  gdouble           x,
1767                                  gdouble           y,
1768                                  gdouble           width,
1769                                  gdouble           height)
1770 {
1771   GtkStateFlags flags;
1772   GtkBorderStyle border_style;
1773   GtkJunctionSides junction;
1774   GtkBorderImage *border_image;
1775   GtkBorder border;
1776
1777   flags = gtk_theming_engine_get_state (engine);
1778   junction = gtk_theming_engine_get_junction_sides (engine);
1779   gtk_theming_engine_get_border (engine, flags, &border);
1780
1781   gtk_theming_engine_get (engine, flags,
1782                           "border-image", &border_image,
1783                           "border-style", &border_style,
1784                           NULL);
1785
1786   if (border_image != NULL)
1787     {
1788       _gtk_border_image_render (border_image, &border,
1789                                 cr, x, y, width, height);
1790       _gtk_border_image_unref (border_image);
1791     }
1792   else if (border_style != GTK_BORDER_STYLE_NONE)
1793     render_frame_internal (engine, cr,
1794                            x, y, width, height,
1795                            0, junction);
1796 }
1797
1798 static void
1799 gtk_theming_engine_render_expander (GtkThemingEngine *engine,
1800                                     cairo_t          *cr,
1801                                     gdouble           x,
1802                                     gdouble           y,
1803                                     gdouble           width,
1804                                     gdouble           height)
1805 {
1806   GtkStateFlags flags;
1807   GdkRGBA outline_color, fg_color;
1808   double vertical_overshoot;
1809   int diameter;
1810   double radius;
1811   double interp;                /* interpolation factor for center position */
1812   double x_double_horz, y_double_horz;
1813   double x_double_vert, y_double_vert;
1814   double x_double, y_double;
1815   gdouble angle;
1816   gint line_width;
1817   gboolean running, is_rtl;
1818   gdouble progress;
1819
1820   cairo_save (cr);
1821   flags = gtk_theming_engine_get_state (engine);
1822
1823   gtk_theming_engine_get_color (engine, flags, &fg_color);
1824   gtk_theming_engine_get_border_color (engine, flags, &outline_color);
1825
1826   running = gtk_theming_engine_state_is_running (engine, GTK_STATE_ACTIVE, &progress);
1827   is_rtl = (gtk_theming_engine_get_direction (engine) == GTK_TEXT_DIR_RTL);
1828   line_width = 1;
1829
1830   if (!running)
1831     progress = (flags & GTK_STATE_FLAG_ACTIVE) ? 1 : 0;
1832
1833   if (!gtk_theming_engine_has_class (engine, GTK_STYLE_CLASS_HORIZONTAL))
1834     {
1835       if (is_rtl)
1836         angle = (G_PI) - ((G_PI / 2) * progress);
1837       else
1838         angle = (G_PI / 2) * progress;
1839     }
1840   else
1841     {
1842       if (is_rtl)
1843         angle = (G_PI / 2) + ((G_PI / 2) * progress);
1844       else
1845         angle = (G_PI / 2) - ((G_PI / 2) * progress);
1846     }
1847
1848   interp = progress;
1849
1850   /* Compute distance that the stroke extends beyonds the end
1851    * of the triangle we draw.
1852    */
1853   vertical_overshoot = line_width / 2.0 * (1. / tan (G_PI / 8));
1854
1855   /* For odd line widths, we end the vertical line of the triangle
1856    * at a half pixel, so we round differently.
1857    */
1858   if (line_width % 2 == 1)
1859     vertical_overshoot = ceil (0.5 + vertical_overshoot) - 0.5;
1860   else
1861     vertical_overshoot = ceil (vertical_overshoot);
1862
1863   /* Adjust the size of the triangle we draw so that the entire stroke fits
1864    */
1865   diameter = (gint) MAX (3, width - 2 * vertical_overshoot);
1866
1867   /* If the line width is odd, we want the diameter to be even,
1868    * and vice versa, so force the sum to be odd. This relationship
1869    * makes the point of the triangle look right.
1870    */
1871   diameter -= (1 - (diameter + line_width) % 2);
1872
1873   radius = diameter / 2.;
1874
1875   /* Adjust the center so that the stroke is properly aligned with
1876    * the pixel grid. The center adjustment is different for the
1877    * horizontal and vertical orientations. For intermediate positions
1878    * we interpolate between the two.
1879    */
1880   x_double_vert = floor ((x + width / 2) - (radius + line_width) / 2.) + (radius + line_width) / 2.;
1881   y_double_vert = (y + height / 2) - 0.5;
1882
1883   x_double_horz = (x + width / 2) - 0.5;
1884   y_double_horz = floor ((y + height / 2) - (radius + line_width) / 2.) + (radius + line_width) / 2.;
1885
1886   x_double = x_double_vert * (1 - interp) + x_double_horz * interp;
1887   y_double = y_double_vert * (1 - interp) + y_double_horz * interp;
1888
1889   cairo_translate (cr, x_double, y_double);
1890   cairo_rotate (cr, angle);
1891
1892   cairo_move_to (cr, - radius / 2., - radius);
1893   cairo_line_to (cr,   radius / 2.,   0);
1894   cairo_line_to (cr, - radius / 2.,   radius);
1895   cairo_close_path (cr);
1896
1897   cairo_set_line_width (cr, line_width);
1898
1899   gdk_cairo_set_source_rgba (cr, &fg_color);
1900
1901   cairo_fill_preserve (cr);
1902
1903   gdk_cairo_set_source_rgba (cr, &outline_color);
1904   cairo_stroke (cr);
1905
1906   cairo_restore (cr);
1907 }
1908
1909 static void
1910 gtk_theming_engine_render_focus (GtkThemingEngine *engine,
1911                                  cairo_t          *cr,
1912                                  gdouble           x,
1913                                  gdouble           y,
1914                                  gdouble           width,
1915                                  gdouble           height)
1916 {
1917   GtkStateFlags flags;
1918   GdkRGBA color;
1919   gint line_width;
1920   gint8 *dash_list;
1921
1922   cairo_save (cr);
1923   flags = gtk_theming_engine_get_state (engine);
1924
1925   gtk_theming_engine_get_color (engine, flags, &color);
1926
1927   gtk_theming_engine_get_style (engine,
1928                                 "focus-line-width", &line_width,
1929                                 "focus-line-pattern", (gchar *) &dash_list,
1930                                 NULL);
1931
1932   cairo_set_line_width (cr, (gdouble) line_width);
1933
1934   if (dash_list[0])
1935     {
1936       gint n_dashes = strlen ((const gchar *) dash_list);
1937       gdouble *dashes = g_new (gdouble, n_dashes);
1938       gdouble total_length = 0;
1939       gdouble dash_offset;
1940       gint i;
1941
1942       for (i = 0; i < n_dashes; i++)
1943         {
1944           dashes[i] = dash_list[i];
1945           total_length += dash_list[i];
1946         }
1947
1948       /* The dash offset here aligns the pattern to integer pixels
1949        * by starting the dash at the right side of the left border
1950        * Negative dash offsets in cairo don't work
1951        * (https://bugs.freedesktop.org/show_bug.cgi?id=2729)
1952        */
1953       dash_offset = - line_width / 2.;
1954
1955       while (dash_offset < 0)
1956         dash_offset += total_length;
1957
1958       cairo_set_dash (cr, dashes, n_dashes, dash_offset);
1959       g_free (dashes);
1960     }
1961
1962   cairo_rectangle (cr,
1963                    x + line_width / 2.,
1964                    y + line_width / 2.,
1965                    width - line_width,
1966                    height - line_width);
1967
1968   gdk_cairo_set_source_rgba (cr, &color);
1969   cairo_stroke (cr);
1970
1971   cairo_restore (cr);
1972
1973   g_free (dash_list);
1974 }
1975
1976 static void
1977 gtk_theming_engine_render_line (GtkThemingEngine *engine,
1978                                 cairo_t          *cr,
1979                                 gdouble           x0,
1980                                 gdouble           y0,
1981                                 gdouble           x1,
1982                                 gdouble           y1)
1983 {
1984   GdkRGBA bg_color, darker, lighter;
1985   GtkStateFlags flags;
1986   gint i, thickness, thickness_dark, thickness_light, len;
1987   cairo_matrix_t matrix;
1988   gdouble angle;
1989
1990   /* FIXME: thickness */
1991   thickness = 2;
1992   thickness_dark = thickness / 2;
1993   thickness_light = thickness - thickness_dark;
1994
1995   flags = gtk_theming_engine_get_state (engine);
1996   cairo_save (cr);
1997
1998   gtk_theming_engine_get_background_color (engine, flags, &bg_color);
1999   color_shade (&bg_color, 0.7, &darker);
2000   color_shade (&bg_color, 1.3, &lighter);
2001
2002   cairo_set_line_cap (cr, CAIRO_LINE_CAP_SQUARE);
2003   cairo_set_line_width (cr, 1);
2004
2005   angle = atan2 (x1 - x0, y1 - y0);
2006   angle = (2 * G_PI) - angle;
2007   angle += G_PI / 2;
2008
2009   cairo_get_matrix (cr, &matrix);
2010   cairo_matrix_translate (&matrix, x0, y0);
2011   cairo_matrix_rotate (&matrix, angle);
2012   cairo_set_matrix (cr, &matrix);
2013
2014   x1 -= x0;
2015   y1 -= y0;
2016
2017   len = (gint) sqrt ((x1 * x1) + (y1 * y1));
2018
2019   y0 = -thickness_dark;
2020
2021   for (i = 0; i < thickness_dark; i++)
2022     {
2023       gdk_cairo_set_source_rgba (cr, &lighter);
2024       add_path_line (cr, len - i - 1.5, y0, len - 0.5, y0);
2025       cairo_stroke (cr);
2026
2027       gdk_cairo_set_source_rgba (cr, &darker);
2028       add_path_line (cr, 0.5, y0, len - i - 1.5, y0);
2029       cairo_stroke (cr);
2030
2031       y0++;
2032     }
2033
2034   for (i = 0; i < thickness_light; i++)
2035     {
2036       gdk_cairo_set_source_rgba (cr, &darker);
2037       add_path_line (cr, 0.5, y0, thickness_light - i + 0.5, y0);
2038       cairo_stroke (cr);
2039
2040       gdk_cairo_set_source_rgba (cr, &lighter);
2041       add_path_line (cr, thickness_light - i + 0.5, y0, len - 0.5, y0);
2042       cairo_stroke (cr);
2043
2044       y0++;
2045     }
2046
2047   cairo_restore (cr);
2048 }
2049
2050 static void
2051 prepare_context_for_layout (cairo_t *cr,
2052                             gdouble x,
2053                             gdouble y,
2054                             PangoLayout *layout)
2055 {
2056   const PangoMatrix *matrix;
2057
2058   matrix = pango_context_get_matrix (pango_layout_get_context (layout));
2059
2060   cairo_move_to (cr, x, y);
2061
2062   if (matrix)
2063     {
2064       cairo_matrix_t cairo_matrix;
2065
2066       cairo_matrix_init (&cairo_matrix,
2067                          matrix->xx, matrix->yx,
2068                          matrix->xy, matrix->yy,
2069                          matrix->x0, matrix->y0);
2070
2071       cairo_transform (cr, &cairo_matrix);
2072     }
2073 }
2074
2075 static void
2076 gtk_theming_engine_render_layout (GtkThemingEngine *engine,
2077                                   cairo_t          *cr,
2078                                   gdouble           x,
2079                                   gdouble           y,
2080                                   PangoLayout      *layout)
2081 {
2082   GdkRGBA fg_color;
2083   GtkShadow *text_shadow = NULL;
2084   GtkStateFlags flags;
2085   gdouble progress;
2086   gboolean running;
2087
2088   cairo_save (cr);
2089   flags = gtk_theming_engine_get_state (engine);
2090   gtk_theming_engine_get_color (engine, flags, &fg_color);
2091
2092   running = gtk_theming_engine_state_is_running (engine, GTK_STATE_PRELIGHT, &progress);
2093
2094   if (running)
2095     {
2096       GtkStateFlags other_flags;
2097       GdkRGBA other_fg;
2098
2099       if (flags & GTK_STATE_FLAG_PRELIGHT)
2100         {
2101           other_flags = flags & ~(GTK_STATE_FLAG_PRELIGHT);
2102           progress = 1 - progress;
2103         }
2104       else
2105         other_flags = flags | GTK_STATE_FLAG_PRELIGHT;
2106
2107       gtk_theming_engine_get_color (engine, other_flags, &other_fg);
2108
2109       fg_color.red = CLAMP (fg_color.red + ((other_fg.red - fg_color.red) * progress), 0, 1);
2110       fg_color.green = CLAMP (fg_color.green + ((other_fg.green - fg_color.green) * progress), 0, 1);
2111       fg_color.blue = CLAMP (fg_color.blue + ((other_fg.blue - fg_color.blue) * progress), 0, 1);
2112       fg_color.alpha = CLAMP (fg_color.alpha + ((other_fg.alpha - fg_color.alpha) * progress), 0, 1);
2113     }
2114
2115   gtk_theming_engine_get (engine, flags,
2116                           "text-shadow", &text_shadow,
2117                           NULL);
2118
2119   prepare_context_for_layout (cr, x, y, layout);
2120
2121   if (text_shadow != NULL)
2122     {
2123       _gtk_text_shadow_paint_layout (text_shadow, cr, layout);
2124       _gtk_shadow_unref (text_shadow);
2125     }
2126
2127   gdk_cairo_set_source_rgba (cr, &fg_color);
2128   pango_cairo_show_layout (cr, layout);
2129
2130   cairo_restore (cr);
2131 }
2132
2133 static void
2134 gtk_theming_engine_render_slider (GtkThemingEngine *engine,
2135                                   cairo_t          *cr,
2136                                   gdouble           x,
2137                                   gdouble           y,
2138                                   gdouble           width,
2139                                   gdouble           height,
2140                                   GtkOrientation    orientation)
2141 {
2142   const GtkWidgetPath *path;
2143   gint thickness;
2144
2145   path = gtk_theming_engine_get_path (engine);
2146
2147   gtk_theming_engine_render_background (engine, cr, x, y, width, height);
2148   gtk_theming_engine_render_frame (engine, cr, x, y, width, height);
2149
2150   /* FIXME: thickness */
2151   thickness = 2;
2152
2153   if (gtk_widget_path_is_type (path, GTK_TYPE_SCALE))
2154     {
2155       if (orientation == GTK_ORIENTATION_VERTICAL)
2156         gtk_theming_engine_render_line (engine, cr,
2157                                         x + thickness,
2158                                         y + (gint) height / 2,
2159                                         x + width - thickness - 1,
2160                                         y + (gint) height / 2);
2161       else
2162         gtk_theming_engine_render_line (engine, cr,
2163                                         x + (gint) width / 2,
2164                                         y + thickness,
2165                                         x + (gint) width / 2,
2166                                         y + height - thickness - 1);
2167     }
2168 }
2169
2170 static void
2171 gtk_theming_engine_render_frame_gap (GtkThemingEngine *engine,
2172                                      cairo_t          *cr,
2173                                      gdouble           x,
2174                                      gdouble           y,
2175                                      gdouble           width,
2176                                      gdouble           height,
2177                                      GtkPositionType   gap_side,
2178                                      gdouble           xy0_gap,
2179                                      gdouble           xy1_gap)
2180 {
2181   GtkJunctionSides junction;
2182   GtkStateFlags state;
2183   gint border_width;
2184   GtkCssBorderCornerRadius *top_left_radius, *top_right_radius;
2185   GtkCssBorderCornerRadius *bottom_left_radius, *bottom_right_radius;
2186   GtkCssBorderRadius border_radius = { { 0, },  };
2187   gdouble x0, y0, x1, y1, xc, yc, wc, hc;
2188   GtkBorder border;
2189
2190   xc = yc = wc = hc = 0;
2191   state = gtk_theming_engine_get_state (engine);
2192   junction = gtk_theming_engine_get_junction_sides (engine);
2193
2194   gtk_theming_engine_get_border (engine, state, &border);
2195   gtk_theming_engine_get (engine, state,
2196                           /* Can't use border-radius as it's an int for
2197                            * backwards compat */
2198                           "border-top-left-radius", &top_left_radius,
2199                           "border-top-right-radius", &top_right_radius,
2200                           "border-bottom-right-radius", &bottom_right_radius,
2201                           "border-bottom-left-radius", &bottom_left_radius,
2202                           NULL);
2203
2204   if (top_left_radius)
2205     border_radius.top_left = *top_left_radius;
2206   g_free (top_left_radius);
2207   if (top_right_radius)
2208     border_radius.top_right = *top_right_radius;
2209   g_free (top_right_radius);
2210   if (bottom_right_radius)
2211     border_radius.bottom_right = *bottom_right_radius;
2212   g_free (bottom_right_radius);
2213   if (bottom_left_radius)
2214     border_radius.bottom_left = *bottom_left_radius;
2215   g_free (bottom_left_radius);
2216
2217   border_width = MIN (MIN (border.top, border.bottom),
2218                       MIN (border.left, border.right));
2219
2220   cairo_save (cr);
2221
2222   switch (gap_side)
2223     {
2224     case GTK_POS_TOP:
2225       xc = x + xy0_gap + border_width;
2226       yc = y;
2227       wc = MAX (xy1_gap - xy0_gap - 2 * border_width, 0);
2228       hc = border_width;
2229
2230       if (xy0_gap < border_radius.top_left.horizontal)
2231         junction |= GTK_JUNCTION_CORNER_TOPLEFT;
2232
2233       if (xy1_gap > width - border_radius.top_right.horizontal)
2234         junction |= GTK_JUNCTION_CORNER_TOPRIGHT;
2235       break;
2236     case GTK_POS_BOTTOM:
2237       xc = x + xy0_gap + border_width;
2238       yc = y + height - border_width;
2239       wc = MAX (xy1_gap - xy0_gap - 2 * border_width, 0);
2240       hc = border_width;
2241
2242       if (xy0_gap < border_radius.bottom_left.horizontal)
2243         junction |= GTK_JUNCTION_CORNER_BOTTOMLEFT;
2244
2245       if (xy1_gap > width - border_radius.bottom_right.horizontal)
2246         junction |= GTK_JUNCTION_CORNER_BOTTOMRIGHT;
2247
2248       break;
2249     case GTK_POS_LEFT:
2250       xc = x;
2251       yc = y + xy0_gap + border_width;
2252       wc = border_width;
2253       hc = MAX (xy1_gap - xy0_gap - 2 * border_width, 0);
2254
2255       if (xy0_gap < border_radius.top_left.vertical)
2256         junction |= GTK_JUNCTION_CORNER_TOPLEFT;
2257
2258       if (xy1_gap > height - border_radius.bottom_left.vertical)
2259         junction |= GTK_JUNCTION_CORNER_BOTTOMLEFT;
2260
2261       break;
2262     case GTK_POS_RIGHT:
2263       xc = x + width - border_width;
2264       yc = y + xy0_gap + border_width;
2265       wc = border_width;
2266       hc = MAX (xy1_gap - xy0_gap - 2 * border_width, 0);
2267
2268       if (xy0_gap < border_radius.top_right.vertical)
2269         junction |= GTK_JUNCTION_CORNER_TOPRIGHT;
2270
2271       if (xy1_gap > height - border_radius.bottom_right.vertical)
2272         junction |= GTK_JUNCTION_CORNER_BOTTOMRIGHT;
2273
2274       break;
2275     }
2276
2277   cairo_clip_extents (cr, &x0, &y0, &x1, &y1);
2278   cairo_rectangle (cr, x0, y0, x1 - x0, yc - y0);
2279   cairo_rectangle (cr, x0, yc, xc - x0, hc);
2280   cairo_rectangle (cr, xc + wc, yc, x1 - (xc + wc), hc);
2281   cairo_rectangle (cr, x0, yc + hc, x1 - x0, y1 - (yc + hc));
2282   cairo_clip (cr);
2283
2284   render_frame_internal (engine, cr,
2285                          x, y, width, height,
2286                          0, junction);
2287
2288   cairo_restore (cr);
2289 }
2290
2291 static void
2292 gtk_theming_engine_render_extension (GtkThemingEngine *engine,
2293                                      cairo_t          *cr,
2294                                      gdouble           x,
2295                                      gdouble           y,
2296                                      gdouble           width,
2297                                      gdouble           height,
2298                                      GtkPositionType   gap_side)
2299 {
2300   GtkJunctionSides junction = 0;
2301   guint hidden_side = 0;
2302
2303   cairo_save (cr);
2304
2305   switch (gap_side)
2306     {
2307     case GTK_POS_LEFT:
2308       junction = GTK_JUNCTION_LEFT;
2309       hidden_side = SIDE_LEFT;
2310
2311       cairo_translate (cr, x + width, y);
2312       cairo_rotate (cr, G_PI / 2);
2313       break;
2314     case GTK_POS_RIGHT:
2315       junction = GTK_JUNCTION_RIGHT;
2316       hidden_side = SIDE_RIGHT;
2317
2318       cairo_translate (cr, x, y + height);
2319       cairo_rotate (cr, - G_PI / 2);
2320       break;
2321     case GTK_POS_TOP:
2322       junction = GTK_JUNCTION_TOP;
2323       hidden_side = SIDE_TOP;
2324
2325       cairo_translate (cr, x + width, y + height);
2326       cairo_rotate (cr, G_PI);
2327       break;
2328     case GTK_POS_BOTTOM:
2329       junction = GTK_JUNCTION_BOTTOM;
2330       hidden_side = SIDE_BOTTOM;
2331
2332       cairo_translate (cr, x, y);
2333       break;
2334     }
2335
2336   if (gap_side == GTK_POS_TOP ||
2337       gap_side == GTK_POS_BOTTOM)
2338     render_background_internal (engine, cr,
2339                                 0, 0, width, height,
2340                                 GTK_JUNCTION_BOTTOM);
2341   else
2342     render_background_internal (engine, cr,
2343                                 0, 0, height, width,
2344                                 GTK_JUNCTION_BOTTOM);
2345   cairo_restore (cr);
2346
2347   cairo_save (cr);
2348
2349   render_frame_internal (engine, cr,
2350                          x, y, width, height,
2351                          hidden_side, junction);
2352
2353   cairo_restore (cr);
2354 }
2355
2356 static void
2357 render_dot (cairo_t       *cr,
2358             const GdkRGBA *lighter,
2359             const GdkRGBA *darker,
2360             gdouble        x,
2361             gdouble        y,
2362             gdouble        size)
2363 {
2364   size = CLAMP ((gint) size, 2, 3);
2365
2366   if (size == 2)
2367     {
2368       gdk_cairo_set_source_rgba (cr, lighter);
2369       cairo_rectangle (cr, x, y, 1, 1);
2370       cairo_rectangle (cr, x + 1, y + 1, 1, 1);
2371       cairo_fill (cr);
2372     }
2373   else if (size == 3)
2374     {
2375       gdk_cairo_set_source_rgba (cr, lighter);
2376       cairo_rectangle (cr, x, y, 2, 1);
2377       cairo_rectangle (cr, x, y, 1, 2);
2378       cairo_fill (cr);
2379
2380       gdk_cairo_set_source_rgba (cr, darker);
2381       cairo_rectangle (cr, x + 1, y + 1, 2, 1);
2382       cairo_rectangle (cr, x + 2, y, 1, 2);
2383       cairo_fill (cr);
2384     }
2385 }
2386
2387 static void
2388 gtk_theming_engine_render_handle (GtkThemingEngine *engine,
2389                                   cairo_t          *cr,
2390                                   gdouble           x,
2391                                   gdouble           y,
2392                                   gdouble           width,
2393                                   gdouble           height)
2394 {
2395   GtkStateFlags flags;
2396   GdkRGBA bg_color, lighter, darker;
2397   GtkJunctionSides sides;
2398   gint xx, yy;
2399
2400   cairo_save (cr);
2401   flags = gtk_theming_engine_get_state (engine);
2402
2403   cairo_set_line_width (cr, 1.0);
2404   sides = gtk_theming_engine_get_junction_sides (engine);
2405   gtk_theming_engine_get_background_color (engine, flags, &bg_color);
2406
2407   color_shade (&bg_color, 0.7, &darker);
2408   color_shade (&bg_color, 1.3, &lighter);
2409
2410   render_background_internal (engine, cr, x, y, width, height, sides);
2411
2412   if (gtk_theming_engine_has_class (engine, GTK_STYLE_CLASS_GRIP))
2413     {
2414       /* reduce confusing values to a meaningful state */
2415       if ((sides & (GTK_JUNCTION_CORNER_TOPLEFT | GTK_JUNCTION_CORNER_BOTTOMRIGHT)) == (GTK_JUNCTION_CORNER_TOPLEFT | GTK_JUNCTION_CORNER_BOTTOMRIGHT))
2416         sides &= ~GTK_JUNCTION_CORNER_TOPLEFT;
2417
2418       if ((sides & (GTK_JUNCTION_CORNER_TOPRIGHT | GTK_JUNCTION_CORNER_BOTTOMLEFT)) == (GTK_JUNCTION_CORNER_TOPRIGHT | GTK_JUNCTION_CORNER_BOTTOMLEFT))
2419         sides &= ~GTK_JUNCTION_CORNER_TOPRIGHT;
2420
2421       if (sides == 0)
2422         sides = GTK_JUNCTION_CORNER_BOTTOMRIGHT;
2423
2424       /* align drawing area to the connected side */
2425       if (sides == GTK_JUNCTION_LEFT)
2426         {
2427           if (height < width)
2428             width = height;
2429         }
2430       else if (sides == GTK_JUNCTION_CORNER_TOPLEFT)
2431         {
2432           if (width < height)
2433             height = width;
2434           else if (height < width)
2435             width = height;
2436         }
2437       else if (sides == GTK_JUNCTION_CORNER_BOTTOMLEFT)
2438         {
2439           /* make it square, aligning to bottom left */
2440           if (width < height)
2441             {
2442               y += (height - width);
2443               height = width;
2444             }
2445           else if (height < width)
2446             width = height;
2447         }
2448       else if (sides == GTK_JUNCTION_RIGHT)
2449         {
2450           /* aligning to right */
2451           if (height < width)
2452             {
2453               x += (width - height);
2454               width = height;
2455             }
2456         }
2457       else if (sides == GTK_JUNCTION_CORNER_TOPRIGHT)
2458         {
2459           if (width < height)
2460             height = width;
2461           else if (height < width)
2462             {
2463               x += (width - height);
2464               width = height;
2465             }
2466         }
2467       else if (sides == GTK_JUNCTION_CORNER_BOTTOMRIGHT)
2468         {
2469           /* make it square, aligning to bottom right */
2470           if (width < height)
2471             {
2472               y += (height - width);
2473               height = width;
2474             }
2475           else if (height < width)
2476             {
2477               x += (width - height);
2478               width = height;
2479             }
2480         }
2481       else if (sides == GTK_JUNCTION_TOP)
2482         {
2483           if (width < height)
2484             height = width;
2485         }
2486       else if (sides == GTK_JUNCTION_BOTTOM)
2487         {
2488           /* align to bottom */
2489           if (width < height)
2490             {
2491               y += (height - width);
2492               height = width;
2493             }
2494         }
2495       else
2496         g_assert_not_reached ();
2497
2498       if (sides == GTK_JUNCTION_LEFT ||
2499           sides == GTK_JUNCTION_RIGHT)
2500         {
2501           gint xi;
2502
2503           xi = x;
2504
2505           while (xi < x + width)
2506             {
2507               gdk_cairo_set_source_rgba (cr, &lighter);
2508               add_path_line (cr, x, y, x, y + height);
2509               cairo_stroke (cr);
2510               xi++;
2511
2512               gdk_cairo_set_source_rgba (cr, &darker);
2513               add_path_line (cr, xi, y, xi, y + height);
2514               cairo_stroke (cr);
2515               xi += 2;
2516             }
2517         }
2518       else if (sides == GTK_JUNCTION_TOP ||
2519                sides == GTK_JUNCTION_BOTTOM)
2520         {
2521           gint yi;
2522
2523           yi = y;
2524
2525           while (yi < y + height)
2526             {
2527               gdk_cairo_set_source_rgba (cr, &lighter);
2528               add_path_line (cr, x, yi, x + width, yi);
2529               cairo_stroke (cr);
2530               yi++;
2531
2532               gdk_cairo_set_source_rgba (cr, &darker);
2533               add_path_line (cr, x, yi, x + width, yi);
2534               cairo_stroke (cr);
2535               yi += 2;
2536             }
2537         }
2538       else if (sides == GTK_JUNCTION_CORNER_TOPLEFT)
2539         {
2540           gint xi, yi;
2541
2542           xi = x + width;
2543           yi = y + height;
2544
2545           while (xi > x + 3)
2546             {
2547               gdk_cairo_set_source_rgba (cr, &darker);
2548               add_path_line (cr, xi, y, x, yi);
2549               cairo_stroke (cr);
2550
2551               --xi;
2552               --yi;
2553
2554               add_path_line (cr, xi, y, x, yi);
2555               cairo_stroke (cr);
2556
2557               --xi;
2558               --yi;
2559
2560               gdk_cairo_set_source_rgba (cr, &lighter);
2561               add_path_line (cr, xi, y, x, yi);
2562               cairo_stroke (cr);
2563
2564               xi -= 3;
2565               yi -= 3;
2566             }
2567         }
2568       else if (sides == GTK_JUNCTION_CORNER_TOPRIGHT)
2569         {
2570           gint xi, yi;
2571
2572           xi = x;
2573           yi = y + height;
2574
2575           while (xi < (x + width - 3))
2576             {
2577               gdk_cairo_set_source_rgba (cr, &lighter);
2578               add_path_line (cr, xi, y, x + width, yi);
2579               cairo_stroke (cr);
2580
2581               ++xi;
2582               --yi;
2583
2584               gdk_cairo_set_source_rgba (cr, &darker);
2585               add_path_line (cr, xi, y, x + width, yi);
2586               cairo_stroke (cr);
2587
2588               ++xi;
2589               --yi;
2590
2591               add_path_line (cr, xi, y, x + width, yi);
2592               cairo_stroke (cr);
2593
2594               xi += 3;
2595               yi -= 3;
2596             }
2597         }
2598       else if (sides == GTK_JUNCTION_CORNER_BOTTOMLEFT)
2599         {
2600           gint xi, yi;
2601
2602           xi = x + width;
2603           yi = y;
2604
2605           while (xi > x + 3)
2606             {
2607               gdk_cairo_set_source_rgba (cr, &darker);
2608               add_path_line (cr, x, yi, xi, y + height);
2609               cairo_stroke (cr);
2610
2611               --xi;
2612               ++yi;
2613
2614               add_path_line (cr, x, yi, xi, y + height);
2615               cairo_stroke (cr);
2616
2617               --xi;
2618               ++yi;
2619
2620               gdk_cairo_set_source_rgba (cr, &lighter);
2621               add_path_line (cr, x, yi, xi, y + height);
2622               cairo_stroke (cr);
2623
2624               xi -= 3;
2625               yi += 3;
2626             }
2627         }
2628       else if (sides == GTK_JUNCTION_CORNER_BOTTOMRIGHT)
2629         {
2630           gint xi, yi;
2631
2632           xi = x;
2633           yi = y;
2634
2635           while (xi < (x + width - 3))
2636             {
2637               gdk_cairo_set_source_rgba (cr, &lighter);
2638               add_path_line (cr, xi, y + height, x + width, yi);
2639               cairo_stroke (cr);
2640
2641               ++xi;
2642               ++yi;
2643
2644               gdk_cairo_set_source_rgba (cr, &darker);
2645               add_path_line (cr, xi, y + height, x + width, yi);
2646               cairo_stroke (cr);
2647
2648               ++xi;
2649               ++yi;
2650
2651               add_path_line (cr, xi, y + height, x + width, yi);
2652               cairo_stroke (cr);
2653
2654               xi += 3;
2655               yi += 3;
2656             }
2657         }
2658     }
2659   else if (gtk_theming_engine_has_class (engine, GTK_STYLE_CLASS_PANE_SEPARATOR))
2660     {
2661       if (width > height)
2662         for (xx = x + width / 2 - 15; xx <= x + width / 2 + 15; xx += 5)
2663           render_dot (cr, &lighter, &darker, xx, y + height / 2 - 1, 3);
2664       else
2665         for (yy = y + height / 2 - 15; yy <= y + height / 2 + 15; yy += 5)
2666           render_dot (cr, &lighter, &darker, x + width / 2 - 1, yy, 3);
2667     }
2668   else
2669     {
2670       for (yy = y; yy < y + height; yy += 3)
2671         for (xx = x; xx < x + width; xx += 6)
2672           {
2673             render_dot (cr, &lighter, &darker, xx, yy, 2);
2674             render_dot (cr, &lighter, &darker, xx + 3, yy + 1, 2);
2675           }
2676     }
2677
2678   cairo_restore (cr);
2679 }
2680
2681 void
2682 _gtk_theming_engine_paint_spinner (cairo_t *cr,
2683                                    gdouble  radius,
2684                                    gdouble  progress,
2685                                    GdkRGBA *color)
2686 {
2687   guint num_steps, step;
2688   gdouble half;
2689   gint i;
2690
2691   num_steps = 12;
2692
2693   if (progress >= 0)
2694     step = (guint) (progress * num_steps);
2695   else
2696     step = 0;
2697
2698   cairo_save (cr);
2699
2700   cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
2701   cairo_set_line_width (cr, 2.0);
2702
2703   half = num_steps / 2;
2704
2705   for (i = 0; i < num_steps; i++)
2706     {
2707       gint inset = 0.7 * radius;
2708
2709       /* transparency is a function of time and intial value */
2710       gdouble t = 1.0 - (gdouble) ((i + step) % num_steps) / num_steps;
2711       gdouble xscale = - sin (i * G_PI / half);
2712       gdouble yscale = - cos (i * G_PI / half);
2713
2714       cairo_set_source_rgba (cr,
2715                              color->red,
2716                              color->green,
2717                              color->blue,
2718                              color->alpha * t);
2719
2720       cairo_move_to (cr,
2721                      (radius - inset) * xscale,
2722                      (radius - inset) * yscale);
2723       cairo_line_to (cr,
2724                      radius * xscale,
2725                      radius * yscale);
2726
2727       cairo_stroke (cr);
2728     }
2729
2730   cairo_restore (cr);
2731 }
2732
2733 static void
2734 render_spinner (GtkThemingEngine *engine,
2735                 cairo_t          *cr,
2736                 gdouble           x,
2737                 gdouble           y,
2738                 gdouble           width,
2739                 gdouble           height)
2740 {
2741   GtkStateFlags state;
2742   GtkShadow *shadow;
2743   GdkRGBA color;
2744   gdouble progress;
2745   gdouble radius;
2746
2747   state = gtk_theming_engine_get_state (engine);
2748
2749   if (!gtk_theming_engine_state_is_running (engine, GTK_STATE_ACTIVE, &progress))
2750     progress = -1;
2751
2752   radius = MIN (width / 2, height / 2);
2753
2754   gtk_theming_engine_get_color (engine, state, &color);
2755   gtk_theming_engine_get (engine, state,
2756                           "icon-shadow", &shadow,
2757                           NULL);
2758
2759   cairo_save (cr);
2760   cairo_translate (cr, x + width / 2, y + height / 2);
2761
2762   if (shadow != NULL)
2763     {
2764       _gtk_icon_shadow_paint_spinner (shadow, cr,
2765                                       radius,
2766                                       progress);
2767       _gtk_shadow_unref (shadow);
2768     }
2769
2770   _gtk_theming_engine_paint_spinner (cr,
2771                                      radius,
2772                                      progress,
2773                                      &color);
2774
2775   cairo_restore (cr);
2776 }
2777
2778 static void
2779 gtk_theming_engine_render_activity (GtkThemingEngine *engine,
2780                                     cairo_t          *cr,
2781                                     gdouble           x,
2782                                     gdouble           y,
2783                                     gdouble           width,
2784                                     gdouble           height)
2785 {
2786   if (gtk_theming_engine_has_class (engine, GTK_STYLE_CLASS_SPINNER))
2787     {
2788       render_spinner (engine, cr, x, y, width, height);
2789     }
2790   else
2791     {
2792       gtk_theming_engine_render_background (engine, cr, x, y, width, height);
2793       gtk_theming_engine_render_frame (engine, cr, x, y, width, height);
2794     }
2795 }
2796
2797 static GdkPixbuf *
2798 scale_or_ref (GdkPixbuf *src,
2799               gint       width,
2800               gint       height)
2801 {
2802   if (width == gdk_pixbuf_get_width (src) &&
2803       height == gdk_pixbuf_get_height (src))
2804     return g_object_ref (src);
2805   else
2806     return gdk_pixbuf_scale_simple (src,
2807                                     width, height,
2808                                     GDK_INTERP_BILINEAR);
2809 }
2810
2811 static gboolean
2812 lookup_icon_size (GtkThemingEngine *engine,
2813                   GtkIconSize       size,
2814                   gint             *width,
2815                   gint             *height)
2816 {
2817   GdkScreen *screen;
2818   GtkSettings *settings;
2819
2820   screen = gtk_theming_engine_get_screen (engine);
2821   settings = gtk_settings_get_for_screen (screen);
2822
2823   return gtk_icon_size_lookup_for_settings (settings, size, width, height);
2824 }
2825
2826 static void
2827 colorshift_source (cairo_t *cr,
2828                    gdouble shift)
2829 {
2830   cairo_pattern_t *source;
2831
2832   cairo_save (cr);
2833   cairo_paint (cr);
2834
2835   source = cairo_pattern_reference (cairo_get_source (cr));
2836
2837   cairo_set_source_rgb (cr, shift, shift, shift);
2838   cairo_set_operator (cr, CAIRO_OPERATOR_COLOR_DODGE);
2839
2840   cairo_mask (cr, source);
2841
2842   cairo_pattern_destroy (source);
2843   cairo_restore (cr);
2844 }
2845
2846 static GdkPixbuf *
2847 gtk_theming_engine_render_icon_pixbuf (GtkThemingEngine    *engine,
2848                                        const GtkIconSource *source,
2849                                        GtkIconSize          size)
2850 {
2851   GdkPixbuf *scaled;
2852   GdkPixbuf *stated;
2853   GdkPixbuf *base_pixbuf;
2854   GtkStateFlags state;
2855   gint width = 1;
2856   gint height = 1;
2857   cairo_t *cr;
2858   cairo_surface_t *surface;
2859
2860   base_pixbuf = gtk_icon_source_get_pixbuf (source);
2861   state = gtk_theming_engine_get_state (engine);
2862
2863   g_return_val_if_fail (base_pixbuf != NULL, NULL);
2864
2865   if (size != (GtkIconSize) -1 &&
2866       !lookup_icon_size (engine, size, &width, &height))
2867     {
2868       g_warning (G_STRLOC ": invalid icon size '%d'", size);
2869       return NULL;
2870     }
2871
2872   /* If the size was wildcarded, and we're allowed to scale, then scale; otherwise,
2873    * leave it alone.
2874    */
2875   if (size != (GtkIconSize) -1 &&
2876       gtk_icon_source_get_size_wildcarded (source))
2877     scaled = scale_or_ref (base_pixbuf, width, height);
2878   else
2879     scaled = g_object_ref (base_pixbuf);
2880
2881   /* If the state was wildcarded, then generate a state. */
2882   if (gtk_icon_source_get_state_wildcarded (source))
2883     {
2884       if (state & GTK_STATE_FLAG_INSENSITIVE)
2885         {
2886           surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
2887                                                 gdk_pixbuf_get_width (scaled),
2888                                                 gdk_pixbuf_get_height (scaled));
2889           cr = cairo_create (surface);
2890           gdk_cairo_set_source_pixbuf (cr, scaled, 0, 0);
2891           cairo_paint_with_alpha (cr, 0.5);
2892
2893           cairo_destroy (cr);
2894
2895           g_object_unref (scaled);
2896           stated = gdk_pixbuf_get_from_surface (surface, 0, 0,
2897                                                 cairo_image_surface_get_width (surface),
2898                                                 cairo_image_surface_get_height (surface));
2899         }
2900       else if (state & GTK_STATE_FLAG_PRELIGHT)
2901         {
2902           surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
2903                                                 gdk_pixbuf_get_width (scaled),
2904                                                 gdk_pixbuf_get_height (scaled));
2905
2906           cr = cairo_create (surface);
2907           gdk_cairo_set_source_pixbuf (cr, scaled, 0, 0);
2908           colorshift_source (cr, 0.10);
2909
2910           cairo_destroy (cr);
2911
2912           g_object_unref (scaled);
2913           stated = gdk_pixbuf_get_from_surface (surface, 0, 0,
2914                                                 cairo_image_surface_get_width (surface),
2915                                                 cairo_image_surface_get_height (surface));
2916         }
2917       else
2918         stated = scaled;
2919     }
2920   else
2921     stated = scaled;
2922
2923   return stated;
2924 }
2925
2926 static void
2927 gtk_theming_engine_render_icon (GtkThemingEngine *engine,
2928                                 cairo_t *cr,
2929                                 GdkPixbuf *pixbuf,
2930                                 gdouble x,
2931                                 gdouble y)
2932 {
2933   GtkStateFlags state;
2934   GtkShadow *icon_shadow;
2935
2936   state = gtk_theming_engine_get_state (engine);
2937
2938   cairo_save (cr);
2939
2940   gdk_cairo_set_source_pixbuf (cr, pixbuf, x, y);
2941
2942   gtk_theming_engine_get (engine, state,
2943                           "icon-shadow", &icon_shadow,
2944                           NULL);
2945
2946   if (icon_shadow != NULL)
2947     {
2948       _gtk_icon_shadow_paint (icon_shadow, cr);
2949       _gtk_shadow_unref (icon_shadow);
2950     }
2951
2952   cairo_paint (cr);
2953
2954   cairo_restore (cr);
2955 }
2956