mtollari 4db94043cb Patch level : 12.0 no-patch
Files correlati     : 
Commento            : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione

git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
2017-10-26 09:11:15 +00:00

37 lines
1.1 KiB
C

/////////////////////////////////////////////////////////////////////////////
// Name: table.h
// Purpose: Table utilities
// Author: Julian Smart
// Modified by:
// Created: 7.9.93
// RCS-ID: $Id: table.h 27631 2004-06-04 17:58:56Z ABX $
// 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(wxChar *value);