1 /* Fo
2  * fo-property-margin-bottom.h: 'margin-bottom' 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_MARGIN_BOTTOM_H__
11 #define __FO_PROPERTY_MARGIN_BOTTOM_H__
12 
13 #include <libfo/fo-utils.h>
14 #include <libfo/property/fo-property.h>
15 
16 G_BEGIN_DECLS
17 
18 /* margin-bottom */
19 /* <margin-width> | inherit */
20 /* Initial value: 0pt */
21 
22 #define FO_TYPE_PROPERTY_MARGIN_BOTTOM              (fo_property_margin_bottom_get_type ())
23 #define FO_PROPERTY_MARGIN_BOTTOM(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), FO_TYPE_PROPERTY_MARGIN_BOTTOM, FoPropertyMarginBottom))
24 #define FO_PROPERTY_MARGIN_BOTTOM_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), FO_TYPE_PROPERTY_MARGIN_BOTTOM, FoPropertyMarginBottomClass))
25 #define FO_IS_PROPERTY_MARGIN_BOTTOM(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), FO_TYPE_PROPERTY_MARGIN_BOTTOM))
26 #define FO_IS_PROPERTY_MARGIN_BOTTOM_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), FO_TYPE_PROPERTY_MARGIN_BOTTOM))
27 #define FO_PROPERTY_MARGIN_BOTTOM_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), FO_TYPE_PROPERTY_MARGIN_BOTTOM, FoPropertyMarginBottomClass))
28 
29 
30 typedef struct _FoPropertyMarginBottom      FoPropertyMarginBottom;
31 typedef struct _FoPropertyMarginBottomClass FoPropertyMarginBottomClass;
32 
33 GType       fo_property_margin_bottom_get_type    (void) G_GNUC_CONST;
34 FoProperty* fo_property_margin_bottom_new         (void);
35 FoProperty* fo_property_margin_bottom_get_initial (void);
36 
37 G_END_DECLS
38 
39 #endif /* !__FO_PROPERTY_MARGIN_BOTTOM_H__ */
40