]> Pileus Git - ~andy/gtk/blob - gtk/gtkstylecontext.h
Merge branch 'win32-theme2'
[~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 #include <atk/atk.h>
32
33 G_BEGIN_DECLS
34
35 #define GTK_TYPE_STYLE_CONTEXT         (gtk_style_context_get_type ())
36 #define GTK_STYLE_CONTEXT(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_STYLE_CONTEXT, GtkStyleContext))
37 #define GTK_STYLE_CONTEXT_CLASS(c)     (G_TYPE_CHECK_CLASS_CAST    ((c), GTK_TYPE_STYLE_CONTEXT, GtkStyleContextClass))
38 #define GTK_IS_STYLE_CONTEXT(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_STYLE_CONTEXT))
39 #define GTK_IS_STYLE_CONTEXT_CLASS(c)  (G_TYPE_CHECK_CLASS_TYPE    ((c), GTK_TYPE_STYLE_CONTEXT))
40 #define GTK_STYLE_CONTEXT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS  ((o), GTK_TYPE_STYLE_CONTEXT, GtkStyleContextClass))
41
42 typedef struct _GtkStyleContext GtkStyleContext;
43 typedef struct _GtkStyleContextClass GtkStyleContextClass;
44 typedef struct _GtkStyleContextPrivate GtkStyleContextPrivate;
45
46 struct _GtkStyleContext
47 {
48   GObject parent_object;
49   GtkStyleContextPrivate *priv;
50 };
51
52 struct _GtkStyleContextClass
53 {
54   GObjectClass parent_class;
55
56   void (* changed) (GtkStyleContext *context);
57
58   /* Padding for future expansion */
59   void (*_gtk_reserved1) (void);
60   void (*_gtk_reserved2) (void);
61   void (*_gtk_reserved3) (void);
62   void (*_gtk_reserved4) (void);
63 };
64
65 /* Default set of properties that GtkStyleContext may contain */
66
67 /**
68  * GTK_STYLE_PROPERTY_BACKGROUND_COLOR:
69  *
70  * A property holding the background color of rendered elements as a #GdkRGBA.
71  */
72 #define GTK_STYLE_PROPERTY_BACKGROUND_COLOR "background-color"
73
74 /**
75  * GTK_STYLE_PROPERTY_COLOR:
76  *
77  * A property holding the foreground color of rendered elements as a #GdkRGBA.
78  */
79 #define GTK_STYLE_PROPERTY_COLOR "color"
80
81 /**
82  * GTK_STYLE_PROPERTY_FONT:
83  *
84  * A property holding the font properties used when rendering text
85  * as a #PangoFontDescription.
86  */
87 #define GTK_STYLE_PROPERTY_FONT "font"
88
89 /**
90  * GTK_STYLE_PROPERTY_PADDING:
91  *
92  * A property holding the rendered element's padding as a #GtkBorder. The
93  * padding is defined as the spacing between the inner part of the element border
94  * and its child. It's the innermost spacing property of the padding/border/margin
95  * series.
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
103  * a #GtkBorder. The border is the intermediary spacing property of the
104  * padding/border/margin series.
105  *
106  * gtk_render_frame() uses this property to find out the frame line width,
107  * so #GtkWidget<!-- -->s rendering frames may need to add up this padding when
108  * requesting size
109  */
110 #define GTK_STYLE_PROPERTY_BORDER_WIDTH "border-width"
111
112 /**
113  * GTK_STYLE_PROPERTY_MARGIN:
114  *
115  * A property holding the rendered element's margin as a #GtkBorder. The
116  * margin is defined as the spacing between the border of the element
117  * and its surrounding elements. It is external to #GtkWidget<!-- -->s's
118  * size allocations, and the most external spacing property of the
119  * padding/border/margin series.
120  */
121 #define GTK_STYLE_PROPERTY_MARGIN "margin"
122
123 /**
124  * GTK_STYLE_PROPERTY_BORDER_RADIUS:
125  *
126  * A property holding the rendered element's border radius in pixels as a #gint.
127  */
128 #define GTK_STYLE_PROPERTY_BORDER_RADIUS "border-radius"
129
130 /**
131  * GTK_STYLE_PROPERTY_BORDER_STYLE:
132  *
133  * A property holding the element's border style as a #GtkBorderStyle.
134  */
135 #define GTK_STYLE_PROPERTY_BORDER_STYLE "border-style"
136
137 /**
138  * GTK_STYLE_PROPERTY_BORDER_COLOR:
139  *
140  * A property holding the element's border color as a #GdkRGBA.
141  */
142 #define GTK_STYLE_PROPERTY_BORDER_COLOR "border-color"
143
144 /**
145  * GTK_STYLE_PROPERTY_BACKGROUND_IMAGE:
146  *
147  * A property holding the element's background as a #cairo_pattern_t.
148  */
149 #define GTK_STYLE_PROPERTY_BACKGROUND_IMAGE "background-image"
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  * This is used by cell renderers, e.g. in #GtkIconView
159  * and #GtkTreeView.
160  */
161 #define GTK_STYLE_CLASS_CELL "cell"
162
163 /**
164  * GTK_STYLE_CLASS_ENTRY:
165  *
166  * A CSS class to match text entries.
167  *
168  * This is used by #GtkEntry.
169  */
170 #define GTK_STYLE_CLASS_ENTRY "entry"
171
172 /**
173  * GTK_STYLE_CLASS_COMBOBOX_ENTRY:
174  *
175  * A CSS class to match combobox entries.
176  *
177  * This is used by #GtkComboBox.
178  */
179 #define GTK_STYLE_CLASS_COMBOBOX_ENTRY "combobox-entry"
180
181 /**
182  * GTK_STYLE_CLASS_BUTTON:
183  *
184  * A CSS class to match buttons.
185  *
186  * This is used by #GtkButton and its subclasses, as well
187  * as various other widget pieces that appear like buttons,
188  * e.g. the arrows in a #GtkCalendar.
189  */
190 #define GTK_STYLE_CLASS_BUTTON "button"
191
192 /**
193  * GTK_STYLE_CLASS_CALENDAR:
194  *
195  * A CSS class to match calendars.
196  *
197  * This is not used by GTK+ itself, currently.
198  */
199 #define GTK_STYLE_CLASS_CALENDAR "calendar"
200
201 /**
202  * GTK_STYLE_CLASS_SLIDER:
203  *
204  * A CSS class to match sliders.
205  *
206  * This is used by #GtkSwitch and #GtkRange and its subclasses.
207  */
208 #define GTK_STYLE_CLASS_SLIDER "slider"
209
210 /**
211  * GTK_STYLE_CLASS_BACKGROUND:
212  *
213  * A CSS class to match the window background.
214  */
215 #define GTK_STYLE_CLASS_BACKGROUND "background"
216
217 /**
218  * GTK_STYLE_CLASS_RUBBERBAND:
219  *
220  * A CSS class to match the rubberband selection rectangle.
221  *
222  * This is used in #GtkIconView and #GtkTreeView.
223  */
224 #define GTK_STYLE_CLASS_RUBBERBAND "rubberband"
225
226 /**
227  * GTK_STYLE_CLASS_TOOLTIP:
228  *
229  * A CSS class to match tooltip windows.
230  */
231 #define GTK_STYLE_CLASS_TOOLTIP "tooltip"
232
233 /**
234  * GTK_STYLE_CLASS_MENU:
235  *
236  * A CSS class to match popup menus.
237  *
238  * This is used in #GtkMenu.
239  */
240 #define GTK_STYLE_CLASS_MENU "menu"
241
242 /**
243  * GTK_STYLE_CLASS_MENUBAR:
244  *
245  * A CSS class to menubars.
246  *
247  * This is used in #GtkMenuBar.
248  */
249 #define GTK_STYLE_CLASS_MENUBAR "menubar"
250
251 /**
252  * GTK_STYLE_CLASS_MENUITEM:
253  *
254  * A CSS class to match menu items.
255  *
256  * This is used in #GtkMenuItem and its subclasses.
257  */
258 #define GTK_STYLE_CLASS_MENUITEM "menuitem"
259
260 /**
261  * GTK_STYLE_CLASS_TOOLBAR:
262  *
263  * A CSS class to match toolbars.
264  *
265  * This is used in #GtkToolbar.
266  */
267 #define GTK_STYLE_CLASS_TOOLBAR "toolbar"
268
269 /**
270  * GTK_STYLE_CLASS_PRIMARY_TOOLBAR:
271  *
272  * A CSS class to match primary toolbars.
273  *
274  * This should be used for the 'main' toolbar of an application,
275  * right below its menubar.
276  */
277 #define GTK_STYLE_CLASS_PRIMARY_TOOLBAR "primary-toolbar"
278
279 /**
280  * GTK_STYLE_CLASS_INLINE_TOOLBAR:
281  *
282  * A CSS class to match inline toolbars.
283  *
284  * This should be used for toolbars that are used to hold
285  * actions below lists, as seen e.g. in the left pane of the
286  * file chooser.
287  */
288 #define GTK_STYLE_CLASS_INLINE_TOOLBAR "inline-toolbar"
289
290 /**
291  * GTK_STYLE_CLASS_RADIO:
292  *
293  * A CSS class to match radio buttons.
294  *
295  * This is used in #GtkRadioButton, #GtkRadioMenuItem and
296  * #GtkCellRendererToggle.
297  */
298 #define GTK_STYLE_CLASS_RADIO "radio"
299
300 /**
301  * GTK_STYLE_CLASS_CHECK:
302  *
303  * A CSS class to match check boxes.
304  *
305  * This is used in #GtkCheckButton, #GtkCheckMenuItem and
306  * #GtkCellRendererToggle.
307  */
308 #define GTK_STYLE_CLASS_CHECK "check"
309
310 /**
311  * GTK_STYLE_CLASS_DEFAULT:
312  *
313  * A CSS class to match the default widget.
314  *
315  * This is used by #GtkButton.
316  */
317 #define GTK_STYLE_CLASS_DEFAULT "default"
318
319 /**
320  * GTK_STYLE_CLASS_TROUGH:
321  *
322  * A CSS class to match troughs, as in scrollbars and progressbars.
323  *
324  * This is used in #GtkRange and its subclasses, #GtkProgressBar
325  * and #GtkSwitch.
326  */
327 #define GTK_STYLE_CLASS_TROUGH "trough"
328
329 /**
330  * GTK_STYLE_CLASS_SCROLLBAR:
331  *
332  * A CSS class to match scrollbars.
333  */
334 #define GTK_STYLE_CLASS_SCROLLBAR "scrollbar"
335
336 /**
337  * GTK_STYLE_CLASS_SCALE:
338  *
339  * A CSS class to match scale widgets.
340  *
341  * This is used in #GtkScale.
342  */
343 #define GTK_STYLE_CLASS_SCALE "scale"
344
345 /**
346  * GTK_STYLE_CLASS_SCALE_HAS_MARKS_ABOVE:
347  *
348  * A CSS class to match scale widgets with marks attached,
349  * all the marks are above for horizontal #GtkScale.
350  * left for vertical #GtkScale.
351  */
352 #define GTK_STYLE_CLASS_SCALE_HAS_MARKS_ABOVE "scale-has-marks-above"
353
354 /**
355  * GTK_STYLE_CLASS_SCALE_HAS_MARKS_BELOW:
356  *
357  * A CSS class to match scale widgets with marks attached,
358  * all the marks are below for horizontal #GtkScale,
359  * right for vertical #GtkScale.
360  */
361 #define GTK_STYLE_CLASS_SCALE_HAS_MARKS_BELOW "scale-has-marks-below"
362
363 /**
364  * GTK_STYLE_CLASS_HEADER:
365  *
366  * A CSS class to match a header element.
367  *
368  * This is used for the header in #GtkCalendar.
369  */
370 #define GTK_STYLE_CLASS_HEADER "header"
371
372 /**
373  * GTK_STYLE_CLASS_ACCELERATOR:
374  *
375  * A CSS class to match an accelerator.
376  *
377  * This is used for the accelerator in #GtkAccelLabel.
378  */
379 #define GTK_STYLE_CLASS_ACCELERATOR "accelerator"
380
381 /**
382  * GTK_STYLE_CLASS_RAISED:
383  *
384  * A CSS class to match a raised control, such as a raised
385  * button on a toolbar.
386  *
387  * This should be used in conjunction with #GTK_STYLE_CLASS_PRIMARY_TOOLBAR.
388  */
389 #define GTK_STYLE_CLASS_RAISED "raised"
390
391 /**
392  * GTK_STYLE_CLASS_GRIP:
393  *
394  * A CSS class defining a resize grip.
395  *
396  * This is used for the resize grip in #GtkWindow.
397  */
398 #define GTK_STYLE_CLASS_GRIP "grip"
399
400 /**
401  * GTK_STYLE_CLASS_DOCK:
402  *
403  * A CSS class defining a dock area.
404  *
405  * This is used by #GtkHandleBox.
406  */
407 #define GTK_STYLE_CLASS_DOCK "dock"
408
409 /**
410  * GTK_STYLE_CLASS_PROGRESSBAR:
411  *
412  * A CSS class to use when rendering activity as a progressbar.
413  *
414  * This is used in #GtkProgressBar and when drawing progress
415  * inside a #GtkEntry or in #GtkCellRendererProgress.
416  */
417 #define GTK_STYLE_CLASS_PROGRESSBAR "progressbar"
418
419 /**
420  * GTK_STYLE_CLASS_SPINNER:
421  *
422  * A CSS class to use when rendering activity as a 'spinner'.
423  *
424  * This is used by #GtkSpinner and #GtkCellRendererSpinner.
425  */
426 #define GTK_STYLE_CLASS_SPINNER "spinner"
427
428 /**
429  * GTK_STYLE_CLASS_MARK:
430  *
431  * A CSS class defining marks in a widget, such as in scales.
432  *
433  * Used in #GtkScale.
434  */
435 #define GTK_STYLE_CLASS_MARK "mark"
436
437 /**
438  * GTK_STYLE_CLASS_EXPANDER:
439  *
440  * A CSS class defining an expander, such as those in treeviews.
441  *
442  * Used for drawing expanders in #GtkTreeView, GtkExpander and
443  * #GtkToolItemGroup.
444  */
445 #define GTK_STYLE_CLASS_EXPANDER "expander"
446
447 /**
448  * GTK_STYLE_CLASS_SPINBUTTON:
449  *
450  * A CSS class defining an spinbutton.
451  *
452  * This is used in #GtkSpinButton.
453  */
454 #define GTK_STYLE_CLASS_SPINBUTTON "spinbutton"
455
456 /**
457  * GTK_STYLE_CLASS_NOTEBOOK:
458  *
459  * A CSS class defining a notebook.
460  *
461  * Used in #GtkNotebook.
462  */
463 #define GTK_STYLE_CLASS_NOTEBOOK "notebook"
464
465 /**
466  * GTK_STYLE_CLASS_VIEW:
467  *
468  * A CSS class defining a view, such as iconviews or treeviews.
469  *
470  * This is used in #GtkTreeView, #GtkIconView, #GtkTextView,
471  * as well as #GtkCalendar.
472  */
473 #define GTK_STYLE_CLASS_VIEW "view"
474
475 /**
476  * GTK_STYLE_CLASS_SIDEBAR:
477  *
478  * A CSS class defining a sidebar, such as the left side in
479  * a file chooser.
480  *
481  * This is used in #GtkFileChooser and in #GtkAssistant.
482  */
483 #define GTK_STYLE_CLASS_SIDEBAR "sidebar"
484
485 /**
486  * GTK_STYLE_CLASS_IMAGE:
487  *
488  * A CSS class defining an image, such as the icon in an entry.
489  *
490  * This is used when rendering icons in #GtkEntry.
491  */
492 #define GTK_STYLE_CLASS_IMAGE "image"
493
494 /**
495  * GTK_STYLE_CLASS_HIGHLIGHT:
496  *
497  * A CSS class defining a highlighted area, such as headings in
498  * assistants and calendars.
499  *
500  * This is used in #GtkAssistant and #GtkCalendar.
501  */
502 #define GTK_STYLE_CLASS_HIGHLIGHT "highlight"
503
504 /**
505  * GTK_STYLE_CLASS_FRAME:
506  *
507  * A CSS class defining a frame delimiting content, such as
508  * #GtkFrame or the scrolled window frame around the
509  * scrollable area.
510  *
511  * This is used in #GtkFrame and #GtkScrollbar.
512  */
513 #define GTK_STYLE_CLASS_FRAME "frame"
514
515 /**
516  * GTK_STYLE_CLASS_DND:
517  *
518  * A CSS class for a drag-and-drop indicator.
519  *
520  * This is used when drawing an outline around a potential
521  * drop target during DND.
522  */
523 #define GTK_STYLE_CLASS_DND "dnd"
524
525 /**
526  * GTK_STYLE_CLASS_PANE_SEPARATOR:
527  *
528  * A CSS class for a pane separator, such as those in #GtkPaned.
529  *
530  * Used in #GtkPaned.
531  */
532 #define GTK_STYLE_CLASS_PANE_SEPARATOR "pane-separator"
533
534 /**
535  * GTK_STYLE_CLASS_SEPARATOR:
536  *
537  * A CSS class for a separator.
538  *
539  * This is used in #GtkSeparator, #GtkSeparatorMenuItem,
540  * #GtkSeparatorToolItem, and when drawing separators in #GtkTreeView.
541  */
542 #define GTK_STYLE_CLASS_SEPARATOR "separator"
543
544 /**
545  * GTK_STYLE_CLASS_INFO:
546  *
547  * A CSS class for an area displaying an informational message,
548  * such as those in infobars.
549  *
550  * This is used by #GtkInfoBar.
551  */
552 #define GTK_STYLE_CLASS_INFO "info"
553
554 /**
555  * GTK_STYLE_CLASS_WARNING:
556  *
557  * A CSS class for an area displaying a warning message,
558  * such as those in infobars.
559  *
560  * This is used by #GtkInfoBar.
561  */
562 #define GTK_STYLE_CLASS_WARNING "warning"
563
564 /**
565  * GTK_STYLE_CLASS_QUESTION:
566  *
567  * A CSS class for an area displaying a question to the user,
568  * such as those in infobars.
569  *
570  * This is used by #GtkInfoBar.
571  */
572 #define GTK_STYLE_CLASS_QUESTION "question"
573
574 /**
575  * GTK_STYLE_CLASS_ERROR:
576  *
577  * A CSS class for an area displaying an error message,
578  * such as those in infobars.
579  *
580  * This is used by #GtkInfoBar.
581  */
582 #define GTK_STYLE_CLASS_ERROR "error"
583
584 /**
585  * GTK_STYLE_CLASS_HORIZONTAL:
586  *
587  * A CSS class for horizontally layered widgets.
588  *
589  * This is used by widgets implementing #GtkOrientable.
590  */
591 #define GTK_STYLE_CLASS_HORIZONTAL "horizontal"
592
593 /**
594  * GTK_STYLE_CLASS_VERTICAL:
595  *
596  * A CSS class for vertically layered widgets.
597  *
598  * This is used by widgets implementing #GtkOrientable.
599  */
600 #define GTK_STYLE_CLASS_VERTICAL "vertical"
601
602 /**
603  * GTK_STYLE_CLASS_TOP:
604  *
605  * A CSS class to indicate an area at the top of a widget.
606  *
607  * This is used by widgets that can render an area in different
608  * positions, such as tabs in a #GtkNotebook.
609  */
610 #define GTK_STYLE_CLASS_TOP "top"
611
612 /**
613  * GTK_STYLE_CLASS_BOTTOM:
614  *
615  * A CSS class to indicate an area at the bottom of a widget.
616  *
617  * This is used by widgets that can render an area in different
618  * positions, such as tabs in a #GtkNotebook.
619  */
620 #define GTK_STYLE_CLASS_BOTTOM "bottom"
621
622 /**
623  * GTK_STYLE_CLASS_LEFT:
624  *
625  * A CSS class to indicate an area at the left of a widget.
626  *
627  * This is used by widgets that can render an area in different
628  * positions, such as tabs in a #GtkNotebook.
629  */
630 #define GTK_STYLE_CLASS_LEFT "left"
631
632 /**
633  * GTK_STYLE_CLASS_RIGHT:
634  *
635  * A CSS class to indicate an area at the right of a widget.
636  *
637  * This is used by widgets that can render an area in different
638  * positions, such as tabs in a #GtkNotebook.
639  */
640 #define GTK_STYLE_CLASS_RIGHT "right"
641
642 /* Predefined set of widget regions */
643
644 /**
645  * GTK_STYLE_REGION_ROW:
646  *
647  * A widget region name to define a treeview row.
648  */
649 #define GTK_STYLE_REGION_ROW "row"
650
651 /**
652  * GTK_STYLE_REGION_COLUMN:
653  *
654  * A widget region name to define a treeview column.
655  */
656 #define GTK_STYLE_REGION_COLUMN "column"
657
658 /**
659  * GTK_STYLE_REGION_COLUMN_HEADER:
660  *
661  * A widget region name to define a treeview column header.
662  */
663 #define GTK_STYLE_REGION_COLUMN_HEADER "column-header"
664
665 /**
666  * GTK_STYLE_REGION_TAB:
667  *
668  * A widget region name to define a notebook tab.
669  */
670 #define GTK_STYLE_REGION_TAB "tab"
671
672 /**
673  * GTK_STYLE_CLASS_PULSE:
674  *
675  * A CSS class to use when rendering a pulse in an indeterminate progress bar.
676  *
677  * This is used by #GtkProgressBar and #GtkEntry.
678  */
679 #define GTK_STYLE_CLASS_PULSE "pulse"
680
681
682 GType gtk_style_context_get_type (void) G_GNUC_CONST;
683
684 GtkStyleContext * gtk_style_context_new (void);
685
686 void gtk_style_context_add_provider_for_screen    (GdkScreen        *screen,
687                                                    GtkStyleProvider *provider,
688                                                    guint             priority);
689 void gtk_style_context_remove_provider_for_screen (GdkScreen        *screen,
690                                                    GtkStyleProvider *provider);
691
692 void gtk_style_context_add_provider    (GtkStyleContext  *context,
693                                         GtkStyleProvider *provider,
694                                         guint             priority);
695
696 void gtk_style_context_remove_provider (GtkStyleContext  *context,
697                                         GtkStyleProvider *provider);
698
699 void gtk_style_context_save    (GtkStyleContext *context);
700 void gtk_style_context_restore (GtkStyleContext *context);
701
702 void gtk_style_context_get_property (GtkStyleContext *context,
703                                      const gchar     *property,
704                                      GtkStateFlags    state,
705                                      GValue          *value);
706 void gtk_style_context_get_valist   (GtkStyleContext *context,
707                                      GtkStateFlags    state,
708                                      va_list          args);
709 void gtk_style_context_get          (GtkStyleContext *context,
710                                      GtkStateFlags    state,
711                                      ...) G_GNUC_NULL_TERMINATED;
712
713 void          gtk_style_context_set_state    (GtkStyleContext *context,
714                                               GtkStateFlags    flags);
715 GtkStateFlags gtk_style_context_get_state    (GtkStyleContext *context);
716
717 gboolean      gtk_style_context_state_is_running (GtkStyleContext *context,
718                                                   GtkStateType     state,
719                                                   gdouble         *progress);
720
721 void          gtk_style_context_set_path     (GtkStyleContext *context,
722                                               GtkWidgetPath   *path);
723 const GtkWidgetPath * gtk_style_context_get_path (GtkStyleContext *context);
724
725 GList *  gtk_style_context_list_classes (GtkStyleContext *context);
726
727 void     gtk_style_context_add_class    (GtkStyleContext *context,
728                                          const gchar     *class_name);
729 void     gtk_style_context_remove_class (GtkStyleContext *context,
730                                          const gchar     *class_name);
731 gboolean gtk_style_context_has_class    (GtkStyleContext *context,
732                                          const gchar     *class_name);
733
734 GList *  gtk_style_context_list_regions (GtkStyleContext *context);
735
736 void     gtk_style_context_add_region    (GtkStyleContext    *context,
737                                           const gchar        *region_name,
738                                           GtkRegionFlags      flags);
739 void     gtk_style_context_remove_region (GtkStyleContext    *context,
740                                           const gchar        *region_name);
741 gboolean gtk_style_context_has_region    (GtkStyleContext    *context,
742                                           const gchar        *region_name,
743                                           GtkRegionFlags     *flags_return);
744
745 void gtk_style_context_get_style_property (GtkStyleContext *context,
746                                            const gchar     *property_name,
747                                            GValue          *value);
748 void gtk_style_context_get_style_valist   (GtkStyleContext *context,
749                                            va_list          args);
750 void gtk_style_context_get_style          (GtkStyleContext *context,
751                                            ...);
752
753 GtkIconSet * gtk_style_context_lookup_icon_set (GtkStyleContext *context,
754                                                 const gchar     *stock_id);
755 GdkPixbuf  * gtk_icon_set_render_icon_pixbuf   (GtkIconSet      *icon_set,
756                                                 GtkStyleContext *context,
757                                                 GtkIconSize      size);
758
759 void        gtk_style_context_set_screen (GtkStyleContext *context,
760                                           GdkScreen       *screen);
761 GdkScreen * gtk_style_context_get_screen (GtkStyleContext *context);
762
763 void             gtk_style_context_set_direction (GtkStyleContext  *context,
764                                                   GtkTextDirection  direction);
765 GtkTextDirection gtk_style_context_get_direction (GtkStyleContext  *context);
766
767 void             gtk_style_context_set_junction_sides (GtkStyleContext  *context,
768                                                        GtkJunctionSides  sides);
769 GtkJunctionSides gtk_style_context_get_junction_sides (GtkStyleContext  *context);
770
771 gboolean gtk_style_context_lookup_color (GtkStyleContext *context,
772                                          const gchar     *color_name,
773                                          GdkRGBA         *color);
774
775 void  gtk_style_context_notify_state_change (GtkStyleContext *context,
776                                              GdkWindow       *window,
777                                              gpointer         region_id,
778                                              GtkStateType     state,
779                                              gboolean         state_value);
780 void  gtk_style_context_cancel_animations   (GtkStyleContext *context,
781                                              gpointer         region_id);
782 void  gtk_style_context_scroll_animations   (GtkStyleContext *context,
783                                              GdkWindow       *window,
784                                              gint             dx,
785                                              gint             dy);
786
787 void gtk_style_context_push_animatable_region (GtkStyleContext *context,
788                                                gpointer         region_id);
789 void gtk_style_context_pop_animatable_region  (GtkStyleContext *context);
790
791 /* Some helper functions to retrieve most common properties */
792 void gtk_style_context_get_color            (GtkStyleContext *context,
793                                              GtkStateFlags    state,
794                                              GdkRGBA         *color);
795 void gtk_style_context_get_background_color (GtkStyleContext *context,
796                                              GtkStateFlags    state,
797                                              GdkRGBA         *color);
798 void gtk_style_context_get_border_color     (GtkStyleContext *context,
799                                              GtkStateFlags    state,
800                                              GdkRGBA         *color);
801 const PangoFontDescription *
802      gtk_style_context_get_font             (GtkStyleContext *context,
803                                              GtkStateFlags    state);
804 void gtk_style_context_get_border           (GtkStyleContext *context,
805                                              GtkStateFlags    state,
806                                              GtkBorder       *border);
807 void gtk_style_context_get_padding          (GtkStyleContext *context,
808                                              GtkStateFlags    state,
809                                              GtkBorder       *padding);
810 void gtk_style_context_get_margin           (GtkStyleContext *context,
811                                              GtkStateFlags    state,
812                                              GtkBorder       *margin);
813
814 void gtk_style_context_invalidate           (GtkStyleContext *context);
815 void gtk_style_context_reset_widgets        (GdkScreen       *screen);
816
817 void gtk_style_context_set_background       (GtkStyleContext *context,
818                                              GdkWindow       *window);
819
820 /* Paint methods */
821 void        gtk_render_check       (GtkStyleContext     *context,
822                                     cairo_t             *cr,
823                                     gdouble              x,
824                                     gdouble              y,
825                                     gdouble              width,
826                                     gdouble              height);
827 void        gtk_render_option      (GtkStyleContext     *context,
828                                     cairo_t             *cr,
829                                     gdouble              x,
830                                     gdouble              y,
831                                     gdouble              width,
832                                     gdouble              height);
833 void        gtk_render_arrow       (GtkStyleContext     *context,
834                                     cairo_t             *cr,
835                                     gdouble              angle,
836                                     gdouble              x,
837                                     gdouble              y,
838                                     gdouble              size);
839 void        gtk_render_background  (GtkStyleContext     *context,
840                                     cairo_t             *cr,
841                                     gdouble              x,
842                                     gdouble              y,
843                                     gdouble              width,
844                                     gdouble              height);
845 void        gtk_render_frame       (GtkStyleContext     *context,
846                                     cairo_t             *cr,
847                                     gdouble              x,
848                                     gdouble              y,
849                                     gdouble              width,
850                                     gdouble              height);
851 void        gtk_render_expander    (GtkStyleContext     *context,
852                                     cairo_t             *cr,
853                                     gdouble              x,
854                                     gdouble              y,
855                                     gdouble              width,
856                                     gdouble              height);
857 void        gtk_render_focus       (GtkStyleContext     *context,
858                                     cairo_t             *cr,
859                                     gdouble              x,
860                                     gdouble              y,
861                                     gdouble              width,
862                                     gdouble              height);
863 void        gtk_render_layout      (GtkStyleContext     *context,
864                                     cairo_t             *cr,
865                                     gdouble              x,
866                                     gdouble              y,
867                                     PangoLayout         *layout);
868 void        gtk_render_line        (GtkStyleContext     *context,
869                                     cairo_t             *cr,
870                                     gdouble              x0,
871                                     gdouble              y0,
872                                     gdouble              x1,
873                                     gdouble              y1);
874 void        gtk_render_slider      (GtkStyleContext     *context,
875                                     cairo_t             *cr,
876                                     gdouble              x,
877                                     gdouble              y,
878                                     gdouble              width,
879                                     gdouble              height,
880                                     GtkOrientation       orientation);
881 void        gtk_render_frame_gap   (GtkStyleContext     *context,
882                                     cairo_t             *cr,
883                                     gdouble              x,
884                                     gdouble              y,
885                                     gdouble              width,
886                                     gdouble              height,
887                                     GtkPositionType      gap_side,
888                                     gdouble              xy0_gap,
889                                     gdouble              xy1_gap);
890 void        gtk_render_extension   (GtkStyleContext     *context,
891                                     cairo_t             *cr,
892                                     gdouble              x,
893                                     gdouble              y,
894                                     gdouble              width,
895                                     gdouble              height,
896                                     GtkPositionType      gap_side);
897 void        gtk_render_handle      (GtkStyleContext     *context,
898                                     cairo_t             *cr,
899                                     gdouble              x,
900                                     gdouble              y,
901                                     gdouble              width,
902                                     gdouble              height);
903 void        gtk_render_activity    (GtkStyleContext     *context,
904                                     cairo_t             *cr,
905                                     gdouble              x,
906                                     gdouble              y,
907                                     gdouble              width,
908                                     gdouble              height);
909 GdkPixbuf * gtk_render_icon_pixbuf (GtkStyleContext     *context,
910                                     const GtkIconSource *source,
911                                     GtkIconSize          size);
912 void        gtk_render_icon        (GtkStyleContext     *context,
913                                     cairo_t             *cr,
914                                     GdkPixbuf           *pixbuf,
915                                     gdouble              x,
916                                     gdouble              y);
917
918 void   gtk_draw_insertion_cursor    (GtkWidget          *widget,
919                                      cairo_t            *cr,
920                                      const GdkRectangle *location,
921                                      gboolean            is_primary,
922                                      GtkTextDirection    direction,
923                                      gboolean            draw_arrow);
924
925 /* Accessibility support */
926 AtkAttributeSet *_gtk_style_context_get_attributes (AtkAttributeSet *attributes,
927                                                     GtkStyleContext *context,
928                                                     GtkStateFlags    flags);
929
930 G_END_DECLS
931
932 #endif /* __GTK_STYLE_CONTEXT_H__ */