]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_diffinset.C
Add In nsetOld * argument to updateInset to rebreak the correct par.
[lyx.git] / src / mathed / math_diffinset.C
index c05620e98ac5e67ac8988c6056e11314b6a4de8a..d81bbd8c0d6484299d1ea2f278f4c0f8594b9d96 100644 (file)
@@ -1,25 +1,39 @@
+/**
+ * \file math_diffinset.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 "math_diffinset.h"
 #include "math_support.h"
 #include "math_mathmlstream.h"
 #include "math_symbolinset.h"
 #include "debug.h"
 
+using std::auto_ptr;
+using std::endl;
+
 
 MathDiffInset::MathDiffInset()
        : MathNestInset(1)
 {}
 
 
-MathInset * MathDiffInset::clone() const
+auto_ptr<InsetBase> MathDiffInset::clone() const
 {
-       return new MathDiffInset(*this);
+       return auto_ptr<InsetBase>(new MathDiffInset(*this));
 }
 
 
 void MathDiffInset::addDer(MathArray const & der)
 {
-       cells_.push_back(MathXArray());
-       cells_.back().data_ = der;
+       cells_.push_back(der);
 }
 
 
@@ -32,19 +46,19 @@ void MathDiffInset::normalize(NormalStream & os) const
 }
 
 
-void MathDiffInset::metrics(MathMetricsInfo const &) const
+void MathDiffInset::metrics(MetricsInfo &, Dimension &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
 
 
-void MathDiffInset::draw(Painter &, int, int) const
-{  
-       lyxerr << "should not happen\n";
+void MathDiffInset::draw(PainterInfo &, int, int) const
+{
+       lyxerr << "should not happen" << endl;
 }
 
 
-void MathDiffInset::maplize(MapleStream & os) const
+void MathDiffInset::maple(MapleStream & os) const
 {
        os << "diff(";
        for (idx_type idx = 0; idx < nargs(); ++idx) {
@@ -56,6 +70,18 @@ void MathDiffInset::maplize(MapleStream & os) const
 }
 
 
+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(";
@@ -70,6 +96,5 @@ void MathDiffInset::mathmlize(MathMLStream & os) const
 
 void MathDiffInset::write(WriteStream &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
-