lyx_mirror/src/mathed/math_funcliminset.C

52 lines
888 B
C++
Raw Normal View History

#include "math_funcliminset.h"
#include "mathed/math_parser.h"
#include "mathed/support.h"
#include "support/LOstream.h"
using std::ostream;
MathFuncLimInset::MathFuncLimInset(const latexkeys * l)
: sym_(l)
{}
MathInset * MathFuncLimInset::clone() const
{
return new MathFuncLimInset(*this);
}
bool MathFuncLimInset::isScriptable() const
{
return size_.style == LM_ST_DISPLAY;
}
void MathFuncLimInset::write(MathWriteInfo & os) const
{
os << '\\' << sym_->name << ' ';
}
void MathFuncLimInset::writeNormal(ostream & os) const
{
os << "[" << sym_->name << "] ";
}
void MathFuncLimInset::metrics(MathMetricsInfo const & st) const
{
size_ = st;
mathed_string_dim(LM_TC_TEXTRM, size_, sym_->name,
ascent_, descent_, width_);
}
void MathFuncLimInset::draw(Painter & pain, int x, int y) const
{
xo(x);
yo(y);
drawStr(pain, LM_TC_TEXTRM, size_, x, y, sym_->name);
}