lyx_mirror/src/mathed/InsetMathExInt.cpp
André Pönitz f1cba8ff64 more latin1..utf8 schanges. all of src/* should be utf8 now
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27425 a592a061-630c-0410-9148-cb99ea01b6c8
2008-11-14 15:58:50 +00:00

145 lines
2.5 KiB
C++

/**
* \file InsetMathExInt.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "InsetMathExInt.h"
#include "MathData.h"
#include "MathStream.h"
#include "MathStream.h"
#include "InsetMathSymbol.h"
#include "support/debug.h"
#include "support/docstring.h"
namespace lyx {
InsetMathExInt::InsetMathExInt(docstring const & name)
: InsetMathNest(4), symbol_(name)
{}
// 0 - core
// 1 - diff
// 2 - lower
// 3 - upper
Inset * InsetMathExInt::clone() const
{
return new InsetMathExInt(*this);
}
void InsetMathExInt::symbol(docstring const & symbol)
{
symbol_ = symbol;
}
bool InsetMathExInt::hasScripts() const
{
// take empty upper bound as "no scripts"
return !cell(3).empty();
}
void InsetMathExInt::normalize(NormalStream & os) const
{
os << '[' << symbol_ << ' ' << cell(0) << ' ' << cell(1) << ' '
<< cell(2) << ' ' << cell(3) << ']';
}
void InsetMathExInt::metrics(MetricsInfo &, Dimension &) const
{
LYXERR0("should not happen");
}
void InsetMathExInt::draw(PainterInfo &, int, int) const
{
LYXERR0("should not happen");
}
void InsetMathExInt::maple(MapleStream & os) const
{
os << symbol_ << '(';
if (cell(0).size())
os << cell(0);
else
os << '1';
os << ',' << cell(1);
if (hasScripts())
os << '=' << cell(2) << ".." << cell(3);
os << ')';
}
void InsetMathExInt::maxima(MaximaStream & os) const
{
if (symbol_ == "int")
os << "integrate(";
else
os << symbol_ << '(';
if (cell(0).size())
os << cell(0) << ',';
else
os << '1' << ',';
if (hasScripts())
os << cell(1) << ',' << cell(2) << ',' << cell(3) << ')';
else
os << cell(1) << ')';
}
void InsetMathExInt::mathematica(MathematicaStream & os) const
{
if (symbol_ == "int")
os << "Integrate[";
else if (symbol_ == "sum")
os << "Sum[";
else
os << symbol_ << '[';
if (cell(0).size())
os << cell(0) << ',';
else
os << '1' << ',';
if (hasScripts())
os << '{' << cell(1) << ',' << cell(2) << ',' << cell(3) << "}]";
else
os << cell(1) << ']';
}
void InsetMathExInt::mathmlize(MathStream & os) const
{
InsetMathSymbol sym(symbol_);
//if (hasScripts())
// mathmlize(sym, os);
//else
sym.mathmlize(os);
os << cell(0) << "<mo> &InvisibleTimes; </mo>"
<< MTag("mrow") << "<mo> &DifferentialD; </mo>"
<< cell(1) << ETag("mrow");
}
void InsetMathExInt::write(WriteStream &) const
{
LYXERR0("should not happen");
}
} // namespace lyx