lyx_mirror/src/mathed/math_funcliminset.C
André Pönitz 2dd919eeb8 parse octave output as matrix if necessary
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2974 a592a061-630c-0410-9148-cb99ea01b6c8
2001-11-07 13:15:59 +00:00

48 lines
807 B
C

#include "math_funcliminset.h"
#include "support.h"
#include "support/LOstream.h"
using std::ostream;
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_ << ' ';
}
void MathFuncLimInset::writeNormal(ostream & os) const
{
os << "[" << name_ << "] ";
}
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_);
}