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