X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSize.h;h=446e398f1a6fb772111375a1ed3698afbca7dc49;hb=cdc847fd304019a19425a0d5d9d42a556a937097;hp=f749e3ef5c0d909f342a2511a5a62659af76c237;hpb=e24bf64c68102691fc76081de9fb57926b482726;p=lyx.git diff --git a/src/mathed/InsetMathSize.h b/src/mathed/InsetMathSize.h index f749e3ef5c..446e398f1a 100644 --- a/src/mathed/InsetMathSize.h +++ b/src/mathed/InsetMathSize.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 MATHSIZEINSET_H #include "InsetMathNest.h" -#include "metricsinfo.h" +#include "MetricsInfo.h" namespace lyx { @@ -25,11 +25,11 @@ class latexkeys; class InsetMathSize : public InsetMathNest { public: /// - explicit InsetMathSize(latexkeys const * l); + explicit InsetMathSize(Buffer * buf, latexkeys const * l); /// we write extra braces in any case... bool extraBraces() const { return true; } /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo &, int x, int y) const; @@ -39,12 +39,21 @@ public: void normalize(NormalStream &) const; /// void infoize(odocstream & os) const; + /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// + void validate(LaTeXFeatures &) const; + /// + InsetCode lyxCode() const { return MATH_SIZE_CODE; } + private: - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; /// latexkeys const * key_; /// - Styles const style_; + MathStyle const style_; };