]> git.lyx.org Git - lyx.git/blob - src/mathed/math_stackrelinset.C
Fix math cursor positioning bug
[lyx.git] / src / mathed / math_stackrelinset.C
1 /**
2  * \file math_stackrelinset.C
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 "math_stackrelinset.h"
14 #include "math_data.h"
15 #include "math_mathmlstream.h"
16
17
18 using std::max;
19 using std::auto_ptr;
20
21
22 MathStackrelInset::MathStackrelInset()
23 {}
24
25
26 auto_ptr<InsetBase> MathStackrelInset::doClone() const
27 {
28         return auto_ptr<InsetBase>(new MathStackrelInset(*this));
29 }
30
31
32 void MathStackrelInset::metrics(MetricsInfo & mi, Dimension & dim) const
33 {
34         cell(1).metrics(mi);
35         FracChanger dummy(mi.base);
36         cell(0).metrics(mi);
37         dim.wid = max(cell(0).width(), cell(1).width()) + 4;
38         dim.asc = cell(1).ascent() + cell(0).height() + 4;
39         dim.des = cell(1).descent();
40         metricsMarkers(dim);
41         dim_ = dim;
42 }
43
44
45 void MathStackrelInset::draw(PainterInfo & pi, int x, int y) const
46 {
47         int m  = x + dim_.width() / 2;
48         int yo = y - cell(1).ascent() - cell(0).descent() - 1;
49         cell(1).draw(pi, m - cell(1).width() / 2, y);
50         FracChanger dummy(pi.base);
51         cell(0).draw(pi, m - cell(0).width() / 2, yo);
52         drawMarkers(pi, x, y);
53 }
54
55
56 void MathStackrelInset::write(WriteStream & os) const
57 {
58         os << "\\stackrel{" << cell(0) << "}{" << cell(1) << '}';
59 }
60
61
62 void MathStackrelInset::normalize(NormalStream & os) const
63 {
64         os << "[stackrel " << cell(0) << ' ' << cell(1) << ']';
65 }