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