2002-07-09 09:46:31 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "math_envinset.h"
|
|
|
|
#include "math_mathmlstream.h"
|
|
|
|
#include "math_streamstr.h"
|
2002-07-09 10:06:27 +00:00
|
|
|
#include "support/LOstream.h"
|
2002-07-09 09:46:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
MathEnvInset::MathEnvInset(string const & name)
|
|
|
|
: MathNestInset(1), name_(name)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
MathInset * MathEnvInset::clone() const
|
|
|
|
{
|
|
|
|
return new MathEnvInset(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathEnvInset::metrics(MathMetricsInfo & mi) const
|
|
|
|
{
|
2002-07-11 11:27:24 +00:00
|
|
|
dim_ = xcell(0).metrics(mi);
|
|
|
|
metricsMarkers2();
|
2002-07-09 09:46:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathEnvInset::draw(MathPainterInfo & pi, int x, int y) const
|
|
|
|
{
|
|
|
|
xcell(0).draw(pi, x + 1, y);
|
|
|
|
drawMarkers2(pi, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathEnvInset::write(WriteStream & os) const
|
|
|
|
{
|
|
|
|
os << "\\begin{" << name_ << '}' << cell(0) << "\\end{" << name_ << '}';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathEnvInset::normalize(NormalStream & os) const
|
|
|
|
{
|
|
|
|
os << "[env " << name_ << " " << cell(0) << ']';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathEnvInset::infoize(std::ostream & os) const
|
|
|
|
{
|
|
|
|
os << "Env: " << name_;
|
|
|
|
}
|