]> 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 0e848087a3ddd241609c22cfc7247c8fc6dd19be..90cd39ade86ab74b25c5f58e170913184b25b3a4 100644 (file)
@@ -1,23 +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_inset.h"
+#include "math_diminset.h"
+
 
-///
-class MathDotsInset: public MathedInset {
+class latexkeys;
+
+/// The different kinds of ellipsis
+class MathDotsInset : public MathDimInset {
 public:
        ///
-       MathDotsInset(string const &, int, short st = LM_ST_TEXT);
-       ///
-       MathedInset * Clone();
+       explicit MathDotsInset(latexkeys const * l);
        ///
-       void draw(Painter &, int, int);
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void Write(std::ostream &, bool fragile);
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void Metrics();
+       std::string name() const;
 protected:
+       /// cache for the thing's height
+       mutable int dh_;
        ///
-       int dh, code;
-};   
+       latexkeys const * key_;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+};
 #endif