// -*- C++ -*- /** * \file InsetMathUnderset.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author André Pönitz * * Full author contact details are available in file CREDITS. */ #ifndef MATH_UNDERSETINSET_H #define MATH_UNDERSETINSET_H #include "InsetMathFrac.h" namespace lyx { /// Inset for underset class InsetMathUnderset : public InsetMathFracBase { public: /// explicit InsetMathUnderset(Buffer * buf) : InsetMathFracBase(buf) {} /// void metrics(MetricsInfo & mi, Dimension & dim) const override; /// void draw(PainterInfo & pi, int x, int y) const override; /// bool idxFirst(Cursor &) const override; /// bool idxLast(Cursor &) const override; /// void write(TeXMathStream & ws) const override; /// void normalize(NormalStream & ns) const override; /// void mathmlize(MathMLStream &) const override; /// void htmlize(HtmlStream &) const override; /// void validate(LaTeXFeatures & features) const override; /// InsetCode lyxCode() const override { return MATH_UNDERSET_CODE; } private: Inset * clone() const override; }; } // namespace lyx #endif