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