]> git.lyx.org Git - features.git/blob - src/mathed/InsetMathOverset.cpp
82b80d7d438234e943b3d5fadbe0c536f420fa46
[features.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         // Cache the inset dimension. 
39         setDimCache(mi, dim);
40 }
41
42
43 void InsetMathOverset::draw(PainterInfo & pi, int x, int y) const
44 {
45         Dimension const dim = dimension(*pi.base.bv);
46         int m  = x + dim.wid / 2;
47         int yo = y - cell(1).ascent() - cell(0).descent() - 1;
48         cell(1).draw(pi, m - cell(1).width() / 2, y);
49         FracChanger dummy(pi.base);
50         cell(0).draw(pi, m - cell(0).width() / 2, yo);
51         drawMarkers(pi, x, y);
52 }
53
54
55 bool InsetMathOverset::idxFirst(Cursor & cur) const
56 {
57         cur.idx() = 1;
58         cur.pos() = 0;
59         return true;
60 }
61
62
63 bool InsetMathOverset::idxLast(Cursor & cur) const
64 {
65         cur.idx() = 1;
66         cur.pos() = cur.lastpos();
67         return true;
68 }
69
70
71 void InsetMathOverset::write(WriteStream & os) const
72 {
73         os << "\\overset{" << cell(0) << "}{" << cell(1) << '}';
74 }
75
76
77 void InsetMathOverset::normalize(NormalStream & os) const
78 {
79         os << "[overset " << cell(0) << ' ' << cell(1) << ']';
80 }
81
82
83 void InsetMathOverset::validate(LaTeXFeatures & features) const
84 {
85         features.require("amsmath");
86         InsetMathNest::validate(features);
87 }
88
89
90 } // namespace lyx