]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSize.h
Improve the list of equations
[lyx.git] / src / mathed / InsetMathSize.h
index 280c9f039cf873e1c9528671f9c1834d613ffeca..446e398f1a6fb772111375a1ed3698afbca7dc49 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.
  */
 #define MATHSIZEINSET_H
 
 #include "InsetMathNest.h"
-#include "metricsinfo.h"
+#include "MetricsInfo.h"
+
+
+namespace lyx {
 
 
 class latexkeys;
@@ -22,7 +25,7 @@ class latexkeys;
 class InsetMathSize : public InsetMathNest {
 public:
        ///
-       explicit InsetMathSize(latexkeys const * l);
+       explicit InsetMathSize(Buffer * buf, latexkeys const * l);
        /// we write extra braces in any case...
        bool extraBraces() const { return true; }
        ///
@@ -35,13 +38,25 @@ public:
        ///
        void normalize(NormalStream &) const;
        ///
-       void infoize(std::ostream & os) const;
+       void infoize(odocstream & os) const;
+       ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
+       void validate(LaTeXFeatures &) const;
+       ///
+       InsetCode lyxCode() const { return MATH_SIZE_CODE; }
+
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
        ///
        latexkeys const * key_;
        ///
-       Styles const style_;
+       MathStyle const style_;
 };
 
+
+
+} // namespace lyx
 #endif