]> Pileus Git - ~andy/gtk/blob - gtk/gtkstylecontext.h
GtkStyleContext: Add gtk_style_context_[gs]et_path()
[~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 <gtk/gtkstyleprovider.h>
25 #include <gtk/gtkwidgetpath.h>
26
27 G_BEGIN_DECLS
28
29 #define GTK_TYPE_STYLE_CONTEXT         (gtk_style_context_get_type ())
30 #define GTK_STYLE_CONTEXT(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_STYLE_CONTEXT, GtkStyleContext))
31 #define GTK_STYLE_CONTEXT_CLASS(c)     (G_TYPE_CHECK_CLASS_CAST    ((c), GTK_TYPE_STYLE_CONTEXT, GtkStyleContextClass))
32 #define GTK_IS_STYLE_CONTEXT(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_STYLE_CONTEXT))
33 #define GTK_IS_STYLE_CONTEXT_CLASS(c)  (G_TYPE_CHECK_CLASS_TYPE    ((c), GTK_TYPE_STYLE_CONTEXT))
34 #define GTK_STYLE_CONTEXT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS  ((o), GTK_TYPE_STYLE_CONTEXT, GtkStyleContextClass))
35
36 typedef struct GtkStyleContext GtkStyleContext;
37 typedef struct GtkStyleContextClass GtkStyleContextClass;
38
39 struct GtkStyleContext
40 {
41   GObject parent_object;
42 };
43
44 struct GtkStyleContextClass
45 {
46   GObjectClass parent_class;
47 };
48
49 GType gtk_style_context_get_type (void) G_GNUC_CONST;
50
51 void gtk_style_context_add_provider    (GtkStyleContext  *context,
52                                         GtkStyleProvider *provider,
53                                         guint             priority);
54
55 void gtk_style_context_remove_provider (GtkStyleContext  *context,
56                                         GtkStyleProvider *provider);
57
58 void gtk_style_context_get_property (GtkStyleContext *context,
59                                      const gchar     *property,
60                                      GtkStateType     state,
61                                      GValue          *value);
62 void gtk_style_context_get_valist   (GtkStyleContext *context,
63                                      GtkStateType     state,
64                                      va_list          args);
65 void gtk_style_context_get          (GtkStyleContext *context,
66                                      GtkStateType     state,
67                                      ...) G_GNUC_NULL_TERMINATED;
68
69 void          gtk_style_context_set_state    (GtkStyleContext *context,
70                                               GtkStateFlags    flags);
71 GtkStateFlags gtk_style_context_get_state    (GtkStyleContext *context);
72
73 gboolean      gtk_style_context_is_state_set (GtkStyleContext *context,
74                                               GtkStateType     state);
75
76 void          gtk_style_context_set_path     (GtkStyleContext *context,
77                                               GtkWidgetPath   *path);
78 G_CONST_RETURN GtkWidgetPath * gtk_style_context_get_path (GtkStyleContext *context);
79
80
81 G_END_DECLS
82
83 #endif /* __GTK_STYLE_CONTEXT_H__ */