]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathFrameBox.cpp
Put MathData on a diet: transfer dimension cache to BufferView' CoordCache along...
[lyx.git] / src / mathed / InsetMathFrameBox.cpp
1 /**
2  * \file InsetMathFrameBox.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 "InsetMathFrameBox.h"
14 #include "MathData.h"
15 #include "MathStream.h"
16 #include "MathSupport.h"
17 #include "Color.h"
18 #include "frontends/Painter.h"
19
20
21 namespace lyx {
22
23 InsetMathFrameBox::InsetMathFrameBox()
24         : InsetMathNest(3)
25 {}
26
27
28 Inset * InsetMathFrameBox::clone() const
29 {
30         return new InsetMathFrameBox(*this);
31 }
32
33
34 void InsetMathFrameBox::metrics(MetricsInfo & mi, Dimension & dim) const
35 {
36         FontSetChanger dummy(mi.base, "textnormal");
37         w_ = mathed_char_width(mi.base.font, '[');
38         InsetMathNest::metrics(mi);
39         dim  = cell(0).dimension(*mi.base.bv);
40         dim += cell(1).dimension(*mi.base.bv);
41         dim += cell(2).dimension(*mi.base.bv);
42         metricsMarkers(dim);
43         // Cache the inset dimension. 
44         setDimCache(mi, dim);
45 }
46
47
48 void InsetMathFrameBox::draw(PainterInfo & pi, int x, int y) const
49 {
50         FontSetChanger dummy(pi.base, "textnormal");
51         Dimension const dim = dimension(*pi.base.bv);
52         pi.pain.rectangle(x + 1, y - dim.ascent() + 1,
53                 dim.width() - 2, dim.height() - 2, Color::foreground);
54         x += 5;
55         BufferView const & bv = *pi.base.bv;
56
57         drawStrBlack(pi, x, y, from_ascii("["));
58         x += w_;
59         cell(0).draw(pi, x, y);
60         x += cell(0).dimension(bv).wid;
61         drawStrBlack(pi, x, y, from_ascii("]"));
62         x += w_ + 4;
63
64         drawStrBlack(pi, x, y, from_ascii("["));
65         x += w_;
66         cell(1).draw(pi, x, y);
67         x += cell(1).dimension(bv).wid;
68         drawStrBlack(pi, x, y, from_ascii("]"));
69         x += w_ + 4;
70
71         cell(2).draw(pi, x, y);
72         drawMarkers(pi, x, y);
73 }
74
75
76 void InsetMathFrameBox::write(WriteStream & os) const
77 {
78         os << "\\framebox";
79         os << '[' << cell(0) << ']';
80         if (cell(1).size())
81                 os << '[' << cell(1) << ']';
82         os << '{' << cell(2) << '}';
83 }
84
85
86 void InsetMathFrameBox::normalize(NormalStream & os) const
87 {
88         os << "[framebox " << cell(0) << ' ' << cell(1) << ' ' << cell(2) << ']';
89 }
90
91
92 } // namespace lyx