]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathStackrel.h
Get rid of Inset::setPosCache
[lyx.git] / src / mathed / InsetMathStackrel.h
index 87397f3bbfed60b12ddd843873636c9adb7196e0..d6ac81518231201cc2608ea2c681b63d82e1f0d0 100644 (file)
 
 namespace lyx {
 
-
-/** Stackrel objects
- *  \author André Pönitz
- *
- * Full author contact details are available in file CREDITS.
- */
 class InsetMathStackrel : public InsetMathFracBase {
 public:
        ///
-       InsetMathStackrel(Buffer * buf);
+       InsetMathStackrel(Buffer * buf, bool sub);
+       ///
+       bool idxUpDown(Cursor &, bool up) const;
+       ///
+       MathClass mathClass() const;
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
-
        ///
        void write(WriteStream & os) const;
        ///
        void normalize(NormalStream &) const;
        ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
+       void validate(LaTeXFeatures &) const;
+       ///
        InsetCode lyxCode() const { return MATH_STACKREL_CODE; }
 
 private:
        virtual Inset * clone() const;
 };
 
-
-
 } // namespace lyx
 #endif