]> git.lyx.org Git - lyx.git/blob - src/mathed/math_braceinset.C
support for wasy symbols
[lyx.git] / src / mathed / math_braceinset.C
1 #include <config.h>
2
3 #ifdef __GNUG__
4 #pragma implementation
5 #endif
6
7 #include "math_braceinset.h"
8 #include "math_parser.h"
9 #include "math_support.h"
10 #include "math_mathmlstream.h"
11
12
13 using std::max;
14
15
16 MathBraceInset::MathBraceInset()
17         : MathNestInset(1)
18 {}
19
20
21 MathInset * MathBraceInset::clone() const
22 {
23         return new MathBraceInset(*this);
24 }
25
26
27 void MathBraceInset::metrics(MathMetricsInfo & mi) const
28 {
29         xcell(0).metrics(mi);
30         int a, d;
31         mathed_char_dim(mi.base.font, '{', a, d, wid_);
32         ascent_  = max(xcell(0).ascent(), a);
33         descent_ = max(xcell(0).descent(), a);
34         width_   = xcell(0).width() + 2 * wid_;
35 }
36
37
38 void MathBraceInset::draw(MathPainterInfo & pi, int x, int y) const
39 {
40         LyXFont font = pi.base.font;
41         font.setColor(LColor::latex);
42         drawChar(pi, font, x, y, '{');
43         xcell(0).draw(pi, x + wid_, y);
44         drawChar(pi, font, x + width_ - wid_, y, '}');
45 }
46
47
48 void MathBraceInset::write(WriteStream & os) const
49 {
50         os << '{' << cell(0) << '}';
51 }
52
53
54 void MathBraceInset::normalize(NormalStream & os) const
55 {
56         os << "[block " << cell(0) << ']';
57 }
58
59
60 void MathBraceInset::infoize(std::ostream & os) const
61 {
62         os << "Nested Block: ";
63 }