]> git.lyx.org Git - lyx.git/blob - src/mathed/math_dotsinset.C
47a79a7d4a7d51d926b96df70fe0f50e019d41df
[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)
13         : name_(name)
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) const
24 {
25         mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, name_);
26         char const c = name_[0];
27         if (c == 'v' || c == 'd')
28                 ++x;
29         if (c != 'v')
30                 --y;
31         mathed_draw_deco(pain, x + 2, y - dh_, width_ - 2, ascent_, name_);
32 }
33
34
35 void MathDotsInset::metrics(MathMetricsInfo const & mi) const
36 {
37         mathed_char_dim(LM_TC_VAR, mi, 'M', ascent_, descent_, width_);
38         switch (name_[0]) {
39                 case 'l': dh_ = 0; break;
40                 case 'c': dh_ = ascent_ / 2; break;
41                 case 'v': width_ /= 2;
42                 case 'd': dh_ = ascent_; break;
43         }
44
45
46
47 void MathDotsInset::write(MathWriteInfo & os) const
48 {
49         os << '\\' << name_ << ' ';
50 }
51
52
53 void MathDotsInset::writeNormal(ostream & os) const
54 {
55         os << "[" << name_ << "] ";
56 }