]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracinset.h
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_fracinset.h
index 9e0031c57be58665bdbfaf0bc23810bd4153fab2..386a95eda72dc5993725b5903e50cea769c0b7a3 100644 (file)
 class MathFracInset : public MathFracbaseInset {
 public:
        ///
-       MathFracInset();
+       explicit MathFracInset(bool atop = false);
        ///
        MathInset * clone() const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void metrics(MathMetricsInfo const & st) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void draw(Painter &, int x, int y) const;
+       ///
+       MathFracInset * asFracInset();
+
        ///
-       void metrics(MathStyles st) const;
+       void write(WriteStream & os) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void normalize(NormalStream &) const;
+       ///
+       void maplize(MapleStream &) const;
+       ///
+       void mathmlize(MathMLStream &) const;
+public:
+       ///
+       const bool atop_;
 };
 
 #endif