lyx_mirror/src/mathed/math_funcliminset.C

46 lines
820 B
C++
Raw Normal View History

#include "math_funcliminset.h"
#include "math_mathmlstream.h"
#include "math_support.h"
MathFuncLimInset::MathFuncLimInset(string const & name)
: name_(name)
{}
MathInset * MathFuncLimInset::clone() const
{
return new MathFuncLimInset(*this);
}
bool MathFuncLimInset::isScriptable() const
{
return mi_.style == LM_ST_DISPLAY;
}
void MathFuncLimInset::write(MathWriteInfo & os) const
{
os << '\\' << name_.c_str() << ' ';
}
void MathFuncLimInset::writeNormal(NormalStream & os) const
{
os << "[funclim " << name_.c_str() << ']';
}
void MathFuncLimInset::metrics(MathMetricsInfo const & mi) const
{
mi_ = mi;
mathed_string_dim(LM_TC_TEXTRM, mi_, name_, ascent_, descent_, width_);
}
void MathFuncLimInset::draw(Painter & pain, int x, int y) const
{
drawStr(pain, LM_TC_TEXTRM, mi_, x, y, name_);
}