]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDots.h
Reduce horizontal spacing for simple inline equations
[lyx.git] / src / mathed / InsetMathDots.h
index af3d26bd97bdac7bc579fcc308f28f810b95766b..8a84a22219076e7ab8af84d11d296683bdba1e67 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.
  */
@@ -25,18 +25,26 @@ public:
        ///
        explicit InsetMathDots(latexkeys const * l);
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        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; }
+       ///
+       void mathmlize(MathStream & os) const;
+       ///
+       void htmlize(HtmlStream & os) const;
 protected:
        /// cache for the thing's height
        mutable int dh_;
        ///
        latexkeys const * key_;
 private:
-       virtual std::auto_ptr<Inset> doClone() const;
+       virtual Inset * clone() const;
 };
 
 } // namespace lyx