X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathUnderset.h;h=239a576aebb06d6d4b909a4553dbe4119621e8b9;hb=3e79e0f5f00add2c735d372f4734cf31f64b7e5f;hp=0c261e3af688137c0ecdc724363d5a1b1239a81e;hpb=ed858d73e57ce7aa89e38c1bc4d799362edb0227;p=lyx.git diff --git a/src/mathed/InsetMathUnderset.h b/src/mathed/InsetMathUnderset.h index 0c261e3af6..239a576aeb 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. */ @@ -13,7 +13,7 @@ #define MATH_UNDERSETINSET_H -#include "InsetMathFracBase.h" +#include "InsetMathFrac.h" namespace lyx { @@ -22,7 +22,9 @@ namespace lyx { class InsetMathUnderset : public InsetMathFracBase { public: /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + InsetMathUnderset(Buffer * buf) : InsetMathFracBase(buf) {} + /// + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -36,7 +38,14 @@ public: /// 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; };