]> Pileus Git - ~andy/gtk/blob - gtk/gtkstylecontext.h
Merge branch 'gtk-3-0' into broadway
[~andy/gtk] / gtk / gtkstylecontext.h
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 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
21 #error "Only <gtk/gtk.h> can be included directly."
22 #endif
23
24 #ifndef __GTK_STYLE_CONTEXT_H__
25 #define __GTK_STYLE_CONTEXT_H__
26
27 #include <glib-object.h>
28 #include <gtk/gtkstyleprovider.h>
29 #include <gtk/gtkwidgetpath.h>
30 #include <gtk/gtkborder.h>
31
32 G_BEGIN_DECLS
33
34 #define GTK_TYPE_STYLE_CONTEXT         (gtk_style_context_get_type ())
35 #define GTK_STYLE_CONTEXT(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_STYLE_CONTEXT, GtkStyleContext))
36 #define GTK_STYLE_CONTEXT_CLASS(c)     (G_TYPE_CHECK_CLASS_CAST    ((c), GTK_TYPE_STYLE_CONTEXT, GtkStyleContextClass))
37 #define GTK_IS_STYLE_CONTEXT(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_STYLE_CONTEXT))
38 #define GTK_IS_STYLE_CONTEXT_CLASS(c)  (G_TYPE_CHECK_CLASS_TYPE    ((c), GTK_TYPE_STYLE_CONTEXT))
39 #define GTK_STYLE_CONTEXT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS  ((o), GTK_TYPE_STYLE_CONTEXT, GtkStyleContextClass))
40
41 typedef struct _GtkStyleContext GtkStyleContext;
42 typedef struct _GtkStyleContextClass GtkStyleContextClass;
43 typedef struct _GtkStyleContextPrivate GtkStyleContextPrivate;
44
45 struct _GtkStyleContext
46 {
47   GObject parent_object;
48   GtkStyleContextPrivate *priv;
49 };
50
51 struct _GtkStyleContextClass
52 {
53   GObjectClass parent_class;
54
55   void (* changed) (GtkStyleContext *context);
56
57   /* Padding for future expansion */
58   void (*_gtk_reserved1) (void);
59   void (*_gtk_reserved2) (void);
60   void (*_gtk_reserved3) (void);
61   void (*_gtk_reserved4) (void);
62 };
63
64 /* Default set of properties that GtkStyleContext may contain */
65
66 /**
67  * GTK_STYLE_PROPERTY_BACKGROUND_COLOR:
68  *
69  * A property holding the background color of rendered elements as a #GdkRGBA.
70  */
71 #define GTK_STYLE_PROPERTY_BACKGROUND_COLOR "background-color"
72
73 /**
74  * GTK_STYLE_PROPERTY_COLOR:
75  *
76  * A property holding the foreground color of rendered elements as a #GdkRGBA.
77  */
78 #define GTK_STYLE_PROPERTY_COLOR "color"
79
80 /**
81  * GTK_STYLE_PROPERTY_FONT:
82  *
83  * A property holding the font properties used when rendering text
84  * as a #PangoFontDescription.
85  */
86 #define GTK_STYLE_PROPERTY_FONT "font"
87
88 /**
89  * GTK_STYLE_PROPERTY_PADDING:
90  *
91  * A property holding the rendered element's padding as a #GtkBorder. The
92  * padding is defined as the spacing between the inner part of the element border
93  * and its child. It's the innermost spacing property of the padding/border/margin
94  * series.
95  */
96 #define GTK_STYLE_PROPERTY_PADDING "padding"
97
98 /**
99  * GTK_STYLE_PROPERTY_BORDER_WIDTH:
100  *
101  * A property holding the rendered element's border width in pixels as
102  * a #GtkBorder. The border is the intermediary spacing property of the
103  * padding/border/margin series.
104  *
105  * gtk_render_frame() uses this property to find out the frame line width,
106  * so #GtkWidget<!-- -->s rendering frames may need to add up this padding when
107  * requesting size
108  */
109 #define GTK_STYLE_PROPERTY_BORDER_WIDTH "border-width"
110
111 /**
112  * GTK_STYLE_PROPERTY_MARGIN:
113  *
114  * A property holding the rendered element's margin as a #GtkBorder. The
115  * margin is defined as the spacing between the border of the element
116  * and its surrounding elements. It is external to #GtkWidget<!-- -->s's
117  * size allocations, and the most external spacing property of the
118  * padding/border/margin series.
119  */
120 #define GTK_STYLE_PROPERTY_MARGIN "margin"
121
122 /**
123  * GTK_STYLE_PROPERTY_BORDER_RADIUS:
124  *
125  * A property holding the rendered element's border radius in pixels as a #gint.
126  */
127 #define GTK_STYLE_PROPERTY_BORDER_RADIUS "border-radius"
128
129 /**
130  * GTK_STYLE_PROPERTY_BORDER_STYLE:
131  *
132  * A property holding the element's border style as a #GtkBorderStyle.
133  */
134 #define GTK_STYLE_PROPERTY_BORDER_STYLE "border-style"
135
136 /**
137  * GTK_STYLE_PROPERTY_BORDER_COLOR:
138  *
139  * A property holding the element's border color as a #GdkRGBA.
140  */
141 #define GTK_STYLE_PROPERTY_BORDER_COLOR "border-color"
142
143 /**
144  * GTK_STYLE_PROPERTY_BACKGROUND_IMAGE:
145  *
146  * A property holding the element's background as a #cairo_pattern_t.
147  */
148 #define GTK_STYLE_PROPERTY_BACKGROUND_IMAGE "background-image"
149
150
151 /* Predefined set of CSS classes */
152
153 /**
154  * GTK_STYLE_CLASS_CELL:
155  *
156  * A CSS class to match content rendered in cell views.
157  */
158 #define GTK_STYLE_CLASS_CELL "cell"
159
160 /**
161  * GTK_STYLE_CLASS_ENTRY:
162  *
163  * A CSS class to match text entries.
164  */
165 #define GTK_STYLE_CLASS_ENTRY "entry"
166
167 /**
168  * GTK_STYLE_CLASS_BUTTON:
169  *
170  * A CSS class to match buttons.
171  */
172 #define GTK_STYLE_CLASS_BUTTON "button"
173
174 /**
175  * GTK_STYLE_CLASS_CALENDAR:
176  *
177  * A CSS class to match calendars.
178  */
179 #define GTK_STYLE_CLASS_CALENDAR "calendar"
180
181 /**
182  * GTK_STYLE_CLASS_SLIDER:
183  *
184  * A CSS class to match sliders.
185  */
186 #define GTK_STYLE_CLASS_SLIDER "slider"
187
188 /**
189  * GTK_STYLE_CLASS_BACKGROUND:
190  *
191  * A CSS class to match the window background.
192  */
193 #define GTK_STYLE_CLASS_BACKGROUND "background"
194
195 /**
196  * GTK_STYLE_CLASS_RUBBERBAND:
197  *
198  * A CSS class to match the rubberband selection rectangle.
199  */
200 #define GTK_STYLE_CLASS_RUBBERBAND "rubberband"
201
202 /**
203  * GTK_STYLE_CLASS_TOOLTIP:
204  *
205  * A CSS class to match tooltip windows.
206  */
207 #define GTK_STYLE_CLASS_TOOLTIP "tooltip"
208
209 /**
210  * GTK_STYLE_CLASS_MENU:
211  *
212  * A CSS class to match popup menus.
213  */
214 #define GTK_STYLE_CLASS_MENU "menu"
215
216 /**
217  * GTK_STYLE_CLASS_MENUBAR:
218  *
219  * A CSS class to menubars.
220  */
221 #define GTK_STYLE_CLASS_MENUBAR "menubar"
222
223 /**
224  * GTK_STYLE_CLASS_MENUITEM:
225  *
226  * A CSS class to match menu items.
227  */
228 #define GTK_STYLE_CLASS_MENUITEM "menuitem"
229
230 /**
231  * GTK_STYLE_CLASS_TOOLBAR:
232  *
233  * A CSS class to match toolbars.
234  */
235 #define GTK_STYLE_CLASS_TOOLBAR "toolbar"
236
237 /**
238  * GTK_STYLE_CLASS_PRIMARY_TOOLBAR:
239  *
240  * A CSS class to match primary toolbars.
241  */
242 #define GTK_STYLE_CLASS_PRIMARY_TOOLBAR "primary-toolbar"
243
244 /**
245  * GTK_STYLE_CLASS_RADIO:
246  *
247  * A CSS class to match radio buttons.
248  */
249 #define GTK_STYLE_CLASS_RADIO "radio"
250
251 /**
252  * GTK_STYLE_CLASS_CHECK:
253  *
254  * A CSS class to match check boxes.
255  */
256 #define GTK_STYLE_CLASS_CHECK "check"
257
258 /**
259  * GTK_STYLE_CLASS_DEFAULT:
260  *
261  * A CSS class to match the default widget.
262  */
263 #define GTK_STYLE_CLASS_DEFAULT "default"
264
265 /**
266  * GTK_STYLE_CLASS_TROUGH:
267  *
268  * A CSS class to match troughs, as in scrollbars and progressbars.
269  */
270 #define GTK_STYLE_CLASS_TROUGH "trough"
271
272 /**
273  * GTK_STYLE_CLASS_SCROLLBAR:
274  *
275  * A CSS class to match scrollbars.
276  */
277 #define GTK_STYLE_CLASS_SCROLLBAR "scrollbar"
278
279 /**
280  * GTK_STYLE_CLASS_SCALE:
281  *
282  * A CSS class to match scale widgets.
283  */
284 #define GTK_STYLE_CLASS_SCALE "scale"
285
286 /**
287  * GTK_STYLE_CLASS_SCALE_HAS_MARKS_ABOVE:
288  *
289  * A CSS class to match scale widgets with marks attached,
290  * all the marks are above for horizontal #GtkScale.
291  * left for vertical #GtkScale.
292  */
293 #define GTK_STYLE_CLASS_SCALE_HAS_MARKS_ABOVE "scale-has-marks-above"
294
295 /**
296  * GTK_STYLE_CLASS_SCALE_HAS_MARKS_BELOW:
297  *
298  * A CSS class to match scale widgets with marks attached,
299  * all the marks are below for horizontal #GtkScale,
300  * right for vertical #GtkScale.
301  */
302 #define GTK_STYLE_CLASS_SCALE_HAS_MARKS_BELOW "scale-has-marks-below"
303
304 /**
305  * GTK_STYLE_CLASS_HEADER:
306  *
307  * A CSS class to match a header element.
308  */
309 #define GTK_STYLE_CLASS_HEADER "header"
310
311 /**
312  * GTK_STYLE_CLASS_ACCELERATOR:
313  *
314  * A CSS class to match an accelerator.
315  */
316 #define GTK_STYLE_CLASS_ACCELERATOR "accelerator"
317
318 /**
319  * GTK_STYLE_CLASS_RAISED:
320  *
321  * A CSS class to match a raised control, such as a raised
322  * button on a toolbar.
323  */
324 #define GTK_STYLE_CLASS_RAISED "raised"
325
326 /**
327  * GTK_STYLE_CLASS_GRIP:
328  *
329  * A widget class defining a resize grip
330  */
331 #define GTK_STYLE_CLASS_GRIP "grip"
332
333 /**
334  * GTK_STYLE_CLASS_DOCK:
335  *
336  * A widget class defining a dock area
337  */
338 #define GTK_STYLE_CLASS_DOCK "dock"
339
340 /**
341  * GTK_STYLE_CLASS_PROGRESSBAR:
342  *
343  * A widget class defining a resize grip
344  */
345 #define GTK_STYLE_CLASS_PROGRESSBAR "progressbar"
346
347 /**
348  * GTK_STYLE_CLASS_SPINNER:
349  *
350  * A widget class defining a spinner
351  */
352 #define GTK_STYLE_CLASS_SPINNER "spinner"
353
354 /**
355  * GTK_STYLE_CLASS_MARK:
356  *
357  * A widget class defining marks in a widget, such as in scales
358  */
359 #define GTK_STYLE_CLASS_MARK "mark"
360
361 /**
362  * GTK_STYLE_CLASS_EXPANDER:
363  *
364  * A widget class defining an expander, such as those in treeviews
365  */
366 #define GTK_STYLE_CLASS_EXPANDER "expander"
367
368 /**
369  * GTK_STYLE_CLASS_SPINBUTTON:
370  *
371  * A widget class defining an spinbutton
372  */
373 #define GTK_STYLE_CLASS_SPINBUTTON "spinbutton"
374
375 /**
376  * GTK_STYLE_CLASS_NOTEBOOK:
377  *
378  * A widget class defining a notebook
379  */
380 #define GTK_STYLE_CLASS_NOTEBOOK "notebook"
381
382 /**
383  * GTK_STYLE_CLASS_VIEW:
384  *
385  * A widget class defining a view, such as iconviews or treeviews
386  */
387 #define GTK_STYLE_CLASS_VIEW "view"
388
389 /**
390  * GTK_STYLE_CLASS_HIGHLIGHT:
391  *
392  * A CSS class defining a highlighted area, such as headings in
393  * assistants.
394  */
395 #define GTK_STYLE_CLASS_HIGHLIGHT "highlight"
396
397 /**
398  * GTK_STYLE_CLASS_FRAME:
399  *
400  * A CSS class defining a frame delimiting content, such as GtkFrame
401  * or the scrolled window frame around the scrollable area.
402  */
403 #define GTK_STYLE_CLASS_FRAME "frame"
404
405 /**
406  * GTK_STYLE_CLASS_DND:
407  *
408  * A CSS class for a drag-and-drop indicator
409  */
410 #define GTK_STYLE_CLASS_DND "dnd"
411
412 /**
413  * GTK_STYLE_CLASS_PANE_SEPARATOR:
414  *
415  * A CSS class for a pane separator, such as those in #GtkPaned.
416  */
417 #define GTK_STYLE_CLASS_PANE_SEPARATOR "pane-separator"
418
419 /**
420  * GTK_STYLE_CLASS_SEPARATOR:
421  *
422  * A CSS class for a separator.
423  */
424 #define GTK_STYLE_CLASS_SEPARATOR "separator"
425
426 /**
427  * GTK_STYLE_CLASS_INFO:
428  *
429  * A widget class for an area displaying an informational message,
430  * such as those in infobars
431  */
432 #define GTK_STYLE_CLASS_INFO "info"
433
434 /**
435  * GTK_STYLE_CLASS_WARNING:
436  *
437  * A widget class for an area displaying a warning message,
438  * such as those in infobars
439  */
440 #define GTK_STYLE_CLASS_WARNING "warning"
441
442 /**
443  * GTK_STYLE_CLASS_QUESTION:
444  *
445  * A widget class for an area displaying a question to the user,
446  * such as those in infobars
447  */
448 #define GTK_STYLE_CLASS_QUESTION "question"
449
450 /**
451  * GTK_STYLE_CLASS_ERROR:
452  *
453  * A widget class for an area displaying an error message,
454  * such as those in infobars
455  */
456 #define GTK_STYLE_CLASS_ERROR "error"
457
458 /**
459  * GTK_STYLE_CLASS_HORIZONTAL:
460  *
461  * A widget class for horizontally layered widgets.
462  */
463 #define GTK_STYLE_CLASS_HORIZONTAL "horizontal"
464
465 /**
466  * GTK_STYLE_CLASS_VERTICAL:
467  *
468  * A widget class for vertically layered widgets.
469  */
470 #define GTK_STYLE_CLASS_VERTICAL "vertical"
471
472
473 /* Predefined set of widget regions */
474
475 /**
476  * GTK_STYLE_REGION_ROW:
477  *
478  * A widget region name to define a treeview row.
479  */
480 #define GTK_STYLE_REGION_ROW "row"
481
482 /**
483  * GTK_STYLE_REGION_COLUMN:
484  *
485  * A widget region name to define a treeview column.
486  */
487 #define GTK_STYLE_REGION_COLUMN "column"
488
489 /**
490  * GTK_STYLE_REGION_COLUMN_HEADER:
491  *
492  * A widget region name to define a treeview column header.
493  */
494 #define GTK_STYLE_REGION_COLUMN_HEADER "column-header"
495
496 /**
497  * GTK_STYLE_REGION_TAB:
498  *
499  * A widget region name to define a notebook tab.
500  */
501 #define GTK_STYLE_REGION_TAB "tab"
502
503
504 GType gtk_style_context_get_type (void) G_GNUC_CONST;
505
506 GtkStyleContext * gtk_style_context_new (void);
507
508 void gtk_style_context_add_provider_for_screen    (GdkScreen        *screen,
509                                                    GtkStyleProvider *provider,
510                                                    guint             priority);
511 void gtk_style_context_remove_provider_for_screen (GdkScreen        *screen,
512                                                    GtkStyleProvider *provider);
513
514 void gtk_style_context_add_provider    (GtkStyleContext  *context,
515                                         GtkStyleProvider *provider,
516                                         guint             priority);
517
518 void gtk_style_context_remove_provider (GtkStyleContext  *context,
519                                         GtkStyleProvider *provider);
520
521 void gtk_style_context_save    (GtkStyleContext *context);
522 void gtk_style_context_restore (GtkStyleContext *context);
523
524 void gtk_style_context_get_property (GtkStyleContext *context,
525                                      const gchar     *property,
526                                      GtkStateFlags    state,
527                                      GValue          *value);
528 void gtk_style_context_get_valist   (GtkStyleContext *context,
529                                      GtkStateFlags    state,
530                                      va_list          args);
531 void gtk_style_context_get          (GtkStyleContext *context,
532                                      GtkStateFlags    state,
533                                      ...) G_GNUC_NULL_TERMINATED;
534
535 void          gtk_style_context_set_state    (GtkStyleContext *context,
536                                               GtkStateFlags    flags);
537 GtkStateFlags gtk_style_context_get_state    (GtkStyleContext *context);
538
539 gboolean      gtk_style_context_state_is_running (GtkStyleContext *context,
540                                                   GtkStateType     state,
541                                                   gdouble         *progress);
542
543 void          gtk_style_context_set_path     (GtkStyleContext *context,
544                                               GtkWidgetPath   *path);
545 G_CONST_RETURN GtkWidgetPath * gtk_style_context_get_path (GtkStyleContext *context);
546
547 GList *  gtk_style_context_list_classes (GtkStyleContext *context);
548
549 void     gtk_style_context_add_class    (GtkStyleContext *context,
550                                          const gchar     *class_name);
551 void     gtk_style_context_remove_class (GtkStyleContext *context,
552                                          const gchar     *class_name);
553 gboolean gtk_style_context_has_class    (GtkStyleContext *context,
554                                          const gchar     *class_name);
555
556 GList *  gtk_style_context_list_regions (GtkStyleContext *context);
557
558 void     gtk_style_context_add_region    (GtkStyleContext    *context,
559                                           const gchar        *region_name,
560                                           GtkRegionFlags      flags);
561 void     gtk_style_context_remove_region (GtkStyleContext    *context,
562                                           const gchar        *region_name);
563 gboolean gtk_style_context_has_region    (GtkStyleContext    *context,
564                                           const gchar        *region_name,
565                                           GtkRegionFlags     *flags_return);
566
567 void gtk_style_context_get_style_property (GtkStyleContext *context,
568                                            const gchar     *property_name,
569                                            GValue          *value);
570 void gtk_style_context_get_style_valist   (GtkStyleContext *context,
571                                            va_list          args);
572 void gtk_style_context_get_style          (GtkStyleContext *context,
573                                            ...);
574
575 GtkIconSet * gtk_style_context_lookup_icon_set (GtkStyleContext *context,
576                                                 const gchar     *stock_id);
577 GdkPixbuf  * gtk_icon_set_render_icon_pixbuf   (GtkIconSet      *icon_set,
578                                                 GtkStyleContext *context,
579                                                 GtkIconSize      size);
580
581 void        gtk_style_context_set_screen (GtkStyleContext *context,
582                                           GdkScreen       *screen);
583 GdkScreen * gtk_style_context_get_screen (GtkStyleContext *context);
584
585 void             gtk_style_context_set_direction (GtkStyleContext  *context,
586                                                   GtkTextDirection  direction);
587 GtkTextDirection gtk_style_context_get_direction (GtkStyleContext  *context);
588
589 void             gtk_style_context_set_junction_sides (GtkStyleContext  *context,
590                                                        GtkJunctionSides  sides);
591 GtkJunctionSides gtk_style_context_get_junction_sides (GtkStyleContext  *context);
592
593 gboolean gtk_style_context_lookup_color (GtkStyleContext *context,
594                                          const gchar     *color_name,
595                                          GdkRGBA         *color);
596
597 void  gtk_style_context_notify_state_change (GtkStyleContext *context,
598                                              GdkWindow       *window,
599                                              gpointer         region_id,
600                                              GtkStateType     state,
601                                              gboolean         state_value);
602 void  gtk_style_context_cancel_animations   (GtkStyleContext *context,
603                                              gpointer         region_id);
604 void  gtk_style_context_scroll_animations   (GtkStyleContext *context,
605                                              GdkWindow       *window,
606                                              gint             dx,
607                                              gint             dy);
608
609 void gtk_style_context_push_animatable_region (GtkStyleContext *context,
610                                                gpointer         region_id);
611 void gtk_style_context_pop_animatable_region  (GtkStyleContext *context);
612
613 /* Some helper functions to retrieve most common properties */
614 void gtk_style_context_get_color            (GtkStyleContext *context,
615                                              GtkStateFlags    state,
616                                              GdkRGBA         *color);
617 void gtk_style_context_get_background_color (GtkStyleContext *context,
618                                              GtkStateFlags    state,
619                                              GdkRGBA         *color);
620 void gtk_style_context_get_border_color     (GtkStyleContext *context,
621                                              GtkStateFlags    state,
622                                              GdkRGBA         *color);
623 const PangoFontDescription *
624      gtk_style_context_get_font             (GtkStyleContext *context,
625                                              GtkStateFlags    state);
626 void gtk_style_context_get_border           (GtkStyleContext *context,
627                                              GtkStateFlags    state,
628                                              GtkBorder       *border);
629 void gtk_style_context_get_padding          (GtkStyleContext *context,
630                                              GtkStateFlags    state,
631                                              GtkBorder       *padding);
632 void gtk_style_context_get_margin           (GtkStyleContext *context,
633                                              GtkStateFlags    state,
634                                              GtkBorder       *margin);
635
636 void gtk_style_context_invalidate           (GtkStyleContext *context);
637 void gtk_style_context_reset_widgets        (GdkScreen       *screen);
638
639 void gtk_style_context_set_background       (GtkStyleContext *context,
640                                              GdkWindow       *window);
641
642 /* Paint methods */
643 void        gtk_render_check       (GtkStyleContext     *context,
644                                     cairo_t             *cr,
645                                     gdouble              x,
646                                     gdouble              y,
647                                     gdouble              width,
648                                     gdouble              height);
649 void        gtk_render_option      (GtkStyleContext     *context,
650                                     cairo_t             *cr,
651                                     gdouble              x,
652                                     gdouble              y,
653                                     gdouble              width,
654                                     gdouble              height);
655 void        gtk_render_arrow       (GtkStyleContext     *context,
656                                     cairo_t             *cr,
657                                     gdouble              angle,
658                                     gdouble              x,
659                                     gdouble              y,
660                                     gdouble              size);
661 void        gtk_render_background  (GtkStyleContext     *context,
662                                     cairo_t             *cr,
663                                     gdouble              x,
664                                     gdouble              y,
665                                     gdouble              width,
666                                     gdouble              height);
667 void        gtk_render_frame       (GtkStyleContext     *context,
668                                     cairo_t             *cr,
669                                     gdouble              x,
670                                     gdouble              y,
671                                     gdouble              width,
672                                     gdouble              height);
673 void        gtk_render_expander    (GtkStyleContext     *context,
674                                     cairo_t             *cr,
675                                     gdouble              x,
676                                     gdouble              y,
677                                     gdouble              width,
678                                     gdouble              height);
679 void        gtk_render_focus       (GtkStyleContext     *context,
680                                     cairo_t             *cr,
681                                     gdouble              x,
682                                     gdouble              y,
683                                     gdouble              width,
684                                     gdouble              height);
685 void        gtk_render_layout      (GtkStyleContext     *context,
686                                     cairo_t             *cr,
687                                     gdouble              x,
688                                     gdouble              y,
689                                     PangoLayout         *layout);
690 void        gtk_render_line        (GtkStyleContext     *context,
691                                     cairo_t             *cr,
692                                     gdouble              x0,
693                                     gdouble              y0,
694                                     gdouble              x1,
695                                     gdouble              y1);
696 void        gtk_render_slider      (GtkStyleContext     *context,
697                                     cairo_t             *cr,
698                                     gdouble              x,
699                                     gdouble              y,
700                                     gdouble              width,
701                                     gdouble              height,
702                                     GtkOrientation       orientation);
703 void        gtk_render_frame_gap   (GtkStyleContext     *context,
704                                     cairo_t             *cr,
705                                     gdouble              x,
706                                     gdouble              y,
707                                     gdouble              width,
708                                     gdouble              height,
709                                     GtkPositionType      gap_side,
710                                     gdouble              xy0_gap,
711                                     gdouble              xy1_gap);
712 void        gtk_render_extension   (GtkStyleContext     *context,
713                                     cairo_t             *cr,
714                                     gdouble              x,
715                                     gdouble              y,
716                                     gdouble              width,
717                                     gdouble              height,
718                                     GtkPositionType      gap_side);
719 void        gtk_render_handle      (GtkStyleContext     *context,
720                                     cairo_t             *cr,
721                                     gdouble              x,
722                                     gdouble              y,
723                                     gdouble              width,
724                                     gdouble              height);
725 void        gtk_render_activity    (GtkStyleContext     *context,
726                                     cairo_t             *cr,
727                                     gdouble              x,
728                                     gdouble              y,
729                                     gdouble              width,
730                                     gdouble              height);
731 GdkPixbuf * gtk_render_icon_pixbuf (GtkStyleContext     *context,
732                                     const GtkIconSource *source,
733                                     GtkIconSize          size);
734
735 G_END_DECLS
736
737 #endif /* __GTK_STYLE_CONTEXT_H__ */