]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathStackrel.h
Fix #11827
[lyx.git] / src / mathed / InsetMathStackrel.h
index e9537b4580482fa4b6075ff080c5f7239d3dba0e..d6ac81518231201cc2608ea2c681b63d82e1f0d0 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
 #ifndef MATH_STACKRELINSET_H
 #define MATH_STACKRELINSET_H
 
-#include "InsetMathFracBase.h"
+#include "InsetMathFrac.h"
 
 
 namespace lyx {
 
-
-/** Stackrel objects
- *  \author André Pönitz
- *
- * Full author contact details are available in file CREDITS.
- */
 class InsetMathStackrel : public InsetMathFracBase {
 public:
        ///
-       InsetMathStackrel();
+       InsetMathStackrel(Buffer * buf, bool sub);
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       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 std::auto_ptr<Inset> doClone() const;
+       virtual Inset * clone() const;
 };
 
-
-
 } // namespace lyx
 #endif