X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathDots.h;h=8a84a22219076e7ab8af84d11d296683bdba1e67;hb=2de30c62f8d671a8c8d4d52a6a7310e2c5ca84de;hp=77057d5a37a7610e44eecba50b0f4888e1dd96b3;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathDots.h b/src/mathed/InsetMathDots.h index 77057d5a37..8a84a22219 100644 --- a/src/mathed/InsetMathDots.h +++ b/src/mathed/InsetMathDots.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. */ @@ -12,13 +12,15 @@ #ifndef MATH_DOTSINSET_H #define MATH_DOTSINSET_H -#include "InsetMathDim.h" +#include "InsetMath.h" +namespace lyx { + class latexkeys; /// The different kinds of ellipsis -class InsetMathDots : public InsetMathDim { +class InsetMathDots : public InsetMath { public: /// explicit InsetMathDots(latexkeys const * l); @@ -27,13 +29,24 @@ public: /// void draw(PainterInfo & pi, int x, int y) const; /// - std::string name() const; + docstring name() const; + /// request "external features" + void validate(LaTeXFeatures & features) const; + /// + InsetCode lyxCode() const { return MATH_DOTS_CODE; } + /// + void mathmlize(MathStream & os) const; + /// + void htmlize(HtmlStream & os) const; protected: /// cache for the thing's height mutable int dh_; /// latexkeys const * key_; private: - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; }; + +} // namespace lyx + #endif