mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
00413a7841
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4843 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.1 KiB
C
59 lines
1.1 KiB
C
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "math_sizeinset.h"
|
|
#include "math_parser.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "math_streamstr.h"
|
|
#include "math_support.h"
|
|
#include "support/LOstream.h"
|
|
|
|
using std::atoi;
|
|
|
|
MathSizeInset::MathSizeInset(latexkeys const * l)
|
|
: MathNestInset(1), key_(l), style_(MathStyles(atoi(l->extra.c_str())))
|
|
{}
|
|
|
|
|
|
MathInset * MathSizeInset::clone() const
|
|
{
|
|
return new MathSizeInset(*this);
|
|
}
|
|
|
|
|
|
void MathSizeInset::metrics(MathMetricsInfo & mi) const
|
|
{
|
|
MathStyleChanger dummy(mi.base, style_);
|
|
dim_ = cell(0).metrics(mi);
|
|
metricsMarkers2();
|
|
}
|
|
|
|
|
|
void MathSizeInset::draw(MathPainterInfo & pi, int x, int y) const
|
|
{
|
|
MathStyleChanger dummy(pi.base, style_);
|
|
cell(0).draw(pi, x + 1, y);
|
|
drawMarkers2(pi, x, y);
|
|
}
|
|
|
|
|
|
void MathSizeInset::write(WriteStream & os) const
|
|
{
|
|
os << "{\\" << key_->name << ' ' << cell(0) << '}';
|
|
}
|
|
|
|
|
|
void MathSizeInset::normalize(NormalStream & os) const
|
|
{
|
|
os << "[" << key_->name << ' ' << cell(0) << ']';
|
|
}
|
|
|
|
|
|
void MathSizeInset::infoize(std::ostream & os) const
|
|
{
|
|
os << "Size: " << key_->name;
|
|
}
|