lyx_mirror/src/mathed/math_exintinset.C

100 lines
1.7 KiB
C++
Raw Normal View History

#include "math_exintinset.h"
#include "math_support.h"
#include "math_mathmlstream.h"
#include "math_symbolinset.h"
#include "debug.h"
MathExIntInset::MathExIntInset(string const & name)
: MathNestInset(2), symbol_(name)
{}
MathInset * MathExIntInset::clone() const
{
return new MathExIntInset(*this);
}
void MathExIntInset::scripts(MathAtom const & at)
{
scripts_ = at;
}
MathAtom & MathExIntInset::scripts()
{
return scripts_;
}
void MathExIntInset::symbol(string const & symbol)
{
symbol_ = symbol;
}
bool MathExIntInset::hasScripts() const
{
return scripts_.hasNucleus();
}
void MathExIntInset::normalize(NormalStream & os) const
{
os << '[' << symbol_.c_str() << ' ' << cell(0) << ' ' << cell(1);
if (hasScripts())
os << scripts_.nucleus();
os << ']';
}
void MathExIntInset::metrics(MathMetricsInfo const &) const
{
lyxerr << "should not happen\n";
}
void MathExIntInset::draw(Painter &, int, int) const
{
lyxerr << "should not happen\n";
}
void MathExIntInset::maplize(MapleStream & os) const
{
os << symbol_.c_str() << '(';
if (cell(0).size())
os << cell(0);
else
os << '1';
os << ',' << cell(1);
if (hasScripts()) {
MathScriptInset * p = scripts_->asScriptInset();
os << '=' << p->down().data_ << ".." << p->up().data_;
}
os << ')';
}
void MathExIntInset::mathmlize(MathMLStream & os) const
{
MathSymbolInset * sym = new MathSymbolInset(symbol_.c_str());
if (hasScripts())
scripts_->asScriptInset()->mathmlize(sym, os);
else
sym->mathmlize(os);
delete sym;
os << cell(0) << "<mo> &InvisibleTimes; </mo>"
<< MTag("mrow") << "<mo> &DifferentialD; </mo>"
<< cell(1) << ETag("mrow");
}
void MathExIntInset::write(WriteStream &) const
{
lyxerr << "should not happen\n";
}