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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/************************************************************************/
/* */
/* Positioned Objects and Frames */
/* */
/************************************************************************/
# ifndef DOC_FRAME_PROPERTIES_H
# define DOC_FRAME_PROPERTIES_H
typedef enum HorizontalFrameReference
{
HFRphCOL= 0,
HFRphPG,
HFRphMRG,
HFRph_COUNT
} HorizontalFrameReference;
typedef enum VerticalFrameReference
{
VFRpvMRG= 0,
VFRpvPG,
VFRpvPARA,
VFRpv_COUNT
} VerticalFrameReference;
typedef enum HorizontalFrameAlignment
{
HFAposXL= 0,
HFAposXR,
HFAposXC,
HFAposXI,
HFAposXO,
HFApos_COUNT
} HorizontalFrameAlignment;
typedef enum VerticalFrameAlignment
{
VFAposYIL= 0,
VFAposYT,
VFAposYC,
VFAposYB,
VFApos_COUNT
} VerticalFrameAlignment;
typedef enum FrameWrapStyle
{
FWSwrapWRAP= 0,
FWSwrapNOWRAP,
FWSwrapOVERLAY,
FWSwrap_COUNT
} FrameWrapStyle;
typedef struct TextFrameProperties
{
int tfpFrameWidthTwips;
int tfpFrameHeightTwips;
int tfpFrameXTwips;
int tfpFrameYTwips;
int tfpDistanceFromTextTwips;
int tfpHorDistanceFromTextTwips;
int tfpVerDistanceFromTextTwips;
unsigned int tfpHorizontalFrameReference:2;
unsigned int tfpHorizontalFrameAlignment:3;
unsigned int tfpVerticalFrameReference:2;
unsigned int tfpVerticalFrameAlignment:3;
unsigned int tfpFrameLockedToParagraph:1;
unsigned int tfpFrameWrapStyle:2;
} TextFrameProperties;
/************************************************************************/
/* */
/* Property numbers and masks. */
/* */
/************************************************************************/
typedef enum TextFrameProperty
{
TFPprop_NONE= -1,
TFPpropABSW= 0,
TFPpropABSH,
TFPpropHORIZONTAL_REFERENCE,
TFPpropHORIZONTAL_POSITION,
TFPpropHORIZONTAL_ALIGNMENT,
TFPpropVERTICAL_REFERENCE,
TFPpropVERTICAL_POSITION,
TFPpropVERTICAL_ALIGNMENT,
TFPpropLOCKED_TO_PARA,
TFPpropWRAP_STYLE,
TFPpropDXFRTEXT,
TFPpropDFRMTXTX,
TFPpropDFRMTXTY,
TFPprop_COUNT
} TextFrameProperty;
/************************************************************************/
/* */
/* Routine declarations. */
/* */
/************************************************************************/
extern void docInitTextFrameProperties( TextFrameProperties * tfp );
# endif /* DOC_FRAME_PROPERTIES_H */
|