]> git.lyx.org Git - lyx.git/blob - src/mathed/math_spaceinset.C
Jean-Marc's fix for wrong descent
[lyx.git] / src / mathed / math_spaceinset.C
1
2 #include "math_spaceinset.h"
3 #include "math_support.h"
4 #include "LColor.h"
5 #include "frontends/Painter.h"
6 #include "math_mathmlstream.h"
7 #include "LaTeXFeatures.h"
8 #include "debug.h"
9
10
11 char const * latex_mathspace[] = {
12         "!", "negmedspace", "negthickspace",  // negative space
13         ",", ":", ";", "quad", "qquad",       // positive space
14         "lyxnegspace", "lyxposspace"          // LyX special ("unvisible space")
15 };
16
17 int const nSpace = sizeof(latex_mathspace)/sizeof(char *);
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 < nSpace; ++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 = 8; break;
46                 case 2: dim_.w = 10; break;
47                 case 3: dim_.w = 6; break;
48                 case 4: dim_.w = 8; break;
49                 case 5: dim_.w = 10; break;
50                 case 6: dim_.w = 20; break;
51                 case 7: dim_.w = 40; break;
52                 case 8: dim_.w = -2; break;
53                 case 9: dim_.w =  2; break;
54                 default: dim_.w = 6;
55         }
56         dim_.a = 4;
57         dim_.d = 0;
58 }
59
60
61 void MathSpaceInset::draw(MathPainterInfo & pi, int x, int y) const
62 {
63
64 // Sadly, HP-UX CC can't handle that kind of initialization.
65 // XPoint p[4] = {{++x, y-3}, {x, y}, {x+width-2, y}, {x+width-2, y-3}};
66         if (space_ >= nSpace - 2)
67                 return;
68
69         int xp[4];
70         int yp[4];
71
72         xp[0] = ++x;              yp[0] = y - 3;
73         xp[1] = x;                yp[1] = y;
74         xp[2] = x + width() - 2;  yp[2] = y;
75         xp[3] = x + width() - 2;  yp[3] = y - 3;
76
77         pi.pain.lines(xp, yp, 4, (space_ < 3) ? LColor::latex : LColor::math);
78 }
79
80
81 void MathSpaceInset::incSpace()
82 {
83         space_ = (space_ + 1) % (nSpace - 2);
84 }
85
86 void MathSpaceInset::validate(LaTeXFeatures & features) const
87 {
88         if (space_ >= 0 && space_< nSpace) {
89                 if ((latex_mathspace[space_] == "negmedspace")
90                  || (latex_mathspace[space_] == "negthickspace"))
91                         features.require("amsmath");
92         }
93 }
94
95
96 void MathSpaceInset::maple(MapleStream & os) const
97 {
98         os << ' ';
99 }
100
101 void MathSpaceInset::mathematica(MathematicaStream & os) const
102 {
103         os << ' ';
104 }
105
106
107 void MathSpaceInset::octave(OctaveStream & os) const
108 {
109         os << ' ';
110 }
111
112
113 void MathSpaceInset::normalize(NormalStream & os) const
114 {
115         os << "[space " << int(space_) << "] ";
116 }
117
118
119 void MathSpaceInset::write(WriteStream & os) const
120 {
121         if (space_ >= 0 && space_ < nSpace) {
122                 os << '\\' << latex_mathspace[space_];
123                 os.pendingSpace(true);
124         }
125 }