]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exintinset.C
Ensure all #warning statements are wrapped by #ifdef WITH_WARNINGS.
[lyx.git] / src / mathed / math_exintinset.C
index 7ebd2b9ddcde33aa126287fd5282bb420c364c35..e41dad31346ccb8ff075bd239999bab548313280 100644 (file)
+/**
+ * \file math_exintinset.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_exintinset.h"
-#include "support.h"
-#include "debug.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
+#include "math_streamstr.h"
 #include "math_symbolinset.h"
+#include "debug.h"
+
+#include <boost/scoped_ptr.hpp>
+
+
+using std::string;
+using std::auto_ptr;
+using std::endl;
 
 
-MathExIntInset::MathExIntInset(MathScriptInset const & scripts,
-               MathArray const & core, MathArray const & diff)
-       : int_(new MathSymbolInset("int")),
-               scripts_(scripts), core_(core), diff_(diff)
+MathExIntInset::MathExIntInset(string const & name)
+       : MathNestInset(4), symbol_(name)
 {}
 
+// 0 - core
+// 1 - diff
+// 2 - lower
+// 3 - upper
+
+
+auto_ptr<InsetBase> MathExIntInset::clone() const
+{
+       return auto_ptr<InsetBase>(new MathExIntInset(*this));
+}
+
+
+void MathExIntInset::symbol(string const & symbol)
+{
+       symbol_ = symbol;
+}
+
 
-MathInset * MathExIntInset::clone() const
+bool MathExIntInset::hasScripts() const
 {
-       return new MathExIntInset(*this);
+       // take empty upper bound as "no scripts"
+       return !cell(3).empty();
 }
 
 
-void MathExIntInset::write(MathWriteInfo & os) const
+
+void MathExIntInset::normalize(NormalStream & os) const
 {
-       scripts_.write(int_.nucleus(), os);
-       os << core_ << "d" << diff_;
+       os << '[' << symbol_ << ' ' << cell(0) << ' ' << cell(1) << ' '
+          << cell(2) << ' ' << cell(3) << ']';
 }
 
 
-void MathExIntInset::writeNormal(NormalStream & os) const
+void MathExIntInset::metrics(MetricsInfo &, Dimension &) const
 {
-       //os << "[int " << scripts_ << ' ' << core_ << ' ' << diff_ << ']'
+       lyxerr << "should not happen" << endl;
 }
 
 
-void MathExIntInset::metrics(MathMetricsInfo const &) const
+void MathExIntInset::draw(PainterInfo &, int, int) 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::maple(MapleStream & os) const
+{
+       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::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
 {
-       //os << name_.c_str() << '(' << cell(0) << ')';
+       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
 {
-       //os << name_.c_str() << '(' << cell(0) << ')';
+       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;
 }