]> git.lyx.org Git - lyx.git/blob - src/mathed/math_dotsinset.h
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_dotsinset.h
1 // -*- C++ -*-
2 #ifndef MATH_DOTSINSET_H
3 #define MATH_DOTSINSET_H
4
5 #include "math_diminset.h"
6
7
8 class latexkeys;
9
10 /// The different kinds of ellipsis
11 class MathDotsInset : public MathDimInset {
12 public:
13         ///
14         explicit MathDotsInset(latexkeys const * l);
15         ///
16         MathInset * clone() const;
17         ///
18         void metrics(MathMetricsInfo & mi) const;
19         ///
20         void draw(MathPainterInfo & pi, int x, int y) const;
21         ///
22         string name() const;
23 protected:
24         /// cache for the thing's heigth
25         mutable int dh_;
26         ///
27         latexkeys const * key_;
28 };
29 #endif