X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathStackrel.h;h=d6ac81518231201cc2608ea2c681b63d82e1f0d0;hb=02e82157ec583c3900e359de86be79fac6512387;hp=834cc0c4e8f5dc6fa56ff387b3929e8992b028e3;hpb=ed7a07e0078d7350554e71d215b6520ce78587a3;p=lyx.git diff --git a/src/mathed/InsetMathStackrel.h b/src/mathed/InsetMathStackrel.h index 834cc0c4e8..d6ac815182 100644 --- a/src/mathed/InsetMathStackrel.h +++ b/src/mathed/InsetMathStackrel.h @@ -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. */ @@ -17,30 +17,34 @@ 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 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