]> git.lyx.org Git - lyx.git/blob - src/mathed/math_fracinset.C
Fix event loop to no longer eat CPU
[lyx.git] / src / mathed / math_fracinset.C
1 /**
2  * \file math_fracinset.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "math_fracinset.h"
15 #include "math_data.h"
16 #include "math_mathmlstream.h"
17 #include "textpainter.h"
18 #include "LColor.h"
19 #include "frontends/Painter.h"
20
21
22 using std::string;
23 using std::max;
24 using std::auto_ptr;
25
26
27 MathFracInset::MathFracInset(bool atop)
28         : atop_(atop)
29 {}
30
31
32 auto_ptr<InsetBase> MathFracInset::doClone() const
33 {
34         return auto_ptr<InsetBase>(new MathFracInset(*this));
35 }
36
37
38 MathFracInset * MathFracInset::asFracInset()
39 {
40         return atop_ ? 0 : this;
41 }
42
43
44 MathFracInset const * MathFracInset::asFracInset() const
45 {
46         return atop_ ? 0 : this;
47 }
48
49
50 void MathFracInset::metrics(MetricsInfo & mi, Dimension & dim) const
51 {
52         FracChanger dummy(mi.base);
53         cell(0).metrics(mi);
54         cell(1).metrics(mi);
55         dim.wid = max(cell(0).width(), cell(1).width()) + 2;
56         dim.asc = cell(0).height() + 2 + 5;
57         dim.des = cell(1).height() + 2 - 5;
58         metricsMarkers(dim);
59         dim_ = dim;
60 }
61
62
63 void MathFracInset::draw(PainterInfo & pi, int x, int y) const
64 {
65         setPosCache(pi, x, y);
66         int m = x + dim_.wid / 2;
67         FracChanger dummy(pi.base);
68         cell(0).draw(pi, m - cell(0).width() / 2, y - cell(0).descent() - 2 - 5);
69         cell(1).draw(pi, m - cell(1).width() / 2, y + cell(1).ascent()  + 2 - 5);
70         if (!atop_)
71                 pi.pain.line(x + 1, y - 5, x + dim_.wid - 2, y - 5, LColor::math);
72         drawMarkers(pi, x, y);
73 }
74
75
76 void MathFracInset::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
77 {
78         cell(0).metricsT(mi, dim);
79         cell(1).metricsT(mi, dim);
80         dim.wid = max(cell(0).width(), cell(1).width());
81         dim.asc = cell(0).height() + 1;
82         dim.des = cell(1).height();
83         //dim = dim_;
84 }
85
86
87 void MathFracInset::drawT(TextPainter & pain, int x, int y) const
88 {
89         int m = x + dim_.width() / 2;
90         cell(0).drawT(pain, m - cell(0).width() / 2, y - cell(0).descent() - 1);
91         cell(1).drawT(pain, m - cell(1).width() / 2, y + cell(1).ascent());
92         if (!atop_)
93                 pain.horizontalLine(x, y, dim_.width());
94 }
95
96
97 void MathFracInset::write(WriteStream & os) const
98 {
99         if (atop_)
100                 os << '{' << cell(0) << "\\atop " << cell(1) << '}';
101         else // it's \\frac
102                 MathNestInset::write(os);
103 }
104
105
106 string MathFracInset::name() const
107 {
108         return atop_ ? "atop" : "frac";
109 }
110
111
112 void MathFracInset::maple(MapleStream & os) const
113 {
114         os << '(' << cell(0) << ")/(" << cell(1) << ')';
115 }
116
117
118 void MathFracInset::mathematica(MathematicaStream & os) const
119 {
120         os << '(' << cell(0) << ")/(" << cell(1) << ')';
121 }
122
123
124 void MathFracInset::octave(OctaveStream & os) const
125 {
126         os << '(' << cell(0) << ")/(" << cell(1) << ')';
127 }
128
129
130 void MathFracInset::mathmlize(MathMLStream & os) const
131 {
132         os << MTag("mfrac") << cell(0) << cell(1) << ETag("mfrac");
133 }