lyx_mirror/src/mathed/math_sizeinset.C
André Pönitz cbf29c8fdc new hierarchy for frac-like things
'native' \stackrel support
remove MathInset::name_ member (sizeof(MathInset) == 20 on IA32 now);


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2457 a592a061-630c-0410-9148-cb99ea01b6c8
2001-08-08 17:26:30 +00:00

67 lines
1.1 KiB
C

#ifdef __GNUG__
#pragma implementation
#endif
#include "math_sizeinset.h"
#include "support/LOstream.h"
MathSizeInset::MathSizeInset(MathStyles st)
: MathNestInset(1), style_(st)
{}
char const * MathSizeInset::name() const
{
switch (style_) {
case LM_ST_DISPLAY:
return "displaystyle";
case LM_ST_TEXT:
return "textstyle";
case LM_ST_SCRIPT:
return "scriptstyle";
case LM_ST_SCRIPTSCRIPT:
return "scriptscriptstyle";
}
return "unknownstyle";
}
MathInset * MathSizeInset::clone() const
{
return new MathSizeInset(*this);
}
void MathSizeInset::draw(Painter & pain, int x, int y) const
{
xo(x);
yo(y);
xcell(0).draw(pain, x, y);
}
void MathSizeInset::metrics(MathStyles /* st */) const
{
xcell(0).metrics(style_);
ascent_ = xcell(0).ascent_;
descent_ = xcell(0).descent_;
width_ = xcell(0).width_;
}
void MathSizeInset::write(std::ostream & os, bool fragile) const
{
os << "{\\" << name() << " ";
cell(0).write(os, fragile);
os << "}";
}
void MathSizeInset::writeNormal(std::ostream & os) const
{
os << "[" << name() << " ";
cell(0).writeNormal(os);
os << "]";
}