X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathDots.h;h=8a84a22219076e7ab8af84d11d296683bdba1e67;hb=9296344b9a26191a2092d175a51e357ecc35145d;hp=d92303b1b233d906daaf56bb8ae17587e8d11dda;hpb=237c132c1e6fc720b87f2fea6deb18a8395cbe0a;p=lyx.git diff --git a/src/mathed/InsetMathDots.h b/src/mathed/InsetMathDots.h index d92303b1b2..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. */ @@ -27,11 +27,17 @@ public: /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// - Dimension const dimension(BufferView const &) const { return dim_; }; - /// void draw(PainterInfo & pi, int x, int y) 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_; @@ -39,8 +45,6 @@ protected: latexkeys const * key_; private: virtual Inset * clone() const; - /// - mutable Dimension dim_; }; } // namespace lyx