]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_dotsinset.h
Fix.
[lyx.git] / src / mathed / math_dotsinset.h
index 87869a842167373507adde050e88f22eb6f302c4..967435d93e6993f3fde8039441f72a14511eb004 100644 (file)
@@ -3,31 +3,27 @@
 #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 &);
+       explicit MathDotsInset(latexkeys const * l);
        ///
        MathInset * clone() const;
        ///
-       void draw(Painter &, int x, int y) const;
-       ///
-       void write(WriteStream & os) const;
+       void metrics(MathMetricsInfo & mi) const;
        ///
-       void normalize(NormalStream &) const;
+       void draw(MathPainterInfo & pi, int x, int y) const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       string name() const;
 protected:
        /// cache for the thing's heigth
        mutable int dh_;
        ///
-       string const name_;
-};   
+       latexkeys const * key_;
+};
 #endif