]> git.lyx.org Git - lyx.git/blob - src/mathed/math_fracinset.C
lyxfont.h no longer #includes LColor.h.
[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::max;
23 using std::auto_ptr;
24
25
26 MathFracInset::MathFracInset(bool atop)
27         : atop_(atop)
28 {}
29
30
31 auto_ptr<InsetBase> MathFracInset::clone() const
32 {
33         return auto_ptr<InsetBase>(new MathFracInset(*this));
34 }
35
36
37 MathFracInset * MathFracInset::asFracInset()
38 {
39         return atop_ ? 0 : this;
40 }
41
42
43 MathFracInset const * MathFracInset::asFracInset() const
44 {
45         return atop_ ? 0 : this;
46 }
47
48
49 void MathFracInset::metrics(MetricsInfo & mi, Dimension & dim) const
50 {
51         FracChanger dummy(mi.base);
52         cell(0).metrics(mi);
53         cell(1).metrics(mi);
54         dim_.wid = max(cell(0).width(), cell(1).width()) + 2;
55         dim_.asc = cell(0).height() + 2 + 5;
56         dim_.des = cell(1).height() + 2 - 5;
57         dim = dim_;
58 }
59
60
61 void MathFracInset::draw(PainterInfo & pi, int x, int y) const
62 {
63         int m = x + dim_.wid / 2;
64         FracChanger dummy(pi.base);
65         cell(0).draw(pi, m - cell(0).width() / 2, y - cell(0).descent() - 2 - 5);
66         cell(1).draw(pi, m - cell(1).width() / 2, y + cell(1).ascent()  + 2 - 5);
67         if (!atop_)
68                 pi.pain.line(x + 1, y - 5, x + dim_.wid - 2, y - 5, LColor::math);
69 }
70
71
72 void MathFracInset::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
73 {
74         cell(0).metricsT(mi, dim);
75         cell(1).metricsT(mi, dim);
76         dim.wid = max(cell(0).width(), cell(1).width());
77         dim.asc = cell(0).height() + 1;
78         dim.des = cell(1).height();
79         //dim = dim_;
80 }
81
82
83 void MathFracInset::drawT(TextPainter & pain, int x, int y) const
84 {
85         int m = x + dim_.width() / 2;
86         cell(0).drawT(pain, m - cell(0).width() / 2, y - cell(0).descent() - 1);
87         cell(1).drawT(pain, m - cell(1).width() / 2, y + cell(1).ascent());
88         if (!atop_)
89                 pain.horizontalLine(x, y, dim_.width());
90 }
91
92
93 void MathFracInset::write(WriteStream & os) const
94 {
95         if (atop_)
96                 os << '{' << cell(0) << "\\atop " << cell(1) << '}';
97         else // it's \\frac
98                 MathNestInset::write(os);
99 }
100
101
102 string MathFracInset::name() const
103 {
104         return atop_ ? "atop" : "frac";
105 }
106
107
108 void MathFracInset::maple(MapleStream & os) const
109 {
110         os << '(' << cell(0) << ")/(" << cell(1) << ')';
111 }
112
113
114 void MathFracInset::mathematica(MathematicaStream & os) const
115 {
116         os << '(' << cell(0) << ")/(" << cell(1) << ')';
117 }
118
119
120 void MathFracInset::octave(OctaveStream & os) const
121 {
122         os << '(' << cell(0) << ")/(" << cell(1) << ')';
123 }
124
125
126 void MathFracInset::mathmlize(MathMLStream & os) const
127 {
128         os << MTag("mfrac") << cell(0) << cell(1) << ETag("mfrac");
129 }