]> Pileus Git - ~andy/gtk/blob - gtk/gtkcssshorthandpropertyprivate.h
shorthand: Get rid of GParameter dance
[~andy/gtk] / gtk / gtkcssshorthandpropertyprivate.h
1 /*
2  * Copyright © 2011 Red Hat Inc.
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.1 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 Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  *
18  * Authors: Benjamin Otte <otte@gnome.org>
19  */
20
21 #ifndef __GTK_CSS_SHORTHAND_PROPERTY_PRIVATE_H__
22 #define __GTK_CSS_SHORTHAND_PROPERTY_PRIVATE_H__
23
24 #include <glib-object.h>
25
26 #include "gtk/gtkcssparserprivate.h"
27 #include "gtk/gtkcssstylepropertyprivate.h"
28 #include "gtk/gtkstylepropertyprivate.h"
29
30 G_BEGIN_DECLS
31
32 #define GTK_TYPE_CSS_SHORTHAND_PROPERTY           (_gtk_css_shorthand_property_get_type ())
33 #define GTK_CSS_SHORTHAND_PROPERTY(obj)           (G_TYPE_CHECK_INSTANCE_CAST (obj, GTK_TYPE_CSS_SHORTHAND_PROPERTY, GtkCssShorthandProperty))
34 #define GTK_CSS_SHORTHAND_PROPERTY_CLASS(cls)     (G_TYPE_CHECK_CLASS_CAST (cls, GTK_TYPE_CSS_SHORTHAND_PROPERTY, GtkCssShorthandPropertyClass))
35 #define GTK_IS_CSS_SHORTHAND_PROPERTY(obj)        (G_TYPE_CHECK_INSTANCE_TYPE (obj, GTK_TYPE_CSS_SHORTHAND_PROPERTY))
36 #define GTK_IS_CSS_SHORTHAND_PROPERTY_CLASS(obj)  (G_TYPE_CHECK_CLASS_TYPE (obj, GTK_TYPE_CSS_SHORTHAND_PROPERTY))
37 #define GTK_CSS_SHORTHAND_PROPERTY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CSS_SHORTHAND_PROPERTY, GtkCssShorthandPropertyClass))
38
39 typedef struct _GtkCssShorthandProperty           GtkCssShorthandProperty;
40 typedef struct _GtkCssShorthandPropertyClass      GtkCssShorthandPropertyClass;
41
42 typedef gboolean              (* GtkCssShorthandPropertyParseFunc)      (GtkCssShorthandProperty *shorthand,
43                                                                          GValue                  *values,
44                                                                          GtkCssParser            *parser,
45                                                                          GFile                   *base);
46 typedef void                  (* GtkCssShorthandPropertyAssignFunc)     (GtkCssShorthandProperty *shorthand,
47                                                                          GtkStyleProperties      *props,
48                                                                          GtkStateFlags            state,
49                                                                          const GValue            *value);
50 typedef void                  (* GtkCssShorthandPropertyQueryFunc)      (GtkCssShorthandProperty *shorthand,
51                                                                          GValue                  *value,
52                                                                          GtkStyleProperties      *props,
53                                                                          GtkStateFlags            state);
54
55 struct _GtkCssShorthandProperty
56 {
57   GtkStyleProperty parent;
58
59   GPtrArray *subproperties;
60
61   GtkCssShorthandPropertyParseFunc parse;
62   GtkCssShorthandPropertyAssignFunc assign;
63   GtkCssShorthandPropertyQueryFunc query;
64 };
65
66 struct _GtkCssShorthandPropertyClass
67 {
68   GtkStylePropertyClass parent_class;
69 };
70
71 void                    _gtk_css_shorthand_property_init_properties     (void);
72
73 GType                   _gtk_css_shorthand_property_get_type            (void) G_GNUC_CONST;
74
75 GtkCssStyleProperty *   _gtk_css_shorthand_property_get_subproperty     (GtkCssShorthandProperty *shorthand,
76                                                                          guint                    property);
77 guint                   _gtk_css_shorthand_property_get_n_subproperties (GtkCssShorthandProperty *shorthand);
78
79
80 G_END_DECLS
81
82 #endif /* __GTK_CSS_SHORTHAND_PROPERTY_PRIVATE_H__ */