#include #include "math_ertinset.h" #include "math_mathmlstream.h" #include "support/LOstream.h" using std::auto_ptr; auto_ptr MathErtInset::clone() const { return auto_ptr(new MathErtInset(*this)); } void MathErtInset::metrics(MetricsInfo & mi, Dimension & dim) const { FontSetChanger dummy(mi.base, "lyxert"); MathTextInset::metrics(mi, dim_); cache_.colinfo_[0].align_ = 'l'; metricsMarkers(); dim = dim_; } void MathErtInset::draw(PainterInfo & pi, int x, int y) const { FontSetChanger dummy(pi.base, "lyxert"); MathTextInset::draw(pi, x + 1, y); drawMarkers(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"; }