2002-07-17 10:25:33 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "math_fontoldinset.h"
|
|
|
|
#include "math_mathmlstream.h"
|
|
|
|
#include "math_streamstr.h"
|
|
|
|
#include "math_support.h"
|
|
|
|
#include "math_parser.h"
|
|
|
|
#include "textpainter.h"
|
2002-07-17 11:05:16 +00:00
|
|
|
#include "support/LOstream.h"
|
2002-07-17 10:25:33 +00:00
|
|
|
#include "frontends/Painter.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MathFontOldInset::MathFontOldInset(latexkeys const * key)
|
|
|
|
: MathNestInset(1), key_(key)
|
|
|
|
{
|
|
|
|
//lock(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MathInset * MathFontOldInset::clone() const
|
|
|
|
{
|
|
|
|
return new MathFontOldInset(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathFontOldInset::metrics(MathMetricsInfo & mi) const
|
|
|
|
{
|
|
|
|
MathFontSetChanger dummy(mi.base, key_->name.c_str());
|
2002-08-02 14:29:42 +00:00
|
|
|
dim_ = cell(0).metrics(mi);
|
2002-07-17 10:25:33 +00:00
|
|
|
metricsMarkers();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathFontOldInset::draw(MathPainterInfo & pi, int x, int y) const
|
|
|
|
{
|
|
|
|
MathFontSetChanger dummy(pi.base, key_->name.c_str());
|
2002-08-02 14:29:42 +00:00
|
|
|
cell(0).draw(pi, x + 1, y);
|
2002-07-17 10:25:33 +00:00
|
|
|
drawMarkers(pi, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathFontOldInset::metricsT(TextMetricsInfo const & mi) const
|
|
|
|
{
|
2002-08-02 14:29:42 +00:00
|
|
|
dim_ = cell(0).metricsT(mi);
|
2002-07-17 10:25:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathFontOldInset::drawT(TextPainter & pain, int x, int y) const
|
|
|
|
{
|
2002-08-02 14:29:42 +00:00
|
|
|
cell(0).drawT(pain, x, y);
|
2002-07-17 10:25:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathFontOldInset::write(WriteStream & os) const
|
|
|
|
{
|
|
|
|
os << "{\\" << key_->name << ' ' << cell(0) << '}';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathFontOldInset::normalize(NormalStream & os) const
|
|
|
|
{
|
|
|
|
os << "[font " << key_->name << " " << cell(0) << "]";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathFontOldInset::infoize(std::ostream & os) const
|
|
|
|
{
|
|
|
|
os << "Font: " << key_->name;
|
|
|
|
}
|