1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/* Fo
* fo-region-body-private.h: Structures private to 'region-body' formatting object
*
* Copyright (C) 2001 Sun Microsystems
* Copyright (C) 2007 Menteith Consulting Ltd
*
* See COPYING for the status of this software.
*/
#ifndef __FO_REGION_BODY_PRIVATE_H__
#define __FO_REGION_BODY_PRIVATE_H__
#include <libfo/fo/fo-fo.h>
#include <libfo/fo/fo-fo-private.h>
#include <libfo/fo/fo-region-body.h>
G_BEGIN_DECLS
struct _FoRegionBody
{
FoFo parent_instance;
FoProperty *background_color;
FoProperty *background_image;
FoProperty *border_after_color;
FoProperty *border_after_style;
FoProperty *border_after_width;
FoProperty *border_before_color;
FoProperty *border_before_style;
FoProperty *border_before_width;
FoProperty *border_bottom_color;
FoProperty *border_bottom_style;
FoProperty *border_bottom_width;
FoProperty *border_end_color;
FoProperty *border_end_style;
FoProperty *border_end_width;
FoProperty *border_left_color;
FoProperty *border_left_style;
FoProperty *border_left_width;
FoProperty *border_right_color;
FoProperty *border_right_style;
FoProperty *border_right_width;
FoProperty *border_start_color;
FoProperty *border_start_style;
FoProperty *border_start_width;
FoProperty *border_top_color;
FoProperty *border_top_style;
FoProperty *border_top_width;
FoProperty *clip;
FoProperty *display_align;
FoProperty *end_indent;
FoProperty *margin_bottom;
FoProperty *margin_left;
FoProperty *margin_right;
FoProperty *margin_top;
FoProperty *overflow;
FoProperty *padding_after;
FoProperty *padding_before;
FoProperty *padding_bottom;
FoProperty *padding_end;
FoProperty *padding_left;
FoProperty *padding_right;
FoProperty *padding_start;
FoProperty *padding_top;
FoProperty *region_name;
FoProperty *space_after;
FoProperty *space_before;
FoProperty *start_indent;
FoProperty *writing_mode;
};
struct _FoRegionBodyClass
{
FoFoClass parent_class;
};
G_END_DECLS
#endif /* !__FO_REGION_BODY_PRIVATE_H__ */
|