]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathOverset.C
Fix comment according to Enricos explanation
[lyx.git] / src / mathed / InsetMathOverset.C
1 /**
2  * \file InsetMathOverset.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 "InsetMathOverset.h"
14 #include "MathData.h"
15 #include "MathStream.h"
16
17 #include "cursor.h"
18 #include "LaTeXFeatures.h"
19
20
21 namespace lyx {
22
23 using std::max;
24 using std::auto_ptr;
25
26
27 auto_ptr<InsetBase> InsetMathOverset::doClone() const
28 {
29         return auto_ptr<InsetBase>(new InsetMathOverset(*this));
30 }
31
32
33 void InsetMathOverset::metrics(MetricsInfo & mi, Dimension & dim) const
34 {
35         cell(1).metrics(mi);
36         FracChanger dummy(mi.base);
37         cell(0).metrics(mi);
38         dim.wid = max(cell(0).width(), cell(1).width()) + 4;
39         dim.asc = cell(1).ascent() + cell(0).height() + 4;
40         dim.des = cell(1).descent();
41         metricsMarkers(dim);
42         dim_ = dim;
43 }
44
45
46 void InsetMathOverset::draw(PainterInfo & pi, int x, int y) const
47 {
48         int m  = x + width() / 2;
49         int yo = y - cell(1).ascent() + cell(0).descent() - 1;
50         cell(1).draw(pi, m - cell(1).width() / 2, y);
51         FracChanger dummy(pi.base);
52         cell(0).draw(pi, m - cell(0).width() / 2, yo);
53         drawMarkers(pi, x, y);
54 }
55
56
57 bool InsetMathOverset::idxFirst(LCursor & cur) const
58 {
59         cur.idx() = 1;
60         cur.pos() = 0;
61         return true;
62 }
63
64
65 bool InsetMathOverset::idxLast(LCursor & cur) const
66 {
67         cur.idx() = 1;
68         cur.pos() = cur.lastpos();
69         return true;
70 }
71
72
73 void InsetMathOverset::write(WriteStream & os) const
74 {
75         os << "\\overset{" << cell(0) << "}{" << cell(1) << '}';
76 }
77
78
79 void InsetMathOverset::normalize(NormalStream & os) const
80 {
81         os << "[overset " << cell(0) << ' ' << cell(1) << ']';
82 }
83
84
85 void InsetMathOverset::validate(LaTeXFeatures & features) const
86 {
87         features.require("amsmath");
88         InsetMathNest::validate(features);
89 }
90
91
92 } // namespace lyx