]> git.lyx.org Git - lyx.git/blob - src/mathed/math_dotsinset.C
cosmetics
[lyx.git] / src / mathed / math_dotsinset.C
1 #ifdef __GNUG__
2 #pragma implementation
3 #endif
4
5 #include "math_dotsinset.h"
6 #include "mathed/support.h"
7 #include "support/LOstream.h"
8
9 using std::ostream;
10
11
12 MathDotsInset::MathDotsInset(string const & name, int id)
13         : MathInset(0, name), code_(id)
14 {}
15
16
17 MathInset * MathDotsInset::clone() const
18 {
19         return new MathDotsInset(*this);
20 }     
21
22
23 void MathDotsInset::draw(Painter & pain, int x, int y)
24 {
25         mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, code_);
26         if (code_ == LM_vdots || code_ == LM_ddots)
27                 ++x;
28         if (code_ != LM_vdots)
29                 --y;
30         mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, code_);
31 }
32
33
34 void MathDotsInset::metrics(MathStyles st)
35 {
36         size(st);
37         mathed_char_dim(LM_TC_VAR, size(), 'M', ascent_, descent_, width_);
38         switch (code_) {
39                 case LM_ldots: dh_ = 0; break;
40                 case LM_cdots: dh_ = ascent_/2; break;
41                 case LM_vdots: width_ /= 2;
42                 case LM_ddots: dh_ = ascent_; break;
43         }
44
45
46
47 void MathDotsInset::write(ostream & os, bool /* fragile */) const
48 {
49         os << '\\' << name() << ' ';
50 }
51
52
53 void MathDotsInset::writeNormal(ostream & os) const
54 {
55         os << "[" << name() << "] ";
56 }