]> Pileus Git - ~andy/gtk/blob - gtk/gtkstylecontext.h
GtkStyleContext: Add methods to query composed style.
[~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 #ifndef __GTK_STYLE_CONTEXT_H__
21 #define __GTK_STYLE_CONTEXT_H__
22
23 #include <glib-object.h>
24 #include "gtkstyleprovider.h"
25
26 G_BEGIN_DECLS
27
28 #define GTK_TYPE_STYLE_CONTEXT         (gtk_style_context_get_type ())
29 #define GTK_STYLE_CONTEXT(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_STYLE_CONTEXT, GtkStyleContext))
30 #define GTK_STYLE_CONTEXT_CLASS(c)     (G_TYPE_CHECK_CLASS_CAST    ((c), GTK_TYPE_STYLE_CONTEXT, GtkStyleContextClass))
31 #define GTK_IS_STYLE_CONTEXT(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_STYLE_CONTEXT))
32 #define GTK_IS_STYLE_CONTEXT_CLASS(c)  (G_TYPE_CHECK_CLASS_TYPE    ((c), GTK_TYPE_STYLE_CONTEXT))
33 #define GTK_STYLE_CONTEXT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS  ((o), GTK_TYPE_STYLE_CONTEXT, GtkStyleContextClass))
34
35 typedef struct GtkStyleContext GtkStyleContext;
36 typedef struct GtkStyleContextClass GtkStyleContextClass;
37
38 struct GtkStyleContext
39 {
40   GObject parent_object;
41 };
42
43 struct GtkStyleContextClass
44 {
45   GObjectClass parent_class;
46 };
47
48 GType gtk_style_context_get_type (void) G_GNUC_CONST;
49
50 void gtk_style_context_add_provider    (GtkStyleContext  *context,
51                                         GtkStyleProvider *provider,
52                                         guint             priority);
53
54 void gtk_style_context_remove_provider (GtkStyleContext  *context,
55                                         GtkStyleProvider *provider);
56
57 void gtk_style_context_get_property (GtkStyleContext *context,
58                                      const gchar     *property,
59                                      GtkStateType     state,
60                                      GValue          *value);
61 void gtk_style_context_get_valist   (GtkStyleContext *context,
62                                      GtkStateType     state,
63                                      va_list          args);
64 void gtk_style_context_get          (GtkStyleContext *context,
65                                      GtkStateType     state,
66                                      ...) G_GNUC_NULL_TERMINATED;
67
68 G_END_DECLS
69
70 #endif /* __GTK_STYLE_CONTEXT_H__ */