]> Pileus Git - ~andy/gtk/blob - gtk/gtkstylecontext.h
Revert "docs: Reinstate pixbufs section in GDK docs"
[~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_HEADER:
258  *
259  * A CSS class to match a header element.
260  */
261 #define GTK_STYLE_CLASS_HEADER "header"
262
263 /**
264  * GTK_STYLE_CLASS_ACCELERATOR:
265  *
266  * A CSS class to match an accelerator.
267  */
268 #define GTK_STYLE_CLASS_ACCELERATOR "accelerator"
269
270 /**
271  * GTK_STYLE_CLASS_GRIP:
272  *
273  * A widget class defining a resize grip
274  */
275 #define GTK_STYLE_CLASS_GRIP "grip"
276
277 /**
278  * GTK_STYLE_CLASS_DOCK:
279  *
280  * A widget class defining a dock area
281  */
282 #define GTK_STYLE_CLASS_DOCK "dock"
283
284 /**
285  * GTK_STYLE_CLASS_PROGRESSBAR:
286  *
287  * A widget class defining a resize grip
288  */
289 #define GTK_STYLE_CLASS_PROGRESSBAR "progressbar"
290
291 /**
292  * GTK_STYLE_CLASS_SPINNER:
293  *
294  * A widget class defining a spinner
295  */
296 #define GTK_STYLE_CLASS_SPINNER "spinner"
297
298 /* Predefined set of widget regions */
299
300 /**
301  * GTK_STYLE_REGION_ROW:
302  *
303  * A widget region name to define a treeview row.
304  */
305 #define GTK_STYLE_REGION_ROW "row"
306
307 /**
308  * GTK_STYLE_REGION_COLUMN:
309  *
310  * A widget region name to define a treeview column.
311  */
312 #define GTK_STYLE_REGION_COLUMN "column"
313
314 /**
315  * GTK_STYLE_REGION_COLUMN_HEADER:
316  *
317  * A widget region name to define a treeview column header.
318  */
319 #define GTK_STYLE_REGION_COLUMN_HEADER "column-header"
320
321 /**
322  * GTK_STYLE_REGION_TAB:
323  *
324  * A widget region name to define a notebook tab.
325  */
326 #define GTK_STYLE_REGION_TAB "tab"
327
328
329 GType gtk_style_context_get_type (void) G_GNUC_CONST;
330
331 GtkStyleContext * gtk_style_context_new (void);
332
333 void gtk_style_context_add_provider_for_screen    (GdkScreen        *screen,
334                                                    GtkStyleProvider *provider,
335                                                    guint             priority);
336 void gtk_style_context_remove_provider_for_screen (GdkScreen        *screen,
337                                                    GtkStyleProvider *provider);
338
339 void gtk_style_context_add_provider    (GtkStyleContext  *context,
340                                         GtkStyleProvider *provider,
341                                         guint             priority);
342
343 void gtk_style_context_remove_provider (GtkStyleContext  *context,
344                                         GtkStyleProvider *provider);
345
346 void gtk_style_context_save    (GtkStyleContext *context);
347 void gtk_style_context_restore (GtkStyleContext *context);
348
349 void gtk_style_context_get_property (GtkStyleContext *context,
350                                      const gchar     *property,
351                                      GtkStateFlags    state,
352                                      GValue          *value);
353 void gtk_style_context_get_valist   (GtkStyleContext *context,
354                                      GtkStateFlags    state,
355                                      va_list          args);
356 void gtk_style_context_get          (GtkStyleContext *context,
357                                      GtkStateFlags    state,
358                                      ...) G_GNUC_NULL_TERMINATED;
359
360 void          gtk_style_context_set_state    (GtkStyleContext *context,
361                                               GtkStateFlags    flags);
362 GtkStateFlags gtk_style_context_get_state    (GtkStyleContext *context);
363
364 gboolean      gtk_style_context_state_is_running (GtkStyleContext *context,
365                                                   GtkStateType     state,
366                                                   gdouble         *progress);
367
368 void          gtk_style_context_set_path     (GtkStyleContext *context,
369                                               GtkWidgetPath   *path);
370 G_CONST_RETURN GtkWidgetPath * gtk_style_context_get_path (GtkStyleContext *context);
371
372 GList *  gtk_style_context_list_classes (GtkStyleContext *context);
373
374 void     gtk_style_context_add_class    (GtkStyleContext *context,
375                                          const gchar     *class_name);
376 void     gtk_style_context_remove_class (GtkStyleContext *context,
377                                          const gchar     *class_name);
378 gboolean gtk_style_context_has_class    (GtkStyleContext *context,
379                                          const gchar     *class_name);
380
381 GList *  gtk_style_context_list_regions (GtkStyleContext *context);
382
383 void     gtk_style_context_add_region    (GtkStyleContext    *context,
384                                           const gchar        *region_name,
385                                           GtkRegionFlags      flags);
386 void     gtk_style_context_remove_region (GtkStyleContext    *context,
387                                           const gchar        *region_name);
388 gboolean gtk_style_context_has_region    (GtkStyleContext    *context,
389                                           const gchar        *region_name,
390                                           GtkRegionFlags     *flags_return);
391
392 void gtk_style_context_get_style_property (GtkStyleContext *context,
393                                            const gchar     *property_name,
394                                            GValue          *value);
395 void gtk_style_context_get_style_valist   (GtkStyleContext *context,
396                                            va_list          args);
397 void gtk_style_context_get_style          (GtkStyleContext *context,
398                                            ...);
399
400 GtkIconSet * gtk_style_context_lookup_icon_set (GtkStyleContext *context,
401                                                 const gchar     *stock_id);
402 GdkPixbuf  * gtk_icon_set_render_icon_pixbuf   (GtkIconSet      *icon_set,
403                                                 GtkStyleContext *context,
404                                                 GtkIconSize      size);
405
406 void        gtk_style_context_set_screen (GtkStyleContext *context,
407                                           GdkScreen       *screen);
408 GdkScreen * gtk_style_context_get_screen (GtkStyleContext *context);
409
410 void             gtk_style_context_set_direction (GtkStyleContext  *context,
411                                                   GtkTextDirection  direction);
412 GtkTextDirection gtk_style_context_get_direction (GtkStyleContext  *context);
413
414 void             gtk_style_context_set_junction_sides (GtkStyleContext  *context,
415                                                        GtkJunctionSides  sides);
416 GtkJunctionSides gtk_style_context_get_junction_sides (GtkStyleContext  *context);
417
418 gboolean gtk_style_context_lookup_color (GtkStyleContext *context,
419                                          const gchar     *color_name,
420                                          GdkRGBA         *color);
421
422 void  gtk_style_context_notify_state_change (GtkStyleContext *context,
423                                              GdkWindow       *window,
424                                              gpointer         region_id,
425                                              GtkStateType     state,
426                                              gboolean         state_value);
427 void gtk_style_context_push_animatable_region (GtkStyleContext *context,
428                                                gpointer         region_id);
429 void gtk_style_context_pop_animatable_region  (GtkStyleContext *context);
430
431 /* Some helper functions to retrieve most common properties */
432 void gtk_style_context_get_color            (GtkStyleContext *context,
433                                              GtkStateFlags    state,
434                                              GdkRGBA         *color);
435 void gtk_style_context_get_background_color (GtkStyleContext *context,
436                                              GtkStateFlags    state,
437                                              GdkRGBA         *color);
438 void gtk_style_context_get_border_color     (GtkStyleContext *context,
439                                              GtkStateFlags    state,
440                                              GdkRGBA         *color);
441
442 void gtk_style_context_get_border           (GtkStyleContext *context,
443                                              GtkStateFlags    state,
444                                              GtkBorder       *border);
445 void gtk_style_context_get_padding          (GtkStyleContext *context,
446                                              GtkStateFlags    state,
447                                              GtkBorder       *padding);
448 void gtk_style_context_get_margin           (GtkStyleContext *context,
449                                              GtkStateFlags    state,
450                                              GtkBorder       *margin);
451
452 /* Semi-private API */
453 const GValue * _gtk_style_context_peek_style_property (GtkStyleContext *context,
454                                                        GType            widget_type,
455                                                        GtkStateFlags    state,
456                                                        GParamSpec      *pspec);
457 void           _gtk_style_context_invalidate_animation_areas (GtkStyleContext *context);
458 void           _gtk_style_context_coalesce_animation_areas   (GtkStyleContext *context,
459                                                               gint             rel_x,
460                                                               gint             rel_y);
461
462 void gtk_style_context_invalidate (GtkStyleContext *context);
463 void gtk_style_context_reset_widgets (GdkScreen *screen);
464
465 void gtk_style_context_set_background (GtkStyleContext *context,
466                                        GdkWindow       *window);
467
468 /* Paint methods */
469 void gtk_render_check (GtkStyleContext *context,
470                        cairo_t         *cr,
471                        gdouble          x,
472                        gdouble          y,
473                        gdouble          width,
474                        gdouble          height);
475 void gtk_render_option (GtkStyleContext *context,
476                         cairo_t         *cr,
477                         gdouble          x,
478                         gdouble          y,
479                         gdouble          width,
480                         gdouble          height);
481 void gtk_render_arrow  (GtkStyleContext *context,
482                         cairo_t         *cr,
483                         gdouble          angle,
484                         gdouble          x,
485                         gdouble          y,
486                         gdouble          size);
487 void gtk_render_background (GtkStyleContext *context,
488                             cairo_t         *cr,
489                             gdouble          x,
490                             gdouble          y,
491                             gdouble          width,
492                             gdouble          height);
493 void gtk_render_frame  (GtkStyleContext *context,
494                         cairo_t         *cr,
495                         gdouble          x,
496                         gdouble          y,
497                         gdouble          width,
498                         gdouble          height);
499 void gtk_render_expander (GtkStyleContext *context,
500                           cairo_t         *cr,
501                           gdouble          x,
502                           gdouble          y,
503                           gdouble          width,
504                           gdouble          height);
505 void gtk_render_focus    (GtkStyleContext *context,
506                           cairo_t         *cr,
507                           gdouble          x,
508                           gdouble          y,
509                           gdouble          width,
510                           gdouble          height);
511 void gtk_render_layout   (GtkStyleContext *context,
512                           cairo_t         *cr,
513                           gdouble          x,
514                           gdouble          y,
515                           PangoLayout     *layout);
516 void gtk_render_line     (GtkStyleContext *context,
517                           cairo_t         *cr,
518                           gdouble          x0,
519                           gdouble          y0,
520                           gdouble          x1,
521                           gdouble          y1);
522 void gtk_render_slider   (GtkStyleContext *context,
523                           cairo_t         *cr,
524                           gdouble          x,
525                           gdouble          y,
526                           gdouble          width,
527                           gdouble          height,
528                           GtkOrientation   orientation);
529 void gtk_render_frame_gap (GtkStyleContext *context,
530                            cairo_t         *cr,
531                            gdouble          x,
532                            gdouble          y,
533                            gdouble          width,
534                            gdouble          height,
535                            GtkPositionType  gap_side,
536                            gdouble          xy0_gap,
537                            gdouble          xy1_gap);
538 void gtk_render_extension (GtkStyleContext *context,
539                            cairo_t         *cr,
540                            gdouble          x,
541                            gdouble          y,
542                            gdouble          width,
543                            gdouble          height,
544                            GtkPositionType  gap_side);
545 void gtk_render_handle    (GtkStyleContext *context,
546                            cairo_t         *cr,
547                            gdouble          x,
548                            gdouble          y,
549                            gdouble          width,
550                            gdouble          height);
551 void gtk_render_activity  (GtkStyleContext *context,
552                            cairo_t         *cr,
553                            gdouble          x,
554                            gdouble          y,
555                            gdouble          width,
556                            gdouble          height);
557
558 GdkPixbuf * gtk_render_icon_pixbuf (GtkStyleContext     *context,
559                                     const GtkIconSource *source,
560                                     GtkIconSize          size);
561
562 G_END_DECLS
563
564 #endif /* __GTK_STYLE_CONTEXT_H__ */