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