]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDots.h
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / mathed / InsetMathDots.h
index 77057d5a37a7610e44eecba50b0f4888e1dd96b3..af3d26bd97bdac7bc579fcc308f28f810b95766b 100644 (file)
 #ifndef MATH_DOTSINSET_H
 #define MATH_DOTSINSET_H
 
-#include "InsetMathDim.h"
+#include "InsetMath.h"
 
 
+namespace lyx {
+
 class latexkeys;
 
 /// The different kinds of ellipsis
-class InsetMathDots : public InsetMathDim {
+class InsetMathDots : public InsetMath {
 public:
        ///
        explicit InsetMathDots(latexkeys const * l);
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       bool metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       std::string name() const;
+       docstring name() const;
 protected:
        /// cache for the thing's height
        mutable int dh_;
        ///
        latexkeys const * key_;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
 };
+
+} // namespace lyx
+
 #endif