lyx_mirror/src/mathed/math_diffinset.C

88 lines
1.4 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"
using std::auto_ptr;
MathDiffInset::MathDiffInset()
: MathNestInset(1)
{}
auto_ptr<InsetBase> MathDiffInset::clone() const
{
return auto_ptr<InsetBase>(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";
}