]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathBrace.cpp
* first tries to make the math macro template more verbose
[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         // Cache the inset dimension. 
57         setDimCache(mi, dim);
58 }
59
60
61 void InsetMathBrace::draw(PainterInfo & pi, int x, int y) const
62 {
63         FontInfo font = pi.base.font;
64         font.setColor(Color_latex);
65         Dimension t = theFontMetrics(font).dimension('{');
66         pi.pain.text(x, y, '{', font);
67         cell(0).draw(pi, x + t.wid, y);
68         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
69         pi.pain.text(x + t.wid + dim0.width(), y, '}', font);
70         drawMarkers(pi, x, y);
71 }
72
73
74 void InsetMathBrace::write(WriteStream & os) const
75 {
76         os << '{' << cell(0) << '}';
77 }
78
79
80 void InsetMathBrace::normalize(NormalStream & os) const
81 {
82         os << "[block " << cell(0) << ']';
83 }
84
85
86 void InsetMathBrace::maple(MapleStream & os) const
87 {
88         os << cell(0);
89 }
90
91
92 void InsetMathBrace::octave(OctaveStream & os) const
93 {
94         os << cell(0);
95 }
96
97
98 void InsetMathBrace::mathmlize(MathStream & os) const
99 {
100         os << MTag("mrow") << cell(0) << ETag("mrow");
101 }
102
103
104 void InsetMathBrace::mathematica(MathematicaStream & os) const
105 {
106         os << cell(0);
107 }
108
109
110 void InsetMathBrace::infoize(odocstream & os) const
111 {
112         os << "Nested Block: ";
113 }
114
115
116 } // namespace lyx