]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_dotsinset.h
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_dotsinset.h
index 0e848087a3ddd241609c22cfc7247c8fc6dd19be..87869a842167373507adde050e88f22eb6f302c4 100644 (file)
@@ -1,23 +1,33 @@
+// -*- C++ -*-
 #ifndef MATH_DOTSINSET_H
 #define MATH_DOTSINSET_H
 
-#include "math_inset.h"
+#include "math_diminset.h"
+#include "LString.h"
 
-///
-class MathDotsInset: public MathedInset {
+#ifdef __GNUG__
+#pragma interface
+#endif
+
+/// The different kinds of ellipsis
+class MathDotsInset : public MathDimInset {
 public:
        ///
-       MathDotsInset(string const &, int, short st = LM_ST_TEXT);
+       explicit MathDotsInset(string const &);
+       ///
+       MathInset * clone() const;
        ///
-       MathedInset * Clone();
+       void draw(Painter &, int x, int y) const;
        ///
-       void draw(Painter &, int, int);
+       void write(WriteStream & os) const;
        ///
-       void Write(std::ostream &, bool fragile);
+       void normalize(NormalStream &) const;
        ///
-       void Metrics();
+       void metrics(MathMetricsInfo const & st) const;
 protected:
+       /// cache for the thing's heigth
+       mutable int dh_;
        ///
-       int dh, code;
+       string const name_;
 };   
 #endif