1 /* Fo
2  * fo-property-space-end-precedence.h: 'space-end-precedence' property
3  *
4  * Copyright (C) 2001 Sun Microsystems
5  * Copyright (C) 2007-2008 Menteith Consulting Ltd
6  *
7  * See COPYING for the status of this software.
8  */
9 
10 #ifndef __FO_PROPERTY_SPACE_END_PRECEDENCE_H__
11 #define __FO_PROPERTY_SPACE_END_PRECEDENCE_H__
12 
13 #include <libfo/fo-utils.h>
14 #include <libfo/property/fo-property.h>
15 
16 G_BEGIN_DECLS
17 
18 /* space-end-precedence */
19 /* Inherited: FALSE */
20 /* Shorthand: FALSE */
21 /* <space> | inherit */
22 /* Initial value: space.minimum=0pt, .optimum=0pt, .maximum=0pt, .conditionality=discard, .precedence=0 */
23 
24 #define FO_TYPE_PROPERTY_SPACE_END_PRECEDENCE              (fo_property_space_end_precedence_get_type ())
25 #define FO_PROPERTY_SPACE_END_PRECEDENCE(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), FO_TYPE_PROPERTY_SPACE_END_PRECEDENCE, FoPropertySpaceEndPrecedence))
26 #define FO_PROPERTY_SPACE_END_PRECEDENCE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), FO_TYPE_PROPERTY_SPACE_END_PRECEDENCE, FoPropertySpaceEndPrecedenceClass))
27 #define FO_IS_PROPERTY_SPACE_END_PRECEDENCE(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), FO_TYPE_PROPERTY_SPACE_END_PRECEDENCE))
28 #define FO_IS_PROPERTY_SPACE_END_PRECEDENCE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), FO_TYPE_PROPERTY_SPACE_END_PRECEDENCE))
29 #define FO_PROPERTY_SPACE_END_PRECEDENCE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), FO_TYPE_PROPERTY_SPACE_END_PRECEDENCE, FoPropertySpaceEndPrecedenceClass))
30 
31 
32 typedef struct _FoPropertySpaceEndPrecedence      FoPropertySpaceEndPrecedence;
33 typedef struct _FoPropertySpaceEndPrecedenceClass FoPropertySpaceEndPrecedenceClass;
34 
35 GType       fo_property_space_end_precedence_get_type    (void) G_GNUC_CONST;
36 FoProperty* fo_property_space_end_precedence_new         (void);
37 FoProperty* fo_property_space_end_precedence_get_initial (void);
38 
39 G_END_DECLS
40 
41 #endif /* !__FO_PROPERTY_SPACE_END_PRECEDENCE_H__ */
42