mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
cd19a0b33b
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4506 a592a061-630c-0410-9148-cb99ea01b6c8
86 lines
1.4 KiB
C
86 lines
1.4 KiB
C
#include "math_diffinset.h"
|
|
#include "math_support.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "math_symbolinset.h"
|
|
#include "debug.h"
|
|
|
|
|
|
MathDiffInset::MathDiffInset()
|
|
: MathNestInset(1)
|
|
{}
|
|
|
|
|
|
MathInset * MathDiffInset::clone() const
|
|
{
|
|
return new MathDiffInset(*this);
|
|
}
|
|
|
|
|
|
void MathDiffInset::addDer(MathArray const & der)
|
|
{
|
|
cells_.push_back(MathXArray());
|
|
cells_.back().data_ = der;
|
|
}
|
|
|
|
|
|
void MathDiffInset::normalize(NormalStream & os) const
|
|
{
|
|
os << "[diff";
|
|
for (idx_type idx = 0; idx < nargs(); ++idx)
|
|
os << ' ' << cell(idx);
|
|
os << ']';
|
|
}
|
|
|
|
|
|
void MathDiffInset::metrics(MathMetricsInfo &) const
|
|
{
|
|
lyxerr << "should not happen\n";
|
|
}
|
|
|
|
|
|
void MathDiffInset::draw(MathPainterInfo &, int, int) const
|
|
{
|
|
lyxerr << "should not happen\n";
|
|
}
|
|
|
|
|
|
void MathDiffInset::maplize(MapleStream & os) const
|
|
{
|
|
os << "diff(";
|
|
for (idx_type idx = 0; idx < nargs(); ++idx) {
|
|
if (idx != 0)
|
|
os << ',';
|
|
os << cell(idx);
|
|
}
|
|
os << ')';
|
|
}
|
|
|
|
void MathDiffInset::mathematicize(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";
|
|
}
|