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