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
|
/* Fo
* fo-table-caption-private.h: Structures private to 'table-caption' formatting object
*
* Copyright (C) 2001 Sun Microsystems
* Copyright (C) 2007 Menteith Consulting Ltd
*
* See COPYING for the status of this software.
*/
#ifndef __FO_TABLE_CAPTION_PRIVATE_H__
#define __FO_TABLE_CAPTION_PRIVATE_H__
#include <libfo/fo/fo-marker-parent-private.h>
#include <libfo/fo/fo-table-caption.h>
#include <libfo/property/fo-property.h>
G_BEGIN_DECLS
struct _FoTableCaption
{
FoMarkerParent parent_instance;
FoProperty *background_color;
FoProperty *background_image;
FoProperty *block_progression_dimension;
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 *height;
FoProperty *id;
FoProperty *inline_progression_dimension;
FoProperty *keep_together;
FoProperty *keep_together_within_column;
FoProperty *keep_together_within_line;
FoProperty *keep_together_within_page;
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 *role;
FoProperty *source_document;
FoProperty *width;
};
struct _FoTableCaptionClass
{
FoMarkerParentClass parent_class;
};
G_END_DECLS
#endif /* !__FO_TABLE_CAPTION_PRIVATE_H__ */
|