]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exfuncinset.h
Geof Piroux's patch for Mathematica support
[lyx.git] / src / mathed / math_exfuncinset.h
index 0c71ad57ecd6b268e5a1647eba9ef8b02f52282a..45692fe81c2f21ebabeb9a0415f4ad2a395e9dfd 100644 (file)
@@ -12,22 +12,29 @@ public:
        ///
        explicit MathExFuncInset(string const & name);
        ///
+       MathExFuncInset(string const & name, MathArray const & ar);
+       ///
        MathInset * clone() const;
        ///
-       void write(WriteStream & os) const;
+       void metrics(MathMetricsInfo & st) const;
+       ///
+       void draw(MathPainterInfo &, int x, int y) const;
+
        ///
        void normalize(NormalStream &) const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void maplize(MapleStream &) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void mathematicize(MathematicaStream &) const;
+       ///
+       void mathmlize(MathMLStream &) const;
        ///
        void octavize(OctaveStream &) const;
+       ///
+       void write(WriteStream & os) const;
 
 private:
        ///
        string const name_;
-       ///
-       mutable MathMetricsInfo mi_;
 };
 #endif