]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathBrace.cpp
Fix RTL inset painting.
[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 #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         dim_ = dim;
53 }
54
55
56 void InsetMathBrace::draw(PainterInfo & pi, int x, int y) const
57 {
58         Font font = pi.base.font;
59         font.setColor(Color::latex);
60         Dimension t = theFontMetrics(font).dimension('{');
61         pi.pain.text(x, y, '{', font);
62         cell(0).draw(pi, x + t.wid, y);
63         pi.pain.text(x + t.wid + cell(0).width(), y, '}', font);
64         drawMarkers(pi, x, y);
65 }
66
67
68 void InsetMathBrace::write(WriteStream & os) const
69 {
70         os << '{' << cell(0) << '}';
71 }
72
73
74 void InsetMathBrace::normalize(NormalStream & os) const
75 {
76         os << "[block " << cell(0) << ']';
77 }
78
79
80 void InsetMathBrace::maple(MapleStream & os) const
81 {
82         os << cell(0);
83 }
84
85
86 void InsetMathBrace::octave(OctaveStream & os) const
87 {
88         os << cell(0);
89 }
90
91
92 void InsetMathBrace::mathmlize(MathStream & os) const
93 {
94         os << MTag("mrow") << cell(0) << ETag("mrow");
95 }
96
97
98 void InsetMathBrace::mathematica(MathematicaStream & os) const
99 {
100         os << cell(0);
101 }
102
103
104 void InsetMathBrace::infoize(odocstream & os) const
105 {
106         os << "Nested Block: ";
107 }
108
109
110 } // namespace lyx