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