]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_dotsinset.h
the DocIterator stuff
[lyx.git] / src / mathed / math_dotsinset.h
index 967435d93e6993f3fde8039441f72a14511eb004..1177507bfc3d99af57ca724d03df65ee5a273b48 100644 (file)
@@ -1,4 +1,14 @@
 // -*- C++ -*-
+/**
+ * \file math_dotsinset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_DOTSINSET_H
 #define MATH_DOTSINSET_H
 
@@ -13,15 +23,15 @@ public:
        ///
        explicit MathDotsInset(latexkeys const * l);
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void metrics(MathMetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void draw(MathPainterInfo & pi, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       string name() const;
+       std::string name() const;
 protected:
-       /// cache for the thing's heigth
+       /// cache for the thing's height
        mutable int dh_;
        ///
        latexkeys const * key_;