]> git.lyx.org Git - lyx.git/blob - src/mathed/math_spaceinset.C
replace (ascent, descent, width) triples by a structure 'dimension'
[lyx.git] / src / mathed / math_spaceinset.C
1 #ifdef __GNUG__
2 #pragma implementation
3 #endif
4
5 #include "math_spaceinset.h"
6 #include "math_support.h"
7 #include "LColor.h"
8 #include "frontends/Painter.h"
9 #include "math_mathmlstream.h"
10
11
12
13 char const * latex_mathspace[] = {
14         "!", ",", ";", ":", "quad", "qquad", "lyxnegspace", "lyxposspace"
15 };
16
17
18
19
20 MathSpaceInset::MathSpaceInset(int sp)
21         : space_(sp)
22 {}
23
24
25 MathSpaceInset::MathSpaceInset(string const & name)
26         : space_(1)
27 {
28         for (int i = 0; i < 8; ++i) 
29                 if (latex_mathspace[i] == name) 
30                         space_ = i;
31 }
32
33
34
35 MathInset * MathSpaceInset::clone() const
36 {
37         return new MathSpaceInset(*this);
38 }
39
40
41 void MathSpaceInset::metrics(MathMetricsInfo &) const
42 {
43         switch (space_) {
44                 case 0: dim_.w = 6; break;
45                 case 1: dim_.w = 6; break;
46                 case 2: dim_.w = 8; break;
47                 case 3: dim_.w = 10; break;
48                 case 4: dim_.w = 20; break;
49                 case 5: dim_.w = 40; break;
50                 case 6: dim_.w = -2; break;
51                 case 7: dim_.w =  2; break;
52                 default: dim_.w = 6; break;
53         }
54         dim_.a  = 4;
55         dim_.d = 0;
56 }
57
58
59 void MathSpaceInset::draw(MathPainterInfo & pain, int x, int y) const
60 {
61
62 // Sadly, HP-UX CC can't handle that kind of initialization.
63 // XPoint p[4] = {{++x, y-3}, {x, y}, {x+width-2, y}, {x+width-2, y-3}};
64         if (space_ >= 6)
65                 return;
66
67         int xp[4];
68         int yp[4];
69
70         xp[0] = ++x;              yp[0] = y - 3;
71         xp[1] = x;                    yp[1] = y;
72         xp[2] = x + width() - 2;  yp[2] = y;
73         xp[3] = x + width() - 2;  yp[3] = y - 3;
74
75         pain.pain.lines(xp, yp, 4, space_ ? LColor::latex : LColor::math);
76 }
77
78
79 void MathSpaceInset::incSpace()
80 {
81         space_ = (space_ + 1) % 6;
82 }
83
84
85 void MathSpaceInset::maplize(MapleStream & os) const
86 {
87         os << ' ';
88 }
89
90 void MathSpaceInset::mathematicize(MathematicaStream & os) const
91 {
92         os << ' ';
93 }
94
95
96 void MathSpaceInset::octavize(OctaveStream & os) const
97 {
98         os << ' ';
99 }
100
101
102 void MathSpaceInset::normalize(NormalStream & os) const
103 {
104         os << "[space " << int(space_) << ' ' << latex_mathspace[space_] << "] ";
105 }
106
107
108 void MathSpaceInset::write(WriteStream & os) const
109 {
110         if (space_ >= 0 && space_ < 8)
111                 os << '\\' << latex_mathspace[space_] << ' ';
112 }