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