mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
1829cdef6a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6555 a592a061-630c-0410-9148-cb99ea01b6c8
57 lines
982 B
C
57 lines
982 B
C
#include <config.h>
|
|
|
|
|
|
#include "math_boxinset.h"
|
|
#include "math_support.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "math_streamstr.h"
|
|
#include "support/LOstream.h"
|
|
|
|
|
|
MathBoxInset::MathBoxInset(string const & name)
|
|
: MathNestInset(1), name_(name)
|
|
{}
|
|
|
|
|
|
MathInset * MathBoxInset::clone() const
|
|
{
|
|
return new MathBoxInset(*this);
|
|
}
|
|
|
|
|
|
void MathBoxInset::write(WriteStream & os) const
|
|
{
|
|
os << '\\' << name_ << '{' << cell(0) << '}';
|
|
}
|
|
|
|
|
|
void MathBoxInset::normalize(NormalStream & os) const
|
|
{
|
|
os << '[' << name_ << ' ';
|
|
//text_->write(buffer(), os);
|
|
os << "] ";
|
|
}
|
|
|
|
|
|
void MathBoxInset::metrics(MetricsInfo & mi) const
|
|
{
|
|
FontSetChanger dummy(mi.base, "textnormal");
|
|
cell(0).metrics(mi);
|
|
dim_ = cell(0).dim();
|
|
metricsMarkers2();
|
|
}
|
|
|
|
|
|
void MathBoxInset::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
FontSetChanger dummy(pi.base, "textnormal");
|
|
cell(0).draw(pi, x, y);
|
|
drawMarkers2(pi, x + 1, y);
|
|
}
|
|
|
|
|
|
void MathBoxInset::infoize(std::ostream & os) const
|
|
{
|
|
os << "Box: " << name_;
|
|
}
|