X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSize.h;h=446e398f1a6fb772111375a1ed3698afbca7dc49;hb=c8230ab0d0a919530c43c29395f4d9961498bf15;hp=855b3185598ff9e678d075cbce81f25faee895ba;hpb=0facb603fefec1ecc927f77bcf6228ca1f035444;p=lyx.git diff --git a/src/mathed/InsetMathSize.h b/src/mathed/InsetMathSize.h index 855b318559..446e398f1a 100644 --- a/src/mathed/InsetMathSize.h +++ b/src/mathed/InsetMathSize.h @@ -25,7 +25,7 @@ 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; } /// @@ -40,6 +40,12 @@ public: /// 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: @@ -47,7 +53,7 @@ private: /// latexkeys const * key_; /// - Styles const style_; + MathStyle const style_; };