]> git.lyx.org Git - lyx.git/blob - src/mathed/math_boxedinset.C
float2string #4 (Spacing)
[lyx.git] / src / mathed / math_boxedinset.C
1 /**
2  * \file math_boxedinset.C
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 "math_boxedinset.h"
14 #include "math_data.h"
15 #include "math_mathmlstream.h"
16 #include "math_parser.h"
17 #include "math_streamstr.h"
18 #include "LaTeXFeatures.h"
19 #include "LColor.h"
20
21 #include "support/std_ostream.h"
22 #include "frontends/Painter.h"
23
24 using std::auto_ptr;
25
26
27 MathBoxedInset::MathBoxedInset()
28         : MathNestInset(1)
29 {}
30
31
32 auto_ptr<InsetBase> MathBoxedInset::doClone() const
33 {
34         return auto_ptr<InsetBase>(new MathBoxedInset(*this));
35 }
36
37
38 void MathBoxedInset::metrics(MetricsInfo & mi, Dimension & dim) const
39 {
40         cell(0).metrics(mi, dim);
41         metricsMarkers2(dim, 3); // 1 pixel space, 1 frame, 1 space
42         dim_ = dim;
43 }
44
45
46 void MathBoxedInset::draw(PainterInfo & pi, int x, int y) const
47 {
48         pi.pain.rectangle(x + 1, y - dim_.ascent() + 1,
49                 dim_.width() - 2, dim_.height() - 2, LColor::foreground);
50         cell(0).draw(pi, x + 3, y);
51         setPosCache(pi, x, y);
52 }
53
54
55 void MathBoxedInset::write(WriteStream & os) const
56 {
57         os << "\\boxed{" << cell(0) << '}';
58 }
59
60
61 void MathBoxedInset::normalize(NormalStream & os) const
62 {
63         os << "[boxed " << cell(0) << ']';
64 }
65
66
67 void MathBoxedInset::infoize(std::ostream & os) const
68 {
69         os << "Boxed: ";
70 }
71
72
73 void MathBoxedInset::validate(LaTeXFeatures & features) const
74 {
75         features.require("amsmath");
76 }