mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
33a28bdc9c
c_str() all places where it is not needed anymore. (I also add config.h to several files that was missing it) + added s string constructor to math_symbolinset I also change some "while(" to "while (" mmm ... yes ... I add a "zero()" function to LyXLength... an "empty()" function did not seem appropriate. changed a couple of places that checked on length.value() != 0.0. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3149 a592a061-630c-0410-9148-cb99ea01b6c8
82 lines
1.2 KiB
C
82 lines
1.2 KiB
C
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "math_unknowninset.h"
|
|
#include "font.h"
|
|
#include "Painter.h"
|
|
#include "math_support.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "math_streamstr.h"
|
|
|
|
|
|
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;
|
|
}
|
|
|
|
|
|
void MathUnknownInset::write(WriteStream & os) const
|
|
{
|
|
os << "\\" << name_ << ' ';
|
|
}
|
|
|
|
|
|
void MathUnknownInset::normalize(NormalStream & os) const
|
|
{
|
|
os << "[func " << name_ << ']';
|
|
}
|
|
|
|
|
|
void MathUnknownInset::metrics(MathMetricsInfo const & mi) const
|
|
{
|
|
mi_ = mi;
|
|
mathed_string_dim(LM_TC_TEX, mi_, name_, ascent_, descent_, width_);
|
|
}
|
|
|
|
|
|
void MathUnknownInset::draw(Painter & pain, int x, int y) const
|
|
{
|
|
drawStr(pain, LM_TC_TEX, mi_, x, y, name_);
|
|
}
|
|
|
|
|
|
void MathUnknownInset::maplize(MapleStream & os) const
|
|
{
|
|
os << name_;
|
|
}
|
|
|
|
|
|
void MathUnknownInset::mathmlize(MathMLStream & os) const
|
|
{
|
|
os << MTag("mi") << name_ << ETag("mi");
|
|
}
|
|
|
|
|
|
void MathUnknownInset::octavize(OctaveStream & os) const
|
|
{
|
|
os << name_;
|
|
}
|