]> git.lyx.org Git - lyx.git/blob - src/mathed/math_undersetinset.C
Standardise the header blurb in mathed.
[lyx.git] / src / mathed / math_undersetinset.C
1 /**
2  * \file math_undersetinset.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_undersetinset.h"
14 #include "math_mathmlstream.h"
15 #include "math_support.h"
16
17
18 using std::max;
19 using std::auto_ptr;
20
21
22 MathUndersetInset::MathUndersetInset()
23 {}
24
25
26 auto_ptr<InsetBase> MathUndersetInset::clone() const
27 {
28         return auto_ptr<InsetBase>(new MathUndersetInset(*this));
29 }
30
31
32 void MathUndersetInset::metrics(MetricsInfo & mi, Dimension & dim) const
33 {
34         cell(1).metrics(mi);
35         FracChanger dummy(mi.base);
36         cell(0).metrics(mi);
37         dim_.wid = max(cell(0).width(), cell(1).width()) + 4;
38         dim_.asc = cell(1).ascent();
39         dim_.des = cell(1).descent() + cell(0).height() + 4;
40         dim = dim_;
41 }
42
43
44 void MathUndersetInset::draw(PainterInfo & pi, int x, int y) const
45 {
46         int m  = x + pi.width / 2;
47         int yo = y + cell(1).descent() + cell(0).ascent() + 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 }
52
53
54 void MathUndersetInset::write(WriteStream & os) const
55 {
56         os << "\\underset{" << cell(0) << "}{" << cell(1) << '}';
57 }
58
59
60 void MathUndersetInset::normalize(NormalStream & os) const
61 {
62         os << "[underset " << cell(0) << ' ' << cell(1) << ']';
63 }