A bit more re-organization.
[lyx.git] / src / mathed / InsetMathBrace.cpp
blobc1034c9aeeb1f662e48478c7b8fb7e25493b6d2e
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.
6 * \author André Pönitz
8 * Full author contact details are available in file CREDITS.
9 */
11 #include <config.h>
13 #include "InsetMathBrace.h"
15 #include "MathData.h"
16 #include "MathStream.h"
17 #include "MathSupport.h"
18 #include "MetricsInfo.h"
20 #include "frontends/FontMetrics.h"
21 #include "frontends/Painter.h"
23 #include <ostream>
25 using namespace std;
27 namespace lyx {
29 InsetMathBrace::InsetMathBrace(Buffer * buf)
30 : InsetMathNest(buf, 1)
34 InsetMathBrace::InsetMathBrace(MathData const & ar)
35 : InsetMathNest(const_cast<Buffer *>(ar.buffer()), 1)
37 cell(0) = ar;
41 Inset * InsetMathBrace::clone() const
43 return new InsetMathBrace(*this);
47 void InsetMathBrace::metrics(MetricsInfo & mi, Dimension & dim) const
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);
59 void InsetMathBrace::draw(PainterInfo & pi, int x, int y) const
61 FontInfo font = pi.base.font;
62 font.setShape(UP_SHAPE);
63 font.setColor(Color_latex);
64 Dimension t = theFontMetrics(font).dimension('{');
65 pi.pain.text(x, y, '{', font);
66 cell(0).draw(pi, x + t.wid, y);
67 Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
68 pi.pain.text(x + t.wid + dim0.width(), y, '}', font);
69 drawMarkers(pi, x, y);
73 void InsetMathBrace::write(WriteStream & os) const
75 os << '{' << cell(0) << '}';
79 void InsetMathBrace::normalize(NormalStream & os) const
81 os << "[block " << cell(0) << ']';
85 void InsetMathBrace::maple(MapleStream & os) const
87 os << cell(0);
91 void InsetMathBrace::octave(OctaveStream & os) const
93 os << cell(0);
97 void InsetMathBrace::mathmlize(MathStream & os) const
99 os << MTag("mrow") << cell(0) << ETag("mrow");
103 void InsetMathBrace::mathematica(MathematicaStream & os) const
105 os << cell(0);
109 void InsetMathBrace::infoize(odocstream & os) const
111 os << "Nested Block: ";
115 } // namespace lyx