mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
a5ead24854
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7867 a592a061-630c-0410-9148-cb99ea01b6c8
61 lines
1.3 KiB
C++
61 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file math_gridinfo.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef MATH_GRIDINFO_H
|
|
#define MATH_GRIDINFO_H
|
|
|
|
#include <string>
|
|
|
|
|
|
struct ColInfo
|
|
{
|
|
ColInfo() : align('c'), rightline(0), leftline(false) {}
|
|
char align; // column alignment
|
|
std::string width; // column width
|
|
std::string special; // special column alignment
|
|
int rightline; // a line on the right?
|
|
bool leftline;
|
|
};
|
|
|
|
|
|
struct RowInfo
|
|
{
|
|
RowInfo() : topline(false), bottomline(false) {}
|
|
bool topline; // horizontal line above
|
|
int bottomline; // horizontal line below
|
|
};
|
|
|
|
|
|
struct CellInfo
|
|
{
|
|
CellInfo()
|
|
: multi(0), leftline(false), rightline(false),
|
|
topline(false), bottomline(false)
|
|
{}
|
|
|
|
std::string content; // cell content
|
|
int multi; // multicolumn flag
|
|
char align; // cell alignment
|
|
bool leftline; // do we have a line on the left?
|
|
bool rightline; // do we have a line on the right?
|
|
bool topline; // do we have a line above?
|
|
bool bottomline; // do we have a line below?
|
|
};
|
|
|
|
|
|
inline char const * verbose_align(char c)
|
|
{
|
|
return c == 'c' ? "center" : c == 'r' ? "right" : c == 'l' ? "left" : "none";
|
|
}
|
|
|
|
|
|
#endif
|