lyx_mirror/src/mathed/math_substackinset.C
André Pönitz fe87869cb7 fonts as insets
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4289 a592a061-630c-0410-9148-cb99ea01b6c8
2002-05-30 07:09:54 +00:00

56 lines
915 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 & mi) const
{
if (mi.base.style == LM_ST_DISPLAY) {
MathStyleChanger dummy(mi.base, LM_ST_TEXT);
MathGridInset::metrics(mi);
} else {
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 << ")";
}