]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathStackrel.cpp
Put MathData on a diet: transfer dimension cache to BufferView' CoordCache along...
[lyx.git] / src / mathed / InsetMathStackrel.cpp
1 /**
2  * \file InsetMathStackrel.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 "InsetMathStackrel.h"
14 #include "MathData.h"
15 #include "MathStream.h"
16
17
18 namespace lyx {
19
20 InsetMathStackrel::InsetMathStackrel()
21 {}
22
23
24 Inset * InsetMathStackrel::clone() const
25 {
26         return new InsetMathStackrel(*this);
27 }
28
29
30 void InsetMathStackrel::metrics(MetricsInfo & mi, Dimension & dim) const
31 {
32         Dimension dim1;
33         cell(1).metrics(mi, dim1);
34         FracChanger dummy(mi.base);
35         Dimension dim0;
36         cell(0).metrics(mi, dim0);
37         dim.wid = std::max(dim0.width(), dim1.width()) + 4;
38         dim.asc = dim1.ascent() + dim0.height() + 4;
39         dim.des = dim1.descent();
40         metricsMarkers(dim);
41         // Cache the inset dimension. 
42         setDimCache(mi, dim);
43 }
44
45
46 void InsetMathStackrel::draw(PainterInfo & pi, int x, int y) const
47 {
48         Dimension const dim = dimension(*pi.base.bv);
49         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
50         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
51         int m  = x + dim.width() / 2;
52         int yo = y - dim1.ascent() - dim0.descent() - 1;
53         cell(1).draw(pi, m - dim1.width() / 2, y);
54         FracChanger dummy(pi.base);
55         cell(0).draw(pi, m - dim0.width() / 2, yo);
56         drawMarkers(pi, x, y);
57 }
58
59
60 void InsetMathStackrel::write(WriteStream & os) const
61 {
62         os << "\\stackrel{" << cell(0) << "}{" << cell(1) << '}';
63 }
64
65
66 void InsetMathStackrel::normalize(NormalStream & os) const
67 {
68         os << "[stackrel " << cell(0) << ' ' << cell(1) << ']';
69 }
70
71
72 } // namespace lyx