]>
git.saurik.com Git - wxWidgets.git/blob - utils/tex2rtf/src/table.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Table utilities
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
19 char justification
; // l, r, c
20 int width
; // -1 or a width in twips
21 int spacing
; // Space between columns in twips
24 bool absWidth
; // If FALSE (the default), don't use an absolute width if you can help it.
27 extern ColumnData TableData
[];
28 extern bool inTabular
;
29 extern bool startRows
;
30 extern bool tableVerticalLineLeft
;
31 extern bool tableVerticalLineRight
;
32 extern int noColumns
; // Current number of columns in table
34 extern int ruleBottom
;
35 extern int currentRowNumber
;
36 extern bool ParseTableArgument(char *value
);