]> Pileus Git - ~andy/gtk/blob - gtk/gtkstylepropertyprivate.h
stylecontext: Do invalidation on first resize container
[~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 #include "gtkcssvalueprivate.h"
24
25 G_BEGIN_DECLS
26
27 #define GTK_TYPE_STYLE_PROPERTY           (_gtk_style_property_get_type ())
28 #define GTK_STYLE_PROPERTY(obj)           (G_TYPE_CHECK_INSTANCE_CAST (obj, GTK_TYPE_STYLE_PROPERTY, GtkStyleProperty))
29 #define GTK_STYLE_PROPERTY_CLASS(cls)     (G_TYPE_CHECK_CLASS_CAST (cls, GTK_TYPE_STYLE_PROPERTY, GtkStylePropertyClass))
30 #define GTK_IS_STYLE_PROPERTY(obj)        (G_TYPE_CHECK_INSTANCE_TYPE (obj, GTK_TYPE_STYLE_PROPERTY))
31 #define GTK_IS_STYLE_PROPERTY_CLASS(obj)  (G_TYPE_CHECK_CLASS_TYPE (obj, GTK_TYPE_STYLE_PROPERTY))
32 #define GTK_STYLE_PROPERTY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_STYLE_PROPERTY, GtkStylePropertyClass))
33
34 typedef struct _GtkStyleProperty           GtkStyleProperty;
35 typedef struct _GtkStylePropertyClass      GtkStylePropertyClass;
36
37 typedef GtkCssValue *   (* GtkStyleQueryFunc)        (guint                   id,
38                                                       gpointer                data);
39
40 struct _GtkStyleProperty
41 {
42   GObject parent;
43
44   char *name;
45   GType value_type;
46 };
47
48 struct _GtkStylePropertyClass
49 {
50   GObjectClass  parent_class;
51   
52   void              (* assign)                             (GtkStyleProperty       *property,
53                                                             GtkStyleProperties     *props,
54                                                             GtkStateFlags           state,
55                                                             const GValue           *value);
56   void              (* query)                              (GtkStyleProperty       *property,
57                                                             GValue                 *value,
58                                                             GtkStyleQueryFunc       query_func,
59                                                             gpointer                query_data);
60   GtkCssValue *     (* parse_value)                        (GtkStyleProperty *      property,
61                                                             GtkCssParser           *parser);
62
63   GHashTable   *properties;
64 };
65
66 GType               _gtk_style_property_get_type             (void) G_GNUC_CONST;
67
68 void                _gtk_style_property_init_properties      (void);
69
70 GtkStyleProperty *       _gtk_style_property_lookup        (const char             *name);
71
72 const char *             _gtk_style_property_get_name      (GtkStyleProperty       *property);
73
74 GtkCssValue *            _gtk_style_property_parse_value   (GtkStyleProperty *      property,
75                                                             GtkCssParser           *parser);
76
77 GType                    _gtk_style_property_get_value_type(GtkStyleProperty *      property);
78 void                     _gtk_style_property_query         (GtkStyleProperty *      property,
79                                                             GValue                 *value,
80                                                             GtkStyleQueryFunc       query_func,
81                                                             gpointer                query_data);
82 void                     _gtk_style_property_assign        (GtkStyleProperty       *property,
83                                                             GtkStyleProperties     *props,
84                                                             GtkStateFlags           state,
85                                                             const GValue           *value);
86
87 G_END_DECLS
88
89 #endif /* __GTK_CSS_STYLEPROPERTY_PRIVATE_H__ */