]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDecoration.h
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / mathed / InsetMathDecoration.h
index 70e5c011c38675b463d2cb92b0c0cf80a5193023..9e58065ee3f8c76bcc9106edf2c495c317f97088 100644 (file)
@@ -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;
        ///
@@ -34,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<InsetBase> 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_;