lyx_mirror/src/mathed/InsetMathDiff.cpp
André Pönitz 9d0ea8aeff Move debug.{cpp,h}, Messages.{cpp,h} and gettext.{cpp,h} to support/.
Now support/* should have no dependencies on src/* anymore.



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21851 a592a061-630c-0410-9148-cb99ea01b6c8
2007-11-29 07:04:28 +00:00

116 lines
1.8 KiB
C++

/**
* \file InsetMathDiff.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 "InsetMathDiff.h"
#include "MathData.h"
#include "MathStream.h"
#include "support/debug.h"
namespace lyx {
InsetMathDiff::InsetMathDiff()
: InsetMathNest(1)
{}
Inset * InsetMathDiff::clone() const
{
return new InsetMathDiff(*this);
}
void InsetMathDiff::addDer(MathData const & der)
{
cells_.push_back(der);
}
void InsetMathDiff::normalize(NormalStream & os) const
{
os << "[diff";
for (idx_type idx = 0; idx < nargs(); ++idx)
os << ' ' << cell(idx);
os << ']';
}
void InsetMathDiff::metrics(MetricsInfo &, Dimension &) const
{
LYXERR0("should not happen");
}
void InsetMathDiff::draw(PainterInfo &, int, int) const
{
LYXERR0("should not happen");
}
void InsetMathDiff::maple(MapleStream & os) const
{
os << "diff(";
for (idx_type idx = 0; idx < nargs(); ++idx) {
if (idx != 0)
os << ',';
os << cell(idx);
}
os << ')';
}
void InsetMathDiff::maxima(MaximaStream & os) const
{
os << "diff(";
for (idx_type idx = 0; idx < nargs(); ++idx) {
if (idx != 0)
os << ',';
os << cell(idx);
if (idx != 0)
os << ",1";
}
os << ')';
}
void InsetMathDiff::mathematica(MathematicaStream & os) const
{
os << "D[";
for (idx_type idx = 0; idx < nargs(); ++idx) {
if (idx != 0)
os << ',';
os << cell(idx);
}
os << ']';
}
void InsetMathDiff::mathmlize(MathStream & os) const
{
os << "diff(";
for (idx_type idx = 0; idx < nargs(); ++idx) {
if (idx != 0)
os << ',';
os << cell(idx);
}
os << ')';
}
void InsetMathDiff::write(WriteStream &) const
{
LYXERR0("should not happen");
}
} // namespace lyx