]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathStackrel.cpp
Account for old versions of Pygments
[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 MathClass InsetMathStackrel::mathClass() const
56 {
57         // FIXME: update this when/if \stackbin is supported
58         return MC_REL;
59 }
60
61
62 void InsetMathStackrel::metrics(MetricsInfo & mi, Dimension & dim) const
63 {
64         Changer dummy2 = mi.base.changeEnsureMath();
65         Dimension dim1;
66         cell(1).metrics(mi, dim1);
67         Changer dummy = mi.base.changeFrac();
68         Dimension dim0;
69         cell(0).metrics(mi, dim0);
70         if (nargs() > 2) {
71                 Dimension dim2;
72                 cell(2).metrics(mi, dim2);
73                 dim.wid = max(max(dim0.width(), dim1.width()), dim2.width()) + 4;
74                 dim.asc = dim1.ascent() + dim0.height() + 4;
75                 dim.des = dim1.descent() + dim2.height() + dim2.descent() + 1;
76         } else {
77                 dim.wid = max(dim0.width(), dim1.width()) + 4;
78                 dim.asc = dim1.ascent() + dim0.height() + 4;
79                 dim.des = dim1.descent();
80         }
81 }
82
83
84 void InsetMathStackrel::draw(PainterInfo & pi, int x, int y) const
85 {
86         Changer dummy2 = pi.base.changeEnsureMath();
87         Dimension const dim = dimension(*pi.base.bv);
88         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
89         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
90         int m  = x + dim.width() / 2;
91         int yo = y - dim1.ascent() - dim0.descent() - 1;
92         cell(1).draw(pi, m - dim1.width() / 2, y);
93         Changer dummy = pi.base.changeFrac();
94         cell(0).draw(pi, m - dim0.width() / 2, yo);
95         if (nargs() > 2) {
96                 Dimension const & dim2 = cell(2).dimension(*pi.base.bv);
97                 int y2 = y + dim1.descent() + dim2.ascent() + 1;
98                 cell(2).draw(pi, m - dim2.width() / 2, y2);
99         }
100 }
101
102
103 void InsetMathStackrel::write(WriteStream & os) const
104 {
105         MathEnsurer ensurer(os);
106         os << "\\stackrel";
107         if (nargs() > 2)
108                 os << '[' << cell(2) << ']';
109         os << '{' << cell(0) << "}{" << cell(1) << '}';
110 }
111
112
113 void InsetMathStackrel::normalize(NormalStream & os) const
114 {
115         os << "[stackrel " << cell(0) << ' ' << cell(1);
116         if (nargs() > 2)
117                 os << ' ' << cell(2);
118         os << ']';
119 }
120
121
122 void InsetMathStackrel::mathmlize(MathStream & ms) const
123 {
124         if (nargs() > 2)
125                 ms << "<munderover>" << cell(1) << cell(2) << cell(0) << "</munderover>";
126         else
127                 ms << "<mover accent='false'>" << cell(1) << cell(0) << "</mover>";
128 }
129
130
131 void InsetMathStackrel::htmlize(HtmlStream & os) const
132 {
133         if (nargs() > 2) {
134                 os << MTag("span", "class='underoverset'")
135                    << MTag("span", "class='top'") << cell(0) << ETag("span")
136                    << MTag("span") << cell(1) << ETag("span")
137                    << MTag("span", "class='bottom'") << cell(2) << ETag("span");
138         } else {
139                 // at the moment, this is exactly the same as overset
140                 os << MTag("span", "class='overset'")
141                    << MTag("span", "class='top'") << cell(0) << ETag("span")
142                    << MTag("span") << cell(1) << ETag("span");
143         }
144         os << ETag("span");
145 }
146
147
148 void InsetMathStackrel::validate(LaTeXFeatures & features) const
149 {
150         if (features.runparams().math_flavor == OutputParams::MathAsHTML) {
151                 if (nargs() > 2) {
152                         // FIXME: "vertical-align: middle" works only if the
153                         // height of sub and super script is approximately equal.
154                         features.addCSSSnippet(
155                                 "span.underoverset{display: inline-block; vertical-align: middle; text-align:center;}\n"
156                                 "span.underoverset span {display: block;}\n"
157                                 "span.bottom{font-size: 66%;}\n"
158                                 "span.top{font-size: 66%;}");
159                 } else {
160                         // from overset
161                         features.addCSSSnippet(
162                                 "span.overset{display: inline-block; vertical-align: bottom; text-align:center;}\n"
163                                 "span.overset span {display: block;}\n"
164                                 "span.top{font-size: 66%;}");
165                 }
166         }
167         if (nargs() > 2)
168                 features.require("stackrel");
169
170         InsetMathNest::validate(features);
171 }
172
173 } // namespace lyx