2001-12-05 08:04:20 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2001-11-09 10:44:24 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "math_unknowninset.h"
|
|
|
|
#include "font.h"
|
2002-05-23 09:21:32 +00:00
|
|
|
#include "frontends/Painter.h"
|
2001-11-09 10:44:24 +00:00
|
|
|
#include "math_support.h"
|
|
|
|
#include "math_mathmlstream.h"
|
2001-12-05 08:04:20 +00:00
|
|
|
#include "math_streamstr.h"
|
2001-11-09 10:44:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
extern LyXFont WhichFont(short type, int size);
|
|
|
|
|
|
|
|
|
|
|
|
MathUnknownInset::MathUnknownInset(string const & nm)
|
|
|
|
: name_(nm)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
MathInset * MathUnknownInset::clone() const
|
|
|
|
{
|
|
|
|
return new MathUnknownInset(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const & MathUnknownInset::name() const
|
|
|
|
{
|
|
|
|
return name_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathUnknownInset::setName(string const & n)
|
|
|
|
{
|
|
|
|
name_ = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-01 17:01:30 +00:00
|
|
|
bool MathUnknownInset::match(MathInset * p) const
|
|
|
|
{
|
|
|
|
MathUnknownInset const * q = p->asUnknownInset();
|
|
|
|
return q && name_ == q->name_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 10:44:24 +00:00
|
|
|
void MathUnknownInset::write(WriteStream & os) const
|
|
|
|
{
|
2001-12-05 08:04:20 +00:00
|
|
|
os << "\\" << name_ << ' ';
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathUnknownInset::normalize(NormalStream & os) const
|
|
|
|
{
|
2002-02-01 17:01:30 +00:00
|
|
|
os << "[unknown " << name_ << ']';
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-21 17:42:56 +00:00
|
|
|
void MathUnknownInset::metrics(MathMetricsInfo const & mi) const
|
2001-11-09 10:44:24 +00:00
|
|
|
{
|
2002-03-19 16:55:58 +00:00
|
|
|
whichFont(font_, LM_TC_TEX, mi);
|
|
|
|
mathed_string_dim(font_, name_, ascent_, descent_, width_);
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathUnknownInset::draw(Painter & pain, int x, int y) const
|
2002-03-21 17:42:56 +00:00
|
|
|
{
|
2002-03-19 16:55:58 +00:00
|
|
|
drawStr(pain, font_, x, y, name_);
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathUnknownInset::maplize(MapleStream & os) const
|
|
|
|
{
|
2001-12-05 08:04:20 +00:00
|
|
|
os << name_;
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathUnknownInset::mathmlize(MathMLStream & os) const
|
|
|
|
{
|
2001-12-05 08:04:20 +00:00
|
|
|
os << MTag("mi") << name_ << ETag("mi");
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathUnknownInset::octavize(OctaveStream & os) const
|
|
|
|
{
|
2001-12-05 08:04:20 +00:00
|
|
|
os << name_;
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|