]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBig.h
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / mathed / InsetMathBig.h
index 5c2bbb80f5d6d92ec8d36fec623e1365166caab9..e42582c53124d72a968c4bcb38af920d32362a77 100644 (file)
@@ -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.
  */
 #ifndef MATH_BIGINSET_H
 #define MATH_BIGINSET_H
 
-#include "InsetMathDim.h"
-
-#include <string>
+#include "InsetMath.h"
 
 
 namespace lyx {
 
 /// Inset for \\bigl & Co.
-class InsetMathBig : public InsetMathDim {
+class InsetMathBig : public InsetMath {
 public:
        ///
        InsetMathBig(docstring const & name, docstring const & delim);
        ///
        docstring name() const;
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -35,12 +33,19 @@ public:
        ///
        void normalize(NormalStream & os) const;
        ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
        void infoize2(odocstream & os) const;
        ///
        static bool isBigInsetDelim(docstring const &);
-
+       ///
+       InsetCode lyxCode() const { return MATH_BIG_CODE; }
+       ///
+       void validate(LaTeXFeatures &) const;
 private:
-       virtual std::auto_ptr<Inset> doClone() const;
+       virtual Inset * clone() const;
        ///
        size_type size() const;
        ///