]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exintinset.h
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_exintinset.h
index 0d1214e9855b54f756b5c4ed43c56cb5b02d9b8a..67bebf3b2d0b39d72fd11c116bee643ee7fb683d 100644 (file)
@@ -2,37 +2,39 @@
 #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
+// \int_l^u f(x) dx in one block (as opposed to 'f','(','x',')' or 'f','x')
+// or \sum, \prod...  for interfacing external programs
 
-#include "math_scriptinset.h"
+#include "math_nestinset.h"
 
-class MathExIntInset : public MathInset {
+// cell(0) is stuff before the 'd', cell(1) the stuff after
+class MathExIntInset : public MathNestInset {
 public:
        ///
-       MathExIntInset(MathScriptInset const &, MathArray const &, MathArray const &);
+       explicit MathExIntInset(string const & name_);
        ///
        MathInset * clone() const;
        ///
+       void symbol(string const &);
+       ///
        void metrics(MathMetricsInfo const & st) const;
        ///
        void draw(Painter &, int x, int y) const;
+
        ///
-       void write(MathWriteInfo & os) const;
-       ///
-       void writeNormal(NormalStream &) const;
+       void normalize(NormalStream &) const;
        ///
        void maplize(MapleStream &) const;
        ///
        void mathmlize(MathMLStream &) const;
-private:
        ///
-       MathAtom int_;
-       ///
-       MathScriptInset scripts_;
+       void write(WriteStream & os) const;
+private:
        ///
-       MathArray core_;
+       bool hasScripts() const;
+
        ///
-       MathArray diff_;
+       string symbol_;
 };
+
 #endif