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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
# ifndef DOC_DRAW_H
# define DOC_DRAW_H
# include "docBuf.h"
# include "docLayout.h"
# include <appDraw.h>
/************************************************************************/
/* */
/* The different resources needed for drawing. */
/* */
/************************************************************************/
struct DrawingContext;
typedef void (*PARA_SIDES_PIXELS)( struct ParagraphFrame * pf,
const AppDrawingData * add,
const BufferItem * bi );
typedef int (*DRAW_TEXT_LINE)( const BufferItem * bi,
int line,
const struct ParagraphFrame * pf,
void * through,
struct DrawingContext * dc );
typedef int (*DRAW_PARA_TOP)( const BufferItem * bi,
const BorderProperties * bp,
const struct ParagraphFrame * pf,
void * through,
struct DrawingContext * dc );
typedef int (*DRAW_PARA_BOTTOM)( const BufferItem * bi,
const BorderProperties * bp,
const struct ParagraphFrame * pf,
void * through,
struct DrawingContext * dc );
typedef int (*DRAW_CELL_TOP)( const BorderProperties * bp,
int asGrid,
int x0Twips,
int x0Pixels,
int x1Twips,
int x1Pixels,
void * through,
struct DrawingContext * dc,
const LayoutPosition * lpTop );
typedef int (*DRAW_CELL_BOTTOM)( const BorderProperties * bp,
int asGrid,
int x0Twips,
int x0Pixels,
int x1Twips,
int x1Pixels,
void * through,
struct DrawingContext * dc,
const LayoutPosition * lpBottom );
typedef int (*DRAW_CELL_LEFT)( const BorderProperties * bp,
int asGrid,
void * through,
struct DrawingContext * dc,
int x0Twips,
int x0Pixels,
const LayoutPosition * lpTop,
const LayoutPosition * lpBelow );
typedef int (*DRAW_CELL_RIGHT)( const BorderProperties * bp,
int asGrid,
void * through,
struct DrawingContext * dc,
int x1Twips,
int x1Pixels,
const LayoutPosition * lpTop,
const LayoutPosition * lpBelow );
typedef int (*FINISH_PAGE)( void * through,
struct DrawingContext * dc,
int page,
int asLast );
typedef int (*START_PAGE)( void * through,
const DocumentGeometry * dg,
struct DrawingContext * dc,
int page );
typedef struct DrawingContext
{
int dcCurrentPhysicalFont;
AppDrawingData * dcDrawingData;
BufferDocument * dcDocument;
const DocumentRectangle * dcClipRect;
const DocumentSelection * dcDocumentSelection;
const SelectionGeometry * dcSelectionGeometry;
int dcFirstPage;
int dcLastPage;
int dcDrawHeadersFooters;
int dcDrawTableGrid;
DRAW_TEXT_LINE dcDrawTextLine;
DRAW_PARA_TOP dcDrawParaTop;
DRAW_PARA_BOTTOM dcDrawParaBottom;
DRAW_CELL_TOP dcDrawCellTop;
DRAW_CELL_BOTTOM dcDrawCellBottom;
DRAW_CELL_LEFT dcDrawCellLeft;
DRAW_CELL_RIGHT dcDrawCellRight;
FINISH_PAGE dcFinishPage;
START_PAGE dcStartPage;
PARA_SIDES_PIXELS dcParaFramePixels;
LAYOUT_EXTERNAL dcLayoutExternal;
DOC_CLOSE_OBJECT dcCloseObject;
} DrawingContext;
/************************************************************************/
/* */
/* Routine declarations. */
/* */
/************************************************************************/
extern void docInitDrawingContext( DrawingContext * dc );
extern int docDrawItem( BufferItem * bi,
void * through,
DrawingContext * dc );
extern int docDrawPageHeader( BufferItem * sectBi,
void * through,
DrawingContext * dc,
int page );
extern int docDrawPageFooter( BufferItem * sectBi,
void * through,
DrawingContext * dc,
int page );
extern int docDrawFootnotesForColumn(
int page,
void * through,
DrawingContext * dc );
extern int docDrawEndnotesForSection( int sect,
void * through,
DrawingContext * dc );
extern int docDrawEndnotesForDocument( void * through,
DrawingContext * dc );
extern int docDrawToPageOfItem( BufferItem * prevBodyBi,
BufferItem * thisBodyBi,
BufferItem * thisBi,
void * through,
LayoutPosition * lpHere,
DrawingContext * dc );
# endif
|