]> git.lyx.org Git - lyx.git/blob - src/mathed/math_braceinset.C
*** empty log message ***
[lyx.git] / src / mathed / math_braceinset.C
1 /**
2  * \file math_braceinset.C
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 "math_braceinset.h"
14 #include "math_data.h"
15 #include "math_mathmlstream.h"
16 #include "math_support.h"
17 #include "LColor.h"
18 #include "support/std_ostream.h"
19
20 using std::max;
21 using std::auto_ptr;
22
23
24 MathBraceInset::MathBraceInset()
25         : MathNestInset(1)
26 {}
27
28
29 MathBraceInset::MathBraceInset(MathArray const & ar)
30         : MathNestInset(1)
31 {
32         cell(0) = ar;
33 }
34
35
36 auto_ptr<InsetBase> MathBraceInset::clone() const
37 {
38         return auto_ptr<InsetBase>(new MathBraceInset(*this));
39 }
40
41
42 void MathBraceInset::metrics(MetricsInfo & mi, Dimension & dim) const
43 {
44         cell(0).metrics(mi);
45         Dimension t;
46         mathed_char_dim(mi.base.font, '{', t);
47         dim.wid = t.wid;
48         dim.asc = max(cell(0).ascent(), t.asc);
49         dim.des = max(cell(0).descent(), t.des);
50         dim.wid = cell(0).width() + 2 * dim.wid;
51         metricsMarkers(dim);
52         dim_ = dim;
53 }
54
55
56 void MathBraceInset::draw(PainterInfo & pi, int x, int y) const
57 {
58         LyXFont font = pi.base.font;
59         font.setColor(LColor::latex);
60         drawChar(pi, font, x, y, '{');
61         cell(0).draw(pi, x + wid_, y);
62         drawChar(pi, font, x + dim_.width() - wid_, y, '}');
63         drawMarkers(pi, x, y);
64 }
65
66
67 void MathBraceInset::write(WriteStream & os) const
68 {
69         os << '{' << cell(0) << '}';
70 }
71
72
73 void MathBraceInset::normalize(NormalStream & os) const
74 {
75         os << "[block " << cell(0) << ']';
76 }
77
78
79 void MathBraceInset::maple(MapleStream & os) const
80 {
81         os << cell(0);
82 }
83
84
85 void MathBraceInset::octave(OctaveStream & os) const
86 {
87         os << cell(0);
88 }
89
90
91 void MathBraceInset::mathmlize(MathMLStream & os) const
92 {
93         os << MTag("mrow") << cell(0) << ETag("mrow");
94 }
95
96
97 void MathBraceInset::mathematica(MathematicaStream & os) const
98 {
99         os << cell(0);
100 }
101
102
103 void MathBraceInset::infoize(std::ostream & os) const
104 {
105         os << "Nested Block: ";
106 }