]> git.lyx.org Git - lyx.git/blob - src/mathed/math_braceinset.C
the DocIterator stuff
[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         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 * wid_;
51         dim = dim_;
52 }
53
54
55 void MathBraceInset::draw(PainterInfo & pi, int x, int y) const
56 {
57         LyXFont font = pi.base.font;
58         font.setColor(LColor::latex);
59         drawChar(pi, font, x, y, '{');
60         cell(0).draw(pi, x + wid_, y);
61         drawChar(pi, font, x + dim_.width() - wid_, y, '}');
62 }
63
64
65 void MathBraceInset::write(WriteStream & os) const
66 {
67         os << '{' << cell(0) << '}';
68 }
69
70
71 void MathBraceInset::normalize(NormalStream & os) const
72 {
73         os << "[block " << cell(0) << ']';
74 }
75
76
77 void MathBraceInset::maple(MapleStream & os) const
78 {
79         os << cell(0);
80 }
81
82
83 void MathBraceInset::octave(OctaveStream & os) const
84 {
85         os << cell(0);
86 }
87
88
89 void MathBraceInset::mathmlize(MathMLStream & os) const
90 {
91         os << MTag("mrow") << cell(0) << ETag("mrow");
92 }
93
94
95 void MathBraceInset::mathematica(MathematicaStream & os) const
96 {
97         os << cell(0);
98 }
99
100
101 void MathBraceInset::infoize(std::ostream & os) const
102 {
103         os << "Nested Block: ";
104 }