]> 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 d7832cd28dbe9d59571ece8a1c79fdfa1feb6a80..45692fe81c2f21ebabeb9a0415f4ad2a395e9dfd 100644 (file)
 class MathExFuncInset : public MathNestInset {
 public:
        ///
-       MathExFuncInset(string const & name, MathArray const & arg);
+       explicit MathExFuncInset(string const & name);
+       ///
+       MathExFuncInset(string const & name, MathArray const & ar);
        ///
        MathInset * clone() const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MathMetricsInfo & 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 mathematicize(MathematicaStream &) const;
+       ///
        void mathmlize(MathMLStream &) const;
        ///
        void octavize(OctaveStream &) const;
@@ -32,7 +36,5 @@ public:
 private:
        ///
        string const name_;
-       ///
-       mutable MathMetricsInfo mi_;
 };
 #endif