mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
53274e31ec
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5725 a592a061-630c-0410-9148-cb99ea01b6c8
66 lines
990 B
C
66 lines
990 B
C
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "math_xymatrixinset.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "math_streamstr.h"
|
|
|
|
|
|
MathXYMatrixInset::MathXYMatrixInset()
|
|
: MathGridInset(1, 1)
|
|
{}
|
|
|
|
|
|
MathInset * MathXYMatrixInset::clone() const
|
|
{
|
|
return new MathXYMatrixInset(*this);
|
|
}
|
|
|
|
|
|
int MathXYMatrixInset::colsep() const
|
|
{
|
|
return 40;
|
|
}
|
|
|
|
|
|
int MathXYMatrixInset::rowsep() const
|
|
{
|
|
return 40;
|
|
}
|
|
|
|
|
|
void MathXYMatrixInset::metrics(MathMetricsInfo & st) const
|
|
{
|
|
MathMetricsInfo mi = st;
|
|
if (mi.base.style == LM_ST_DISPLAY)
|
|
mi.base.style = LM_ST_TEXT;
|
|
MathGridInset::metrics(mi);
|
|
}
|
|
|
|
|
|
void MathXYMatrixInset::write(WriteStream & os) const
|
|
{
|
|
os << "\\xymatrix{";
|
|
MathGridInset::write(os);
|
|
os << "}\n";
|
|
}
|
|
|
|
|
|
void MathXYMatrixInset::normalize(NormalStream & os) const
|
|
{
|
|
os << "[xymatrix ";
|
|
MathGridInset::normalize(os);
|
|
os << ']';
|
|
}
|
|
|
|
|
|
void MathXYMatrixInset::maplize(MapleStream & os) const
|
|
{
|
|
os << "xymatrix(";
|
|
MathGridInset::maplize(os);
|
|
os << ')';
|
|
}
|