]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_dotsinset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_dotsinset.h
index c13943d5ae0457039e39133514adc9feac4e0e8a..90cd39ade86ab74b25c5f58e170913184b25b3a4 100644 (file)
@@ -1,33 +1,39 @@
 // -*- 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
 
 #include "math_diminset.h"
-#include "LString.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+
+class latexkeys;
 
 /// The different kinds of ellipsis
 class MathDotsInset : public MathDimInset {
 public:
        ///
-       explicit MathDotsInset(string const &);
-       ///
-       MathInset * clone() const;
-       ///
-       void draw(Painter &, int x, int y) const;
+       explicit MathDotsInset(latexkeys const * l);
        ///
-       void write(MathWriteInfo & os) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void writeNormal(NormalStream &) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       std::string name() const;
 protected:
-       /// cache for the thing's heigth
+       /// cache for the thing's height
        mutable int dh_;
        ///
-       string const name_;
-};   
+       latexkeys const * key_;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+};
 #endif