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