]> Pileus Git - ~andy/gtk/blob - gtk/gtkstylecontext.h
all: add a "separator" style class
[~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_RADIO:
239  *
240  * A CSS class to match radio buttons.
241  */
242 #define GTK_STYLE_CLASS_RADIO "radio"
243
244 /**
245  * GTK_STYLE_CLASS_CHECK:
246  *
247  * A CSS class to match check boxes.
248  */
249 #define GTK_STYLE_CLASS_CHECK "check"
250
251 /**
252  * GTK_STYLE_CLASS_DEFAULT:
253  *
254  * A CSS class to match the default widget.
255  */
256 #define GTK_STYLE_CLASS_DEFAULT "default"
257
258 /**
259  * GTK_STYLE_CLASS_TROUGH:
260  *
261  * A CSS class to match troughs, as in scrollbars and progressbars.
262  */
263 #define GTK_STYLE_CLASS_TROUGH "trough"
264
265 /**
266  * GTK_STYLE_CLASS_SCROLLBAR:
267  *
268  * A CSS class to match scrollbars.
269  */
270 #define GTK_STYLE_CLASS_SCROLLBAR "scrollbar"
271
272 /**
273  * GTK_STYLE_CLASS_SCALE:
274  *
275  * A CSS class to match scale widgets.
276  */
277 #define GTK_STYLE_CLASS_SCALE "scale"
278
279 /**
280  * GTK_STYLE_CLASS_SCALE_HAS_MARKS_ABOVE:
281  *
282  * A CSS class to match scale widgets with marks attached,
283  * all the marks are above for horizontal #GtkScale.
284  * left for vertical #GtkScale.
285  */
286 #define GTK_STYLE_CLASS_SCALE_HAS_MARKS_ABOVE "scale-has-marks-above"
287
288 /**
289  * GTK_STYLE_CLASS_SCALE_HAS_MARKS_BELOW:
290  *
291  * A CSS class to match scale widgets with marks attached,
292  * all the marks are below for horizontal #GtkScale,
293  * right for vertical #GtkScale.
294  */
295 #define GTK_STYLE_CLASS_SCALE_HAS_MARKS_BELOW "scale-has-marks-below"
296
297 /**
298  * GTK_STYLE_CLASS_HEADER:
299  *
300  * A CSS class to match a header element.
301  */
302 #define GTK_STYLE_CLASS_HEADER "header"
303
304 /**
305  * GTK_STYLE_CLASS_ACCELERATOR:
306  *
307  * A CSS class to match an accelerator.
308  */
309 #define GTK_STYLE_CLASS_ACCELERATOR "accelerator"
310
311 /**
312  * GTK_STYLE_CLASS_GRIP:
313  *
314  * A widget class defining a resize grip
315  */
316 #define GTK_STYLE_CLASS_GRIP "grip"
317
318 /**
319  * GTK_STYLE_CLASS_DOCK:
320  *
321  * A widget class defining a dock area
322  */
323 #define GTK_STYLE_CLASS_DOCK "dock"
324
325 /**
326  * GTK_STYLE_CLASS_PROGRESSBAR:
327  *
328  * A widget class defining a resize grip
329  */
330 #define GTK_STYLE_CLASS_PROGRESSBAR "progressbar"
331
332 /**
333  * GTK_STYLE_CLASS_SPINNER:
334  *
335  * A widget class defining a spinner
336  */
337 #define GTK_STYLE_CLASS_SPINNER "spinner"
338
339 /**
340  * GTK_STYLE_CLASS_MARK:
341  *
342  * A widget class defining marks in a widget, such as in scales
343  */
344 #define GTK_STYLE_CLASS_MARK "mark"
345
346 /**
347  * GTK_STYLE_CLASS_EXPANDER:
348  *
349  * A widget class defining an expander, such as those in treeviews
350  */
351 #define GTK_STYLE_CLASS_EXPANDER "expander"
352
353 /**
354  * GTK_STYLE_CLASS_SPINBUTTON:
355  *
356  * A widget class defining an spinbutton
357  */
358 #define GTK_STYLE_CLASS_SPINBUTTON "spinbutton"
359
360 /**
361  * GTK_STYLE_CLASS_NOTEBOOK:
362  *
363  * A widget class defining a notebook
364  */
365 #define GTK_STYLE_CLASS_NOTEBOOK "notebook"
366
367 /**
368  * GTK_STYLE_CLASS_VIEW:
369  *
370  * A widget class defining a view, such as iconviews or treeviews
371  */
372 #define GTK_STYLE_CLASS_VIEW "view"
373
374 /**
375  * GTK_STYLE_CLASS_HIGHLIGHT:
376  *
377  * A CSS class defining a highlighted area, such as headings in
378  * assistants.
379  */
380 #define GTK_STYLE_CLASS_HIGHLIGHT "highlight"
381
382 /**
383  * GTK_STYLE_CLASS_FRAME:
384  *
385  * A CSS class defining a frame delimiting content, such as GtkFrame
386  * or the scrolled window frame around the scrollable area.
387  */
388 #define GTK_STYLE_CLASS_FRAME "frame"
389
390 /**
391  * GTK_STYLE_CLASS_DND:
392  *
393  * A CSS class for a drag-and-drop indicator
394  */
395 #define GTK_STYLE_CLASS_DND "dnd"
396
397 /**
398  * GTK_STYLE_CLASS_PANE_SEPARATOR:
399  *
400  * A CSS class for a pane separator, such as those in #GtkPaned.
401  */
402 #define GTK_STYLE_CLASS_PANE_SEPARATOR "pane-separator"
403
404 /**
405  * GTK_STYLE_CLASS_SEPARATOR:
406  *
407  * A CSS class for a separator.
408  */
409 #define GTK_STYLE_CLASS_SEPARATOR "separator"
410
411 /**
412  * GTK_STYLE_CLASS_INFO:
413  *
414  * A widget class for an area displaying an informational message,
415  * such as those in infobars
416  */
417 #define GTK_STYLE_CLASS_INFO "info"
418
419 /**
420  * GTK_STYLE_CLASS_WARNING:
421  *
422  * A widget class for an area displaying a warning message,
423  * such as those in infobars
424  */
425 #define GTK_STYLE_CLASS_WARNING "warning"
426
427 /**
428  * GTK_STYLE_CLASS_QUESTION:
429  *
430  * A widget class for an area displaying a question to the user,
431  * such as those in infobars
432  */
433 #define GTK_STYLE_CLASS_QUESTION "question"
434
435 /**
436  * GTK_STYLE_CLASS_ERROR:
437  *
438  * A widget class for an area displaying an error message,
439  * such as those in infobars
440  */
441 #define GTK_STYLE_CLASS_ERROR "error"
442
443 /**
444  * GTK_STYLE_CLASS_HORIZONTAL:
445  *
446  * A widget class for horizontally layered widgets.
447  */
448 #define GTK_STYLE_CLASS_HORIZONTAL "horizontal"
449
450 /**
451  * GTK_STYLE_CLASS_VERTICAL:
452  *
453  * A widget class for vertically layered widgets.
454  */
455 #define GTK_STYLE_CLASS_VERTICAL "vertical"
456
457
458 /* Predefined set of widget regions */
459
460 /**
461  * GTK_STYLE_REGION_ROW:
462  *
463  * A widget region name to define a treeview row.
464  */
465 #define GTK_STYLE_REGION_ROW "row"
466
467 /**
468  * GTK_STYLE_REGION_COLUMN:
469  *
470  * A widget region name to define a treeview column.
471  */
472 #define GTK_STYLE_REGION_COLUMN "column"
473
474 /**
475  * GTK_STYLE_REGION_COLUMN_HEADER:
476  *
477  * A widget region name to define a treeview column header.
478  */
479 #define GTK_STYLE_REGION_COLUMN_HEADER "column-header"
480
481 /**
482  * GTK_STYLE_REGION_TAB:
483  *
484  * A widget region name to define a notebook tab.
485  */
486 #define GTK_STYLE_REGION_TAB "tab"
487
488
489 GType gtk_style_context_get_type (void) G_GNUC_CONST;
490
491 GtkStyleContext * gtk_style_context_new (void);
492
493 void gtk_style_context_add_provider_for_screen    (GdkScreen        *screen,
494                                                    GtkStyleProvider *provider,
495                                                    guint             priority);
496 void gtk_style_context_remove_provider_for_screen (GdkScreen        *screen,
497                                                    GtkStyleProvider *provider);
498
499 void gtk_style_context_add_provider    (GtkStyleContext  *context,
500                                         GtkStyleProvider *provider,
501                                         guint             priority);
502
503 void gtk_style_context_remove_provider (GtkStyleContext  *context,
504                                         GtkStyleProvider *provider);
505
506 void gtk_style_context_save    (GtkStyleContext *context);
507 void gtk_style_context_restore (GtkStyleContext *context);
508
509 void gtk_style_context_get_property (GtkStyleContext *context,
510                                      const gchar     *property,
511                                      GtkStateFlags    state,
512                                      GValue          *value);
513 void gtk_style_context_get_valist   (GtkStyleContext *context,
514                                      GtkStateFlags    state,
515                                      va_list          args);
516 void gtk_style_context_get          (GtkStyleContext *context,
517                                      GtkStateFlags    state,
518                                      ...) G_GNUC_NULL_TERMINATED;
519
520 void          gtk_style_context_set_state    (GtkStyleContext *context,
521                                               GtkStateFlags    flags);
522 GtkStateFlags gtk_style_context_get_state    (GtkStyleContext *context);
523
524 gboolean      gtk_style_context_state_is_running (GtkStyleContext *context,
525                                                   GtkStateType     state,
526                                                   gdouble         *progress);
527
528 void          gtk_style_context_set_path     (GtkStyleContext *context,
529                                               GtkWidgetPath   *path);
530 G_CONST_RETURN GtkWidgetPath * gtk_style_context_get_path (GtkStyleContext *context);
531
532 GList *  gtk_style_context_list_classes (GtkStyleContext *context);
533
534 void     gtk_style_context_add_class    (GtkStyleContext *context,
535                                          const gchar     *class_name);
536 void     gtk_style_context_remove_class (GtkStyleContext *context,
537                                          const gchar     *class_name);
538 gboolean gtk_style_context_has_class    (GtkStyleContext *context,
539                                          const gchar     *class_name);
540
541 GList *  gtk_style_context_list_regions (GtkStyleContext *context);
542
543 void     gtk_style_context_add_region    (GtkStyleContext    *context,
544                                           const gchar        *region_name,
545                                           GtkRegionFlags      flags);
546 void     gtk_style_context_remove_region (GtkStyleContext    *context,
547                                           const gchar        *region_name);
548 gboolean gtk_style_context_has_region    (GtkStyleContext    *context,
549                                           const gchar        *region_name,
550                                           GtkRegionFlags     *flags_return);
551
552 void gtk_style_context_get_style_property (GtkStyleContext *context,
553                                            const gchar     *property_name,
554                                            GValue          *value);
555 void gtk_style_context_get_style_valist   (GtkStyleContext *context,
556                                            va_list          args);
557 void gtk_style_context_get_style          (GtkStyleContext *context,
558                                            ...);
559
560 GtkIconSet * gtk_style_context_lookup_icon_set (GtkStyleContext *context,
561                                                 const gchar     *stock_id);
562 GdkPixbuf  * gtk_icon_set_render_icon_pixbuf   (GtkIconSet      *icon_set,
563                                                 GtkStyleContext *context,
564                                                 GtkIconSize      size);
565
566 void        gtk_style_context_set_screen (GtkStyleContext *context,
567                                           GdkScreen       *screen);
568 GdkScreen * gtk_style_context_get_screen (GtkStyleContext *context);
569
570 void             gtk_style_context_set_direction (GtkStyleContext  *context,
571                                                   GtkTextDirection  direction);
572 GtkTextDirection gtk_style_context_get_direction (GtkStyleContext  *context);
573
574 void             gtk_style_context_set_junction_sides (GtkStyleContext  *context,
575                                                        GtkJunctionSides  sides);
576 GtkJunctionSides gtk_style_context_get_junction_sides (GtkStyleContext  *context);
577
578 gboolean gtk_style_context_lookup_color (GtkStyleContext *context,
579                                          const gchar     *color_name,
580                                          GdkRGBA         *color);
581
582 void  gtk_style_context_notify_state_change (GtkStyleContext *context,
583                                              GdkWindow       *window,
584                                              gpointer         region_id,
585                                              GtkStateType     state,
586                                              gboolean         state_value);
587 void  gtk_style_context_cancel_animations   (GtkStyleContext *context,
588                                              gpointer         region_id);
589 void  gtk_style_context_scroll_animations   (GtkStyleContext *context,
590                                              GdkWindow       *window,
591                                              gint             dx,
592                                              gint             dy);
593
594 void gtk_style_context_push_animatable_region (GtkStyleContext *context,
595                                                gpointer         region_id);
596 void gtk_style_context_pop_animatable_region  (GtkStyleContext *context);
597
598 /* Some helper functions to retrieve most common properties */
599 void gtk_style_context_get_color            (GtkStyleContext *context,
600                                              GtkStateFlags    state,
601                                              GdkRGBA         *color);
602 void gtk_style_context_get_background_color (GtkStyleContext *context,
603                                              GtkStateFlags    state,
604                                              GdkRGBA         *color);
605 void gtk_style_context_get_border_color     (GtkStyleContext *context,
606                                              GtkStateFlags    state,
607                                              GdkRGBA         *color);
608 const PangoFontDescription *
609      gtk_style_context_get_font             (GtkStyleContext *context,
610                                              GtkStateFlags    state);
611 void gtk_style_context_get_border           (GtkStyleContext *context,
612                                              GtkStateFlags    state,
613                                              GtkBorder       *border);
614 void gtk_style_context_get_padding          (GtkStyleContext *context,
615                                              GtkStateFlags    state,
616                                              GtkBorder       *padding);
617 void gtk_style_context_get_margin           (GtkStyleContext *context,
618                                              GtkStateFlags    state,
619                                              GtkBorder       *margin);
620
621 void gtk_style_context_invalidate           (GtkStyleContext *context);
622 void gtk_style_context_reset_widgets        (GdkScreen       *screen);
623
624 void gtk_style_context_set_background       (GtkStyleContext *context,
625                                              GdkWindow       *window);
626
627 /* Paint methods */
628 void        gtk_render_check       (GtkStyleContext     *context,
629                                     cairo_t             *cr,
630                                     gdouble              x,
631                                     gdouble              y,
632                                     gdouble              width,
633                                     gdouble              height);
634 void        gtk_render_option      (GtkStyleContext     *context,
635                                     cairo_t             *cr,
636                                     gdouble              x,
637                                     gdouble              y,
638                                     gdouble              width,
639                                     gdouble              height);
640 void        gtk_render_arrow       (GtkStyleContext     *context,
641                                     cairo_t             *cr,
642                                     gdouble              angle,
643                                     gdouble              x,
644                                     gdouble              y,
645                                     gdouble              size);
646 void        gtk_render_background  (GtkStyleContext     *context,
647                                     cairo_t             *cr,
648                                     gdouble              x,
649                                     gdouble              y,
650                                     gdouble              width,
651                                     gdouble              height);
652 void        gtk_render_frame       (GtkStyleContext     *context,
653                                     cairo_t             *cr,
654                                     gdouble              x,
655                                     gdouble              y,
656                                     gdouble              width,
657                                     gdouble              height);
658 void        gtk_render_expander    (GtkStyleContext     *context,
659                                     cairo_t             *cr,
660                                     gdouble              x,
661                                     gdouble              y,
662                                     gdouble              width,
663                                     gdouble              height);
664 void        gtk_render_focus       (GtkStyleContext     *context,
665                                     cairo_t             *cr,
666                                     gdouble              x,
667                                     gdouble              y,
668                                     gdouble              width,
669                                     gdouble              height);
670 void        gtk_render_layout      (GtkStyleContext     *context,
671                                     cairo_t             *cr,
672                                     gdouble              x,
673                                     gdouble              y,
674                                     PangoLayout         *layout);
675 void        gtk_render_line        (GtkStyleContext     *context,
676                                     cairo_t             *cr,
677                                     gdouble              x0,
678                                     gdouble              y0,
679                                     gdouble              x1,
680                                     gdouble              y1);
681 void        gtk_render_slider      (GtkStyleContext     *context,
682                                     cairo_t             *cr,
683                                     gdouble              x,
684                                     gdouble              y,
685                                     gdouble              width,
686                                     gdouble              height,
687                                     GtkOrientation       orientation);
688 void        gtk_render_frame_gap   (GtkStyleContext     *context,
689                                     cairo_t             *cr,
690                                     gdouble              x,
691                                     gdouble              y,
692                                     gdouble              width,
693                                     gdouble              height,
694                                     GtkPositionType      gap_side,
695                                     gdouble              xy0_gap,
696                                     gdouble              xy1_gap);
697 void        gtk_render_extension   (GtkStyleContext     *context,
698                                     cairo_t             *cr,
699                                     gdouble              x,
700                                     gdouble              y,
701                                     gdouble              width,
702                                     gdouble              height,
703                                     GtkPositionType      gap_side);
704 void        gtk_render_handle      (GtkStyleContext     *context,
705                                     cairo_t             *cr,
706                                     gdouble              x,
707                                     gdouble              y,
708                                     gdouble              width,
709                                     gdouble              height);
710 void        gtk_render_activity    (GtkStyleContext     *context,
711                                     cairo_t             *cr,
712                                     gdouble              x,
713                                     gdouble              y,
714                                     gdouble              width,
715                                     gdouble              height);
716 GdkPixbuf * gtk_render_icon_pixbuf (GtkStyleContext     *context,
717                                     const GtkIconSource *source,
718                                     GtkIconSize          size);
719
720 G_END_DECLS
721
722 #endif /* __GTK_STYLE_CONTEXT_H__ */