lyx_mirror/src/mathed/InsetMathDiff.C
Abdelrazak Younes e24bf64c68 * dimension.h: new operator!=() and operator=()
* InsetBase and all derivates:
  - metrics(MetricsInfo & mi, Dimension & dim) now returns a bool (true if metrics changed).

* MathData and all derivates:
  - metrics(MetricsInfo & mi, Dimension & dim): ditto.

* RenderBase and all derivates:
  - metrics(MetricsInfo & mi, Dimension & dim): ditto.

* lyxtext.h/text.C:
  - LyXText::metrics(MetricsInfo & mi, Dimension & dim): ditto.
  - LyXText::redoParagraph(): take into account potential change in inset metrics.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16091 a592a061-630c-0410-9148-cb99ea01b6c8
2006-11-28 15:15:49 +00:00

121 lines
1.9 KiB
C

/**
* \file InsetMathDiff.C
* 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 "debug.h"
namespace lyx {
using std::auto_ptr;
using std::endl;
InsetMathDiff::InsetMathDiff()
: InsetMathNest(1)
{}
auto_ptr<InsetBase> InsetMathDiff::doClone() const
{
return auto_ptr<InsetBase>(new InsetMathDiff(*this));
}
void InsetMathDiff::addDer(MathArray 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 << ']';
}
bool InsetMathDiff::metrics(MetricsInfo &, Dimension &) const
{
lyxerr << "should not happen" << endl;
return true;
}
void InsetMathDiff::draw(PainterInfo &, int, int) const
{
lyxerr << "should not happen" << endl;
}
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
{
lyxerr << "should not happen" << endl;
}
} // namespace lyx