]> git.lyx.org Git - features.git/blob - src/mathed/InsetMathBrace.cpp
fc5058972330b93573284a8c6dca34d0f83573d6
[features.git] / src / mathed / InsetMathBrace.cpp
1 /**
2  * \file InsetMathBrace.cpp
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 "InsetMathBrace.h"
14 #include "MathData.h"
15 #include "MathStream.h"
16 #include "MathSupport.h"
17 #include "Color.h"
18
19 #include "frontends/FontMetrics.h"
20 #include "frontends/Painter.h"
21
22 #include "support/std_ostream.h"
23
24 namespace lyx {
25
26 InsetMathBrace::InsetMathBrace()
27         : InsetMathNest(1)
28 {}
29
30
31 InsetMathBrace::InsetMathBrace(MathData const & ar)
32         : InsetMathNest(1)
33 {
34         cell(0) = ar;
35 }
36
37
38 Inset * InsetMathBrace::clone() const
39 {
40         return new InsetMathBrace(*this);
41 }
42
43
44 void InsetMathBrace::metrics(MetricsInfo & mi, Dimension & dim) const
45 {
46         cell(0).metrics(mi);
47         Dimension t = theFontMetrics(mi.base.font).dimension('{');
48         dim.asc = std::max(cell(0).ascent(), t.asc);
49         dim.des = std::max(cell(0).descent(), t.des);
50         dim.wid = cell(0).width() + 2 * t.wid;
51         metricsMarkers(dim);
52         // Cache the inset dimension. 
53         setDimCache(mi, dim);
54 }
55
56
57 void InsetMathBrace::draw(PainterInfo & pi, int x, int y) const
58 {
59         Font font = pi.base.font;
60         font.setColor(Color::latex);
61         Dimension t = theFontMetrics(font).dimension('{');
62         pi.pain.text(x, y, '{', font);
63         cell(0).draw(pi, x + t.wid, y);
64         pi.pain.text(x + t.wid + cell(0).width(), y, '}', font);
65         drawMarkers(pi, x, y);
66 }
67
68
69 void InsetMathBrace::write(WriteStream & os) const
70 {
71         os << '{' << cell(0) << '}';
72 }
73
74
75 void InsetMathBrace::normalize(NormalStream & os) const
76 {
77         os << "[block " << cell(0) << ']';
78 }
79
80
81 void InsetMathBrace::maple(MapleStream & os) const
82 {
83         os << cell(0);
84 }
85
86
87 void InsetMathBrace::octave(OctaveStream & os) const
88 {
89         os << cell(0);
90 }
91
92
93 void InsetMathBrace::mathmlize(MathStream & os) const
94 {
95         os << MTag("mrow") << cell(0) << ETag("mrow");
96 }
97
98
99 void InsetMathBrace::mathematica(MathematicaStream & os) const
100 {
101         os << cell(0);
102 }
103
104
105 void InsetMathBrace::infoize(odocstream & os) const
106 {
107         os << "Nested Block: ";
108 }
109
110
111 } // namespace lyx