]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exintinset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_exintinset.C
index ba21ff6dca3667e069c4476981ad6eaa0783ebda..f044f5134048cf6ca8d293d50963d9c00f778a8e 100644 (file)
@@ -7,6 +7,9 @@
 #include "math_symbolinset.h"
 #include "debug.h"
 
+#include <boost/scoped_ptr.hpp>
+
+using std::auto_ptr;
 using std::endl;
 
 
@@ -20,9 +23,9 @@ MathExIntInset::MathExIntInset(string const & name)
 // 3 - upper
 
 
-MathInset * MathExIntInset::clone() const
+auto_ptr<InsetBase> MathExIntInset::clone() const
 {
-       return new MathExIntInset(*this);
+       return auto_ptr<InsetBase>(new MathExIntInset(*this));
 }
 
 
@@ -42,29 +45,29 @@ bool MathExIntInset::hasScripts() const
 
 void MathExIntInset::normalize(NormalStream & os) const
 {
-       os << '[' << symbol_ << ' ' << cell(0) << ' ' << cell(1) << ' ' 
+       os << '[' << symbol_ << ' ' << cell(0) << ' ' << cell(1) << ' '
           << cell(2) << ' ' << cell(3) << ']';
 }
 
 
-void MathExIntInset::metrics(MathMetricsInfo const &) const
+void MathExIntInset::metrics(MetricsInfo &, Dimension &) const
 {
        lyxerr << "should not happen" << endl;
 }
 
 
-void MathExIntInset::draw(Painter &, int, int) const
-{  
+void MathExIntInset::draw(PainterInfo &, int, int) const
+{
        lyxerr << "should not happen" << endl;
 }
 
 
-void MathExIntInset::maplize(MapleStream & os) const
+void MathExIntInset::maple(MapleStream & os) const
 {
        os << symbol_ << '(';
        if (cell(0).size())
                os << cell(0);
-       else 
+       else
                os << '1';
        os << ',' << cell(1);
        if (hasScripts())
@@ -73,14 +76,50 @@ void MathExIntInset::maplize(MapleStream & os) const
 }
 
 
+void MathExIntInset::maxima(MaximaStream & os) const
+{
+       if ( symbol_ == "int" )
+               os << "integrate(";
+       else
+               os << symbol_ << '(';
+
+       if (cell(0).size())
+               os << cell(0) << ',';
+       else
+               os << '1' << ',';
+       if (hasScripts())
+               os << cell(1) << ',' << cell(2) << ',' << cell(3) << ')';
+       else
+               os << cell(1) << ')';
+}
+
+void MathExIntInset::mathematica(MathematicaStream & os) const
+{
+       if ( symbol_ == "int" )
+               os << "Integrate[";
+       else if (symbol_ == "sum")
+               os << "Sum[";
+       else
+               os << symbol_ << '[';
+
+       if (cell(0).size())
+               os << cell(0) << ',';
+       else
+               os << '1' << ',';
+       if (hasScripts())
+               os << '{' << cell(1) << ',' << cell(2) << ',' << cell(3) << "}]";
+       else
+               os << cell(1) << ']';
+}
+
+
 void MathExIntInset::mathmlize(MathMLStream & os) const
 {
-       MathSymbolInset * sym = new MathSymbolInset(symbol_);
+       boost::scoped_ptr<MathSymbolInset> sym(new MathSymbolInset(symbol_));
        //if (hasScripts())
        //      mathmlize(sym, os);
-       //else 
+       //else
                sym->mathmlize(os);
-       delete sym;
        os << cell(0) << "<mo> &InvisibleTimes; </mo>"
           << MTag("mrow") << "<mo> &DifferentialD; </mo>"
           << cell(1) << ETag("mrow");
@@ -91,4 +130,3 @@ void MathExIntInset::write(WriteStream &) const
 {
        lyxerr << "should not happen" << endl;
 }
-