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