lyx_mirror/src/mathed/InsetMathEnv.cpp
André Pönitz 32871c1284 rename InsetBase to Inset
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18089 a592a061-630c-0410-9148-cb99ea01b6c8
2007-04-29 13:39:47 +00:00

75 lines
1.3 KiB
C++

/**
* \file InsetMathEnv.cpp
* 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 <config.h>
#include "InsetMathEnv.h"
#include "MathData.h"
#include "MathStream.h"
#include "MathStream.h"
#include "support/std_ostream.h"
namespace lyx {
using std::string;
using std::auto_ptr;
InsetMathEnv::InsetMathEnv(docstring const & name)
: InsetMathNest(1), name_(name)
{}
auto_ptr<Inset> InsetMathEnv::doClone() const
{
return auto_ptr<Inset>(new InsetMathEnv(*this));
}
bool InsetMathEnv::metrics(MetricsInfo & mi, Dimension & dim) const
{
cell(0).metrics(mi, dim);
metricsMarkers(dim);
if (dim_ == dim)
return false;
dim_ = dim;
return true;
}
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(odocstream & os) const
{
os << "Env: " << name_;
}
} // namespace lyx