]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exintinset.C
fix #1073
[lyx.git] / src / mathed / math_exintinset.C
index f39b8ba6428b1f3aeeaeabd8793251a73e3bba9a..2f9d07ca198a98a5f79ed334daab0d395dec7f4e 100644 (file)
@@ -1,9 +1,4 @@
 
-
-#ifdef __GNUG__
-#pragma implementation 
-#endif
-
 #include <config.h>
 
 #include "math_exintinset.h"
@@ -53,19 +48,19 @@ void MathExIntInset::normalize(NormalStream & os) const
 }
 
 
-void MathExIntInset::metrics(MathMetricsInfo &) const
+void MathExIntInset::metrics(MetricsInfo &) const
 {
        lyxerr << "should not happen\n";
 }
 
 
-void MathExIntInset::draw(MathPainterInfo &, int, int) const
+void MathExIntInset::draw(PainterInfo &, int, int) const
 {
        lyxerr << "should not happen\n";
 }
 
 
-void MathExIntInset::maplize(MapleStream & os) const
+void MathExIntInset::maple(MapleStream & os) const
 {
        os << symbol_ << '(';
        if (cell(0).size())
@@ -79,23 +74,39 @@ void MathExIntInset::maplize(MapleStream & os) const
 }
 
 
-void MathExIntInset::mathematicize(MathematicaStream & 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" ) 
+       if ( symbol_ == "int" )
                os << "Integrate[";
-       else 
-               if (symbol_ == "sum") 
-                       os << "Sum[";
-               else 
-                       os << symbol_ << '[';
-       
+       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 
+       else
                os << cell(1) << ']';
 }