]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathBoxed.cpp
Put mathed on a diet: transfer dimension cache from inset to BufferView.
[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         // Cache the inset dimension. 
41         setDimCache(mi, dim);
42 }
43
44
45 void InsetMathBoxed::draw(PainterInfo & pi, int x, int y) const
46 {
47         Dimension const dim = dimension(*pi.base.bv);
48         pi.pain.rectangle(x + 1, y - dim.ascent() + 1,
49                 dim.width() - 2, dim.height() - 2, Color::foreground);
50         cell(0).draw(pi, x + 3, y);
51         setPosCache(pi, x, y);
52 }
53
54
55 void InsetMathBoxed::write(WriteStream & os) const
56 {
57         os << "\\boxed{" << cell(0) << '}';
58 }
59
60
61 void InsetMathBoxed::normalize(NormalStream & os) const
62 {
63         os << "[boxed " << cell(0) << ']';
64 }
65
66
67 void InsetMathBoxed::infoize(odocstream & os) const
68 {
69         os << "Boxed: ";
70 }
71
72
73 void InsetMathBoxed::validate(LaTeXFeatures & features) const
74 {
75         features.require("amsmath");
76 }
77
78
79 } // namespace lyx