lyx_mirror/src/mathed/math_diffinset.C

87 lines
1.3 KiB
C++
Raw Normal View History

#include "math_diffinset.h"
#include "math_support.h"
#include "math_mathmlstream.h"
#include "math_symbolinset.h"
#include "debug.h"
MathDiffInset::MathDiffInset()
: MathNestInset(1)
{}
InsetBase * MathDiffInset::clone() const
{
return new MathDiffInset(*this);
}
void MathDiffInset::addDer(MathArray const & der)
{
cells_.push_back(der);
}
void MathDiffInset::normalize(NormalStream & os) const
{
os << "[diff";
for (idx_type idx = 0; idx < nargs(); ++idx)
os << ' ' << cell(idx);
os << ']';
}
void MathDiffInset::metrics(MetricsInfo &, Dimension &) const
{
lyxerr << "should not happen\n";
}
void MathDiffInset::draw(PainterInfo &, int, int) const
{
lyxerr << "should not happen\n";
}
void MathDiffInset::maple(MapleStream & os) const
{
os << "diff(";
for (idx_type idx = 0; idx < nargs(); ++idx) {
if (idx != 0)
os << ',';
os << cell(idx);
}
os << ')';
}
void MathDiffInset::mathematica(MathematicaStream & os) const
{
os << "Dt[";
for (idx_type idx = 0; idx < nargs(); ++idx) {
if (idx != 0)
os << ',';
os << cell(idx);
}
os << ']';
}
void MathDiffInset::mathmlize(MathMLStream & os) const
{
os << "diff(";
for (idx_type idx = 0; idx < nargs(); ++idx) {
if (idx != 0)
os << ',';
os << cell(idx);
}
os << ')';
}
void MathDiffInset::write(WriteStream &) const
{
lyxerr << "should not happen\n";
}