/** * \file InsetMathEnv.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author André Pönitz * * Full author contact details are available in file CREDITS. */ #include #include "InsetMathEnv.h" #include "MathData.h" #include "MathMLStream.h" #include "MathStream.h" #include "support/std_ostream.h" using std::string; using std::auto_ptr; InsetMathEnv::InsetMathEnv(string const & name) : InsetMathNest(1), name_(name) {} auto_ptr InsetMathEnv::doClone() const { return auto_ptr(new InsetMathEnv(*this)); } void InsetMathEnv::metrics(MetricsInfo & mi, Dimension & dim) const { cell(0).metrics(mi, dim); metricsMarkers(dim); dim_ = dim; } void InsetMathEnv::draw(PainterInfo & pi, int x, int y) const { cell(0).draw(pi, x + 1, y); drawMarkers(pi, x, y); } void InsetMathEnv::write(WriteStream & os) const { os << "\\begin{" << name_ << '}' << cell(0) << "\\end{" << name_ << '}'; } void InsetMathEnv::normalize(NormalStream & os) const { os << "[env " << name_ << ' ' << cell(0) << ']'; } void InsetMathEnv::infoize(std::ostream & os) const { os << "Env: " << name_; }