]> git.lyx.org Git - lyx.git/blob - src/mathed/math_dotsinset.h
fix typo that put too many include paths for most people
[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 #include "LString.h"
7
8 #ifdef __GNUG__
9 #pragma interface
10 #endif
11
12 /// The different kinds of ellipsis
13 class MathDotsInset : public MathDimInset {
14 public:
15         ///
16         explicit MathDotsInset(string const &);
17         ///
18         MathInset * clone() const;
19         ///
20         void draw(Painter &, int x, int y) const;
21         ///
22         void write(WriteStream & os) const;
23         ///
24         void normalize(NormalStream &) const;
25         ///
26         void metrics(MathMetricsInfo const & st) const;
27 protected:
28         /// cache for the thing's heigth
29         mutable int dh_;
30         ///
31         string const name_;
32 };
33 #endif