]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBig.h
Improve the list of equations
[lyx.git] / src / mathed / InsetMathBig.h
index 6ffa83fd18c0256d8c55f807963312403f3d63da..996a30a39d27ecf3946553ad3c88446c3e424ae5 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(std::string const & name, std::string const & delim);
+       InsetMathBig(docstring const & name, docstring const & delim);
        ///
-       std::string name() const;
+       docstring name() const;
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -35,21 +33,30 @@ public:
        ///
        void normalize(NormalStream & os) const;
        ///
-       void infoize2(std::ostream & os) const;
+       void mathmlize(MathStream &) const;
        ///
-       static bool isBigInsetDelim(std::string 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<InsetBase> doClone() const;
+       virtual Inset * clone() const;
        ///
        size_type size() const;
        ///
        double increase() const;
+       /// name with leading backslash stripped
+       docstring word() const;
 
        /// \\bigl or what?
-       std::string const name_;
+       docstring const name_;
        /// ( or [ or \\Vert...
-       std::string const delim_;
+       docstring const delim_;
 };