lyx_mirror/src/mathed/math_substackinset.C
André Pönitz 5e6481b76e support for \substack
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3540 a592a061-630c-0410-9148-cb99ea01b6c8
2002-02-14 14:52:23 +00:00

54 lines
874 B
C

#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "math_substackinset.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
MathSubstackInset::MathSubstackInset()
: MathGridInset(1, 1)
{}
MathInset * MathSubstackInset::clone() const
{
return new MathSubstackInset(*this);
}
void MathSubstackInset::metrics(MathMetricsInfo const & st) const
{
MathMetricsInfo mi = st;
if (mi.style == LM_ST_DISPLAY)
mi.style = LM_ST_TEXT;
MathGridInset::metrics(mi);
}
void MathSubstackInset::write(WriteStream & os) const
{
os << "\\substack{";
MathGridInset::write(os);
os << "}\n";
}
void MathSubstackInset::normalize(NormalStream & os) const
{
os << "[substack ";
MathGridInset::normalize(os);
os << "]";
}
void MathSubstackInset::maplize(MapleStream & os) const
{
os << "substack(";
MathGridInset::maplize(os);
os << ")";
}