mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
5e6481b76e
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3540 a592a061-630c-0410-9148-cb99ea01b6c8
54 lines
874 B
C
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 << ")";
|
|
}
|