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