]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathOverset.cpp
* Inset and derivatives: insetName() -> name()
[lyx.git] / src / mathed / InsetMathOverset.cpp
1 /**
2  * \file InsetMathOverset.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 "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<Inset> InsetMathOverset::doClone() const
28 {
29         return auto_ptr<Inset>(new InsetMathOverset(*this));
30 }
31
32
33 bool 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         if (dim_ == dim)
43                 return false;
44         dim_ = dim;
45         return true;
46 }
47
48
49 void InsetMathOverset::draw(PainterInfo & pi, int x, int y) const
50 {
51         int m  = x + width() / 2;
52         int yo = y - cell(1).ascent() + cell(0).descent() - 1;
53         cell(1).draw(pi, m - cell(1).width() / 2, y);
54         FracChanger dummy(pi.base);
55         cell(0).draw(pi, m - cell(0).width() / 2, yo);
56         drawMarkers(pi, x, y);
57 }
58
59
60 bool InsetMathOverset::idxFirst(Cursor & cur) const
61 {
62         cur.idx() = 1;
63         cur.pos() = 0;
64         return true;
65 }
66
67
68 bool InsetMathOverset::idxLast(Cursor & cur) const
69 {
70         cur.idx() = 1;
71         cur.pos() = cur.lastpos();
72         return true;
73 }
74
75
76 void InsetMathOverset::write(WriteStream & os) const
77 {
78         os << "\\overset{" << cell(0) << "}{" << cell(1) << '}';
79 }
80
81
82 void InsetMathOverset::normalize(NormalStream & os) const
83 {
84         os << "[overset " << cell(0) << ' ' << cell(1) << ']';
85 }
86
87
88 void InsetMathOverset::validate(LaTeXFeatures & features) const
89 {
90         features.require("amsmath");
91         InsetMathNest::validate(features);
92 }
93
94
95 } // namespace lyx