]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathDots.h
Introduce a return value for mathmlize(). We will need this to be able
[features.git] / src / mathed / InsetMathDots.h
index 424a0f738ad4cd3d652a5f7d9bab36d28d0a4278..4ba13351e907eff8b31f7a1418e3f83204e9efd7 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.
  */
@@ -12,7 +12,7 @@
 #ifndef MATH_DOTSINSET_H
 #define MATH_DOTSINSET_H
 
-#include "InsetMathDim.h"
+#include "InsetMath.h"
 
 
 namespace lyx {
@@ -20,7 +20,7 @@ namespace lyx {
 class latexkeys;
 
 /// The different kinds of ellipsis
-class InsetMathDots : public InsetMathDim {
+class InsetMathDots : public InsetMath {
 public:
        ///
        explicit InsetMathDots(latexkeys const * l);
@@ -30,13 +30,19 @@ public:
        void draw(PainterInfo & pi, int x, int y) const;
        ///
        docstring name() const;
+       /// request "external features"
+       void validate(LaTeXFeatures & features) const;
+       ///
+       InsetCode lyxCode() const { return MATH_DOTS_CODE; }
+       ///
+       docstring mathmlize(MathStream & os) const;
 protected:
        /// cache for the thing's height
        mutable int dh_;
        ///
        latexkeys const * key_;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
 };
 
 } // namespace lyx