]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exintinset.h
split inset -> inset + updatableinset
[lyx.git] / src / mathed / math_exintinset.h
index 8e14e1c7a9b5f8a56a3f11d8ce434167e342fff2..71aefb460780ae9460b3a16fe4de1fc78962b586 100644 (file)
@@ -2,48 +2,44 @@
 #ifndef MATH_EXINTINSET_H
 #define MATH_EXINTINSET_H
 
-// /\int_l^u f(x) dxin one block (as opposed to 'f','(','x',')' or 'f','x')
-// for interfacing external programs
 
-#include "math_scriptinset.h"
+// \int_l^u f(x) dx in one block (as opposed to 'f','(','x',')' or 'f','x')
+// or \sum, \prod...  for interfacing external programs
 
-class MathExIntInset : public MathInset {
+#include "math_nestinset.h"
+
+// cell(0) is stuff before the 'd', cell(1) the stuff after
+class MathExIntInset : public MathNestInset {
 public:
        ///
-       MathExIntInset();
+       explicit MathExIntInset(string const & name_);
        ///
        MathInset * clone() const;
        ///
-       void differential(MathArray const &);
-       ///
-       void core(MathArray const &);
+       void symbol(string const &);
        ///
-       void scripts(MathAtom const &);
+       void metrics(MathMetricsInfo & st) const;
        ///
-       void symbol(MathAtom const &);
-       ///
-       bool hasScripts() const;
-       ///
-       void metrics(MathMetricsInfo const & st) const;
-       ///
-       void draw(Painter &, int x, int y) const;
+       void draw(MathPainterInfo &, int x, int y) const;
 
        ///
        void normalize(NormalStream &) const;
        ///
-       void maplize(MapleStream &) const;
+       void maxima(MaximaStream &) const;
+       ///
+       void maple(MapleStream &) const;
+       ///
+       void mathematica(MathematicaStream &) const;
        ///
        void mathmlize(MathMLStream &) const;
        ///
        void write(WriteStream & os) const;
 private:
        ///
-       MathAtom int_;
-       ///
-       MathAtom scripts_;
-       ///
-       MathArray core_;
+       bool hasScripts() const;
+
        ///
-       MathArray diff_;
+       string symbol_;
 };
+
 #endif