X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathDecoration.h;h=9e58065ee3f8c76bcc9106edf2c495c317f97088;hb=02e82157ec583c3900e359de86be79fac6512387;hp=0834e155778315327c68ef93b35e506f0c839cb1;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathDecoration.h b/src/mathed/InsetMathDecoration.h index 0834e15577..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. */ @@ -16,13 +16,17 @@ #include "InsetMathNest.h" +namespace lyx { + class latexkeys; /// Decorations and accents over (below) a math object 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; /// @@ -32,22 +36,25 @@ public: /// void normalize(NormalStream & os) const; /// - void infoize(std::ostream & os) const; + void infoize(odocstream & os) const; /// 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 std::auto_ptr doClone() const; + virtual Inset * clone() const; /// bool upper() const; /// bool protect() const; /// is it a wide decoration? bool wide() const; - /// does this need AMS - bool ams() const; /// latexkeys const * key_; @@ -58,4 +65,7 @@ private: /// width for non-wide deco mutable int dw_; }; + +} // namespace lyx + #endif