]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exintinset.C
remove unneeded member
[lyx.git] / src / mathed / math_exintinset.C
index 2002a6fdd1db3a24c80a2f89147254d8fc577a15..47a44edde611ce56eea5fcf6ac226390efc40b3f 100644 (file)
+#include <config.h>
+
 #include "math_exintinset.h"
 #include "math_support.h"
-#include "debug.h"
 #include "math_mathmlstream.h"
+#include "math_streamstr.h"
 #include "math_symbolinset.h"
+#include "debug.h"
 
+#include <boost/scoped_ptr.hpp>
 
-MathExIntInset::MathExIntInset()
-       : int_(new MathSymbolInset("int"))
-{}
-
-
-MathInset * MathExIntInset::clone() const
-{
-       return new MathExIntInset(*this);
-}
-
+using std::endl;
 
-void MathExIntInset::differential(MathArray const & ar)
-{
-       diff_ = ar;
-}
 
+MathExIntInset::MathExIntInset(string const & name)
+       : MathNestInset(4), symbol_(name)
+{}
 
-void MathExIntInset::core(MathArray const & ar)
-{
-       core_ = ar;
-}
+// 0 - core
+// 1 - diff
+// 2 - lower
+// 3 - upper
 
 
-void MathExIntInset::scripts(MathAtom const & at)
+MathInset * MathExIntInset::clone() const
 {
-       scripts_ = at;
+       return new MathExIntInset(*this);
 }
 
 
-void MathExIntInset::symbol(MathAtom const & at)
+void MathExIntInset::symbol(string const & symbol)
 {
-       int_ = at;
+       symbol_ = symbol;
 }
 
 
 bool MathExIntInset::hasScripts() const
 {
-       return scripts_.hasNucleus();
+       // take empty upper bound as "no scripts"
+       return !cell(3).empty();
 }
 
 
 
 void MathExIntInset::normalize(NormalStream & os) const
 {
-       os << "[int ";
-       if (hasScripts())
-               os << scripts_.nucleus();
-       else 
-               os << "{}";
-       os << ' ' << core_ << ' ' << diff_ << ']';
+       os << '[' << symbol_ << ' ' << cell(0) << ' ' << cell(1) << ' '
+          << cell(2) << ' ' << cell(3) << ']';
 }
 
 
-void MathExIntInset::metrics(MathMetricsInfo const &) const
+void MathExIntInset::metrics(MathMetricsInfo &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
 
 
-void MathExIntInset::draw(Painter &, int, int) const
-{  
-       lyxerr << "should not happen\n";
+void MathExIntInset::draw(MathPainterInfo &, int, int) const
+{
+       lyxerr << "should not happen" << endl;
 }
 
 
 void MathExIntInset::maplize(MapleStream & os) const
 {
-       os << int_.nucleus() << '(' << core_ << ',' << diff_;
-       if (hasScripts()) {
-               MathScriptInset * p = scripts_->asScriptInset();
-               os << '=' << p->down().data_ << ".." << p->up().data_;
-       }
+       os << symbol_ << '(';
+       if (cell(0).size())
+               os << cell(0);
+       else
+               os << '1';
+       os << ',' << cell(1);
+       if (hasScripts())
+               os << '=' << cell(2) << ".." << cell(3);
        os << ')';
 }
 
-
-void MathExIntInset::mathmlize(MathMLStream & os) const
+void MathExIntInset::mathematicize(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())
-               scripts_->asScriptInset()->mathmlize(int_.nucleus(), os);
+               os << '{' << cell(1) << ',' << cell(2) << ',' << cell(3) << "}]";
        else 
-               int_->mathmlize(os);
-       os << core_ << "<mo> &InvisibleTimes; </mo>"
-          << MTag("mrow") << "<mo> &DifferentialD; </mo>"
-          << diff_ << ETag("mrow");
+               os << cell(1) << ']';
 }
 
 
-void MathExIntInset::write(WriteStream & os) const
+void MathExIntInset::mathmlize(MathMLStream & os) const
 {
-       if (hasScripts())
-               os << scripts_.nucleus();
-       os << core_ << "d" << diff_;
+       boost::scoped_ptr<MathSymbolInset> sym(new MathSymbolInset(symbol_));
+       //if (hasScripts())
+       //      mathmlize(sym, os);
+       //else
+               sym->mathmlize(os);
+       os << cell(0) << "<mo> &InvisibleTimes; </mo>"
+          << MTag("mrow") << "<mo> &DifferentialD; </mo>"
+          << cell(1) << ETag("mrow");
 }
 
+
+void MathExIntInset::write(WriteStream &) const
+{
+       lyxerr << "should not happen" << endl;
+}