2001-06-25 00:06:33 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "math_sizeinset.h"
|
2001-08-10 13:50:42 +00:00
|
|
|
#include "math_parser.h"
|
2001-11-08 12:06:56 +00:00
|
|
|
#include "math_mathmlstream.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
2001-08-10 13:50:42 +00:00
|
|
|
MathSizeInset::MathSizeInset(latexkeys const * l)
|
|
|
|
: MathNestInset(1), key_(l)
|
2001-08-08 17:26:30 +00:00
|
|
|
{}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-06-27 15:33:55 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
MathInset * MathSizeInset::clone() const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
return new MathSizeInset(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-06 17:20:26 +00:00
|
|
|
void MathSizeInset::draw(Painter & pain, int x, int y) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
|
|
|
xcell(0).draw(pain, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-22 15:37:49 +00:00
|
|
|
void MathSizeInset::metrics(MathMetricsInfo const & mi) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2001-10-22 15:37:49 +00:00
|
|
|
MathMetricsInfo m = mi;
|
|
|
|
m.style = MathStyles(key_->id);
|
|
|
|
xcell(0).metrics(m);
|
2001-06-25 00:06:33 +00:00
|
|
|
ascent_ = xcell(0).ascent_;
|
|
|
|
descent_ = xcell(0).descent_;
|
|
|
|
width_ = xcell(0).width_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
void MathSizeInset::write(WriteStream & os) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2001-11-08 12:06:56 +00:00
|
|
|
os << "{\\" << key_->name.c_str() << ' ' << cell(0) << '}';
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
void MathSizeInset::normalize(NormalStream & os) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2001-11-08 12:06:56 +00:00
|
|
|
os << "[" << key_->name.c_str() << ' ' << cell(0) << ']';
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|