X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathUnderset.h;h=565f0d5cc4fc4ce20fc695b5bb89b6b278fe50f8;hb=21c92c8a129b5f3ff56de33bf2941a25967cffbb;hp=d0a8492439bac9540c6cafd1ee1ad7c6ced2e251;hpb=ed7a07e0078d7350554e71d215b6520ce78587a3;p=lyx.git diff --git a/src/mathed/InsetMathUnderset.h b/src/mathed/InsetMathUnderset.h index d0a8492439..565f0d5cc4 100644 --- a/src/mathed/InsetMathUnderset.h +++ b/src/mathed/InsetMathUnderset.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. */ @@ -21,22 +21,29 @@ namespace lyx { /// Inset for underset class InsetMathUnderset : public InsetMathFracBase { public: + /// + explicit InsetMathUnderset(Buffer * buf) : InsetMathFracBase(buf) {} /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// - bool idxFirst(Cursor & cur) const; - /// - bool idxLast(Cursor & cur) const; + bool idxFirst(Cursor &) const; /// - bool idxUpDown(Cursor & cur, bool up) const; + bool idxLast(Cursor &) const; /// void write(WriteStream & ws) const; /// void normalize(NormalStream & ns) const; /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// void validate(LaTeXFeatures & features) const; + /// + InsetCode lyxCode() const { return MATH_UNDERSET_CODE; } + private: virtual Inset * clone() const; };