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