]> Pileus Git - ~andy/gtk/blob - gtk/gtkstylepropertyprivate.h
Change FSF Address
[~andy/gtk] / gtk / gtkstylepropertyprivate.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, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef __GTK_STYLEPROPERTY_PRIVATE_H__
19 #define __GTK_STYLEPROPERTY_PRIVATE_H__
20
21 #include "gtkcssparserprivate.h"
22 #include "gtkstylecontextprivate.h"
23
24 G_BEGIN_DECLS
25
26 #define GTK_TYPE_STYLE_PROPERTY           (_gtk_style_property_get_type ())
27 #define GTK_STYLE_PROPERTY(obj)           (G_TYPE_CHECK_INSTANCE_CAST (obj, GTK_TYPE_STYLE_PROPERTY, GtkStyleProperty))
28 #define GTK_STYLE_PROPERTY_CLASS(cls)     (G_TYPE_CHECK_CLASS_CAST (cls, GTK_TYPE_STYLE_PROPERTY, GtkStylePropertyClass))
29 #define GTK_IS_STYLE_PROPERTY(obj)        (G_TYPE_CHECK_INSTANCE_TYPE (obj, GTK_TYPE_STYLE_PROPERTY))
30 #define GTK_IS_STYLE_PROPERTY_CLASS(obj)  (G_TYPE_CHECK_CLASS_TYPE (obj, GTK_TYPE_STYLE_PROPERTY))
31 #define GTK_STYLE_PROPERTY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_STYLE_PROPERTY, GtkStylePropertyClass))
32
33 typedef struct _GtkStyleProperty           GtkStyleProperty;
34 typedef struct _GtkStylePropertyClass      GtkStylePropertyClass;
35
36 typedef enum {
37   GTK_STYLE_PROPERTY_INHERIT = (1 << 0)
38 } GtkStylePropertyFlags;
39
40 typedef const GValue *   (* GtkStyleQueryFunc)             (guint                   id,
41                                                             gpointer                data);
42
43 struct _GtkStyleProperty
44 {
45   GObject parent;
46
47   char *name;
48   GType value_type;
49 };
50
51 struct _GtkStylePropertyClass
52 {
53   GObjectClass  parent_class;
54   
55   void              (* assign)                             (GtkStyleProperty       *property,
56                                                             GtkStyleProperties     *props,
57                                                             GtkStateFlags           state,
58                                                             const GValue           *value);
59   void              (* query)                              (GtkStyleProperty       *property,
60                                                             GValue                 *value,
61                                                             GtkStyleQueryFunc       query_func,
62                                                             gpointer                query_data);
63   gboolean          (* parse_value)                        (GtkStyleProperty *      property,
64                                                             GValue                 *value,
65                                                             GtkCssParser           *parser,
66                                                             GFile                  *base);
67
68   GHashTable   *properties;
69 };
70
71 GType               _gtk_style_property_get_type             (void) G_GNUC_CONST;
72
73 void                _gtk_style_property_init_properties      (void);
74
75 GtkStyleProperty *       _gtk_style_property_lookup        (const char             *name);
76
77 const char *             _gtk_style_property_get_name      (GtkStyleProperty       *property);
78
79 gboolean                 _gtk_style_property_parse_value   (GtkStyleProperty *      property,
80                                                             GValue                 *value,
81                                                             GtkCssParser           *parser,
82                                                             GFile                  *base);
83
84 GType                    _gtk_style_property_get_value_type(GtkStyleProperty *      property);
85 void                     _gtk_style_property_query         (GtkStyleProperty *      property,
86                                                             GValue                 *value,
87                                                             GtkStyleQueryFunc       query_func,
88                                                             gpointer                query_data);
89 void                     _gtk_style_property_assign        (GtkStyleProperty       *property,
90                                                             GtkStyleProperties     *props,
91                                                             GtkStateFlags           state,
92                                                             const GValue           *value);
93
94 G_END_DECLS
95
96 #endif /* __GTK_CSS_STYLEPROPERTY_PRIVATE_H__ */