2002-08-01 16:12:02 +00:00
|
|
|
#include <config.h>
|
2002-07-31 17:26:14 +00:00
|
|
|
|
|
|
|
#include "math_ertinset.h"
|
|
|
|
#include "math_mathmlstream.h"
|
|
|
|
|
2002-08-01 16:12:02 +00:00
|
|
|
#include "support/LOstream.h"
|
2002-07-31 17:26:14 +00:00
|
|
|
|
|
|
|
MathInset * MathErtInset::clone() const
|
|
|
|
{
|
|
|
|
return new MathErtInset(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathErtInset::metrics(MathMetricsInfo & mi) const
|
|
|
|
{
|
|
|
|
MathFontSetChanger dummy(mi.base, "lyxert");
|
|
|
|
MathTextInset::metrics(mi);
|
|
|
|
cache_.colinfo_[0].align_ = 'l';
|
|
|
|
metricsMarkers2();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathErtInset::draw(MathPainterInfo & pi, int x, int y) const
|
|
|
|
{
|
|
|
|
MathFontSetChanger dummy(pi.base, "lyxert");
|
|
|
|
MathTextInset::draw(pi, x + 1, y);
|
|
|
|
drawMarkers2(pi, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathErtInset::write(WriteStream & os) const
|
|
|
|
{
|
|
|
|
if (os.latex())
|
|
|
|
os << cell(0);
|
|
|
|
else
|
|
|
|
os << "\\lyxert{" << cell(0) << '}';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathErtInset::infoize(std::ostream & os) const
|
|
|
|
{
|
|
|
|
os << "Box: Ert";
|
|
|
|
}
|
|
|
|
|