]> git.lyx.org Git - lyx.git/blob - src/mathed/math_oversetinset.C
Strip out redundant #includes
[lyx.git] / src / mathed / math_oversetinset.C
1 /**
2  * \file math_oversetinset.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_oversetinset.h"
14 #include "math_mathmlstream.h"
15
16
17 using std::max;
18 using std::auto_ptr;
19
20
21 auto_ptr<InsetBase> MathOversetInset::clone() const
22 {
23         return auto_ptr<InsetBase>(new MathOversetInset(*this));
24 }
25
26
27 void MathOversetInset::metrics(MetricsInfo & mi, Dimension & dim) const
28 {
29         cell(1).metrics(mi);
30         FracChanger dummy(mi.base);
31         cell(0).metrics(mi);
32         dim_.wid = max(cell(0).width(), cell(1).width()) + 4;
33         dim_.asc = cell(1).ascent() + cell(0).height() + 4;
34         dim_.des = cell(1).descent();
35         dim = dim_;
36 }
37
38
39 void MathOversetInset::draw(PainterInfo & pi, int x, int y) const
40 {
41         int m  = x + pi.width / 2;
42         int yo = y - cell(1).ascent() + cell(0).descent() - 1;
43         cell(1).draw(pi, m - cell(1).width() / 2, y);
44         FracChanger dummy(pi.base);
45         cell(0).draw(pi, m - cell(0).width() / 2, yo);
46 }
47
48
49 bool MathOversetInset::idxFirst(idx_type & i, pos_type & pos) const
50 {
51         i = 1;
52         pos = 0;
53         return true;
54 }
55
56
57 bool MathOversetInset::idxLast(idx_type & i, pos_type & pos) const
58 {
59         i = 1;
60         pos = cell(i).size();
61         return true;
62 }
63
64
65 void MathOversetInset::write(WriteStream & os) const
66 {
67         os << "\\overset{" << cell(0) << "}{" << cell(1) << '}';
68 }
69
70
71 void MathOversetInset::normalize(NormalStream & os) const
72 {
73         os << "[overset " << cell(0) << ' ' << cell(1) << ']';
74 }