Corrected memory.cpp checkpoint bug; added Tex2RTF
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1306 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
36
utils/tex2rtf/src/table.h
Normal file
36
utils/tex2rtf/src/table.h
Normal file
@@ -0,0 +1,36 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: table.h
|
||||
// Purpose: Table utilities
|
||||
// Author: Julian Smart
|
||||
// Modified by:
|
||||
// Created: 7.9.93
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) Julian Smart
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/*
|
||||
* Table dimensions
|
||||
*
|
||||
*/
|
||||
|
||||
struct ColumnData
|
||||
{
|
||||
char justification; // l, r, c
|
||||
int width; // -1 or a width in twips
|
||||
int spacing; // Space between columns in twips
|
||||
bool leftBorder;
|
||||
bool rightBorder;
|
||||
bool absWidth; // If FALSE (the default), don't use an absolute width if you can help it.
|
||||
};
|
||||
|
||||
extern ColumnData TableData[];
|
||||
extern bool inTabular;
|
||||
extern bool startRows;
|
||||
extern bool tableVerticalLineLeft;
|
||||
extern bool tableVerticalLineRight;
|
||||
extern int noColumns; // Current number of columns in table
|
||||
extern int ruleTop;
|
||||
extern int ruleBottom;
|
||||
extern int currentRowNumber;
|
||||
extern bool ParseTableArgument(char *value);
|
Reference in New Issue
Block a user