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