X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathDecoration.h;h=9e58065ee3f8c76bcc9106edf2c495c317f97088;hb=cdc847fd304019a19425a0d5d9d42a556a937097;hp=d0c7195216d676dbf1e9cc3e587d9cab1d386f34;hpb=237c132c1e6fc720b87f2fea6deb18a8395cbe0a;p=lyx.git diff --git a/src/mathed/InsetMathDecoration.h b/src/mathed/InsetMathDecoration.h index d0c7195216..9e58065ee3 100644 --- a/src/mathed/InsetMathDecoration.h +++ b/src/mathed/InsetMathDecoration.h @@ -5,7 +5,7 @@ * Licence details can be found in the file COPYING. * * \author Alejandro Aguilar Sierra - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -24,7 +24,9 @@ class latexkeys; class InsetMathDecoration : public InsetMathNest { public: /// - explicit InsetMathDecoration(latexkeys const * key); + explicit InsetMathDecoration(Buffer * buf, latexkeys const * key); + /// + mode_type currentMode() const; /// void draw(PainterInfo &, int x, int y) const; /// @@ -39,7 +41,12 @@ public: bool isScriptable() const; /// void validate(LaTeXFeatures & features) const; - + /// + InsetCode lyxCode() const { return MATH_DECORATION_CODE; } + /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; private: virtual Inset * clone() const; /// @@ -48,8 +55,6 @@ private: bool protect() const; /// is it a wide decoration? bool wide() const; - /// does this need AMS - bool ams() const; /// latexkeys const * key_;