mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
1829cdef6a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6555 a592a061-630c-0410-9148-cb99ea01b6c8
51 lines
853 B
C
51 lines
853 B
C
#include <config.h>
|
|
|
|
|
|
#include "math_envinset.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "math_streamstr.h"
|
|
#include "support/LOstream.h"
|
|
|
|
|
|
MathEnvInset::MathEnvInset(string const & name)
|
|
: MathNestInset(1), name_(name)
|
|
{}
|
|
|
|
|
|
MathInset * MathEnvInset::clone() const
|
|
{
|
|
return new MathEnvInset(*this);
|
|
}
|
|
|
|
|
|
void MathEnvInset::metrics(MetricsInfo & mi) const
|
|
{
|
|
dim_ = cell(0).metrics(mi);
|
|
metricsMarkers2();
|
|
}
|
|
|
|
|
|
void MathEnvInset::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
cell(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_;
|
|
}
|