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