]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathStackrel.cpp
Fix horizontal lines in math arrays
[lyx.git] / src / mathed / InsetMathStackrel.cpp
1 /**
2  * \file InsetMathStackrel.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathStackrel.h"
14
15 #include "MathData.h"
16 #include "MathStream.h"
17
18 #include "Cursor.h"
19 #include "LaTeXFeatures.h"
20 #include "MetricsInfo.h"
21
22 using namespace std;
23
24 namespace lyx {
25
26 InsetMathStackrel::InsetMathStackrel(Buffer * buf, bool sub)
27         : InsetMathFracBase(buf, sub ? 3 : 2)
28 {}
29
30
31 Inset * InsetMathStackrel::clone() const
32 {
33         return new InsetMathStackrel(*this);
34 }
35
36
37 bool InsetMathStackrel::idxUpDown(Cursor & cur, bool up) const
38 {
39         if (up) {
40                 if (cur.idx() == 0)
41                         return false;
42         } else {
43                 if (cur.idx() + 1 ==  nargs())
44                         return false;
45         }
46         InsetMath::idx_type target = up ? cur.idx() - 1 : cur.idx() + 1;
47         if (cur.idx() == target)
48                 return false;
49         cur.idx() = target;
50         cur.pos() = cell(target).x2pos(&cur.bv(), cur.x_target());
51         return true;
52 }
53
54
55 void InsetMathStackrel::metrics(MetricsInfo & mi, Dimension & dim) const
56 {
57         Dimension dim1;
58         cell(1).metrics(mi, dim1);
59         Changer dummy = mi.base.changeFrac();
60         Dimension dim0;
61         cell(0).metrics(mi, dim0);
62         if (nargs() > 2) {
63                 Dimension dim2;
64                 cell(2).metrics(mi, dim2);
65                 dim.wid = max(max(dim0.width(), dim1.width()), dim2.width()) + 4;
66                 dim.asc = dim1.ascent() + dim0.height() + 4;
67                 dim.des = dim1.descent() + dim2.height() + dim2.descent() + 1;
68         } else {
69                 dim.wid = max(dim0.width(), dim1.width()) + 4;
70                 dim.asc = dim1.ascent() + dim0.height() + 4;
71                 dim.des = dim1.descent();
72         }
73         metricsMarkers(dim);
74 }
75
76
77 void InsetMathStackrel::draw(PainterInfo & pi, int x, int y) const
78 {
79         Dimension const dim = dimension(*pi.base.bv);
80         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
81         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
82         int m  = x + dim.width() / 2;
83         int yo = y - dim1.ascent() - dim0.descent() - 1;
84         cell(1).draw(pi, m - dim1.width() / 2, y);
85         Changer dummy = pi.base.changeFrac();
86         cell(0).draw(pi, m - dim0.width() / 2, yo);
87         if (nargs() > 2) {
88                 Dimension const & dim2 = cell(2).dimension(*pi.base.bv);
89                 int y2 = y + dim1.descent() + dim2.ascent() + 1;
90                 cell(2).draw(pi, m - dim2.width() / 2, y2);
91         }
92         drawMarkers(pi, x, y);
93 }
94
95
96 void InsetMathStackrel::write(WriteStream & os) const
97 {
98         MathEnsurer ensurer(os);
99         os << "\\stackrel";
100         if (nargs() > 2)
101                 os << '[' << cell(2) << ']';
102         os << '{' << cell(0) << "}{" << cell(1) << '}';
103 }
104
105
106 void InsetMathStackrel::normalize(NormalStream & os) const
107 {
108         os << "[stackrel " << cell(0) << ' ' << cell(1);
109         if (nargs() > 2)
110                 os << ' ' << cell(2);
111         os << ']';
112 }
113
114
115 void InsetMathStackrel::mathmlize(MathStream & ms) const
116 {
117         if (nargs() > 2)
118                 ms << "<munderover>" << cell(1) << cell(2) << cell(0) << "</munderover>";
119         else
120                 ms << "<mover accent='false'>" << cell(1) << cell(0) << "</mover>";
121 }
122
123
124 void InsetMathStackrel::htmlize(HtmlStream & os) const
125 {
126         if (nargs() > 2) {
127                 os << MTag("span", "class='underoverset'")
128                    << MTag("span", "class='top'") << cell(0) << ETag("span")
129                    << MTag("span") << cell(1) << ETag("span")
130                    << MTag("span", "class='bottom'") << cell(2) << ETag("span");
131         } else {
132                 // at the moment, this is exactly the same as overset
133                 os << MTag("span", "class='overset'")
134                    << MTag("span", "class='top'") << cell(0) << ETag("span")
135                    << MTag("span") << cell(1) << ETag("span");
136         }
137         os << ETag("span");
138 }
139
140
141 void InsetMathStackrel::validate(LaTeXFeatures & features) const
142 {
143         if (features.runparams().math_flavor == OutputParams::MathAsHTML) {
144                 if (nargs() > 2) {
145                         // FIXME: "vertical-align: middle" works only if the
146                         // height of sub and super script is approximately equal.
147                         features.addCSSSnippet(
148                                 "span.underoverset{display: inline-block; vertical-align: middle; text-align:center;}\n"
149                                 "span.underoverset span {display: block;}\n"
150                                 "span.bottom{font-size: 66%;}\n"
151                                 "span.top{font-size: 66%;}");
152                 } else {
153                         // from overset
154                         features.addCSSSnippet(
155                                 "span.overset{display: inline-block; vertical-align: bottom; text-align:center;}\n"
156                                 "span.overset span {display: block;}\n"
157                                 "span.top{font-size: 66%;}");
158                 }
159         }
160         if (nargs() > 2)
161                 features.require("stackrel");
162
163         InsetMathNest::validate(features);
164 }
165
166 } // namespace lyx