]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_funcinset.h
oh well
[lyx.git] / src / mathed / math_funcinset.h
index b1468fc37dbdc793efb574a18d40a876eea65505..9a92c96af6890d5474938448bb74617afef653da 100644 (file)
@@ -23,23 +23,28 @@ public:
        ///
        void draw(Painter &, int x, int y) const;
        ///
-       void write(MathWriteInfo &) const;
-       ///
-       void writeNormal(std::ostream &) const;
-       ///
        string const & name() const;
+       /// identifies FuncInsets
+       MathFuncInset * asFuncInset() { return this; }
        ///
        void setName(string const &);
        ///
+       bool match(MathInset * p) const;
+
+       ///
+       void normalize(NormalStream &) const;
+       ///
        void maplize(MapleStream &) const;
        ///
        void mathmlize(MathMLStream &) const;
        ///
        void octavize(OctaveStream &) const;
+       ///
+       void write(WriteStream &) const;
 private:
        ///
        string name_;
        ///
-       mutable MathMetricsInfo mi_;
+       mutable LyXFont font_;
 };
 #endif