mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
4665fc9c30
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2232 a592a061-630c-0410-9148-cb99ea01b6c8
69 lines
1.1 KiB
C
69 lines
1.1 KiB
C
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "math_sizeinset.h"
|
|
#include "support/LOstream.h"
|
|
|
|
|
|
MathSizeInset::MathSizeInset(MathStyles st)
|
|
: MathInset(1), style_(st)
|
|
{
|
|
name_ = verbose();
|
|
}
|
|
|
|
|
|
char const * MathSizeInset::verbose() 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)
|
|
{
|
|
xo(x);
|
|
yo(y);
|
|
xcell(0).draw(pain, x, y);
|
|
}
|
|
|
|
|
|
void MathSizeInset::Metrics(MathStyles /* st */, int, int)
|
|
{
|
|
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 << "]";
|
|
}
|