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