]> git.lyx.org Git - lyx.git/blob - src/mathed/math_frameboxinset.C
several small fixes for mathed
[lyx.git] / src / mathed / math_frameboxinset.C
1 /**
2  * \file math_frameboxinset.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_frameboxinset.h"
14 #include "math_data.h"
15 #include "math_mathmlstream.h"
16 #include "math_support.h"
17 #include "LColor.h"
18 #include "frontends/Painter.h"
19
20 using std::auto_ptr;
21
22
23 MathFrameboxInset::MathFrameboxInset()
24         : MathNestInset(3)
25 {}
26
27
28 auto_ptr<InsetBase> MathFrameboxInset::clone() const
29 {
30         return auto_ptr<InsetBase>(new MathFrameboxInset(*this));
31 }
32
33
34 void MathFrameboxInset::metrics(MetricsInfo & mi, Dimension & dim) const
35 {
36         FontSetChanger dummy(mi.base, "textnormal");
37         w_ = mathed_char_width(mi.base.font, '[');
38         MathNestInset::metrics(mi);
39         dim  = cell(0).dim();
40         dim += cell(1).dim();
41         dim += cell(2).dim();
42         metricsMarkers(dim);
43         dim_ = dim;
44 }
45
46
47 void MathFrameboxInset::draw(PainterInfo & pi, int x, int y) const
48 {
49         FontSetChanger dummy(pi.base, "textnormal");
50         pi.pain.rectangle(x + 1, y - dim_.ascent() + 1,
51                 dim_.width() - 2, dim_.height() - 2, LColor::foreground);
52         x += 5;
53
54         drawStrBlack(pi, x, y, "[");
55         x += w_;
56         cell(0).draw(pi, x, y);
57         x += cell(0).width();
58         drawStrBlack(pi, x, y, "]");
59         x += w_ + 4;
60
61         drawStrBlack(pi, x, y, "[");
62         x += w_;
63         cell(1).draw(pi, x, y);
64         x += cell(1).width();
65         drawStrBlack(pi, x, y, "]");
66         x += w_ + 4;
67
68         cell(2).draw(pi, x, y);
69 }
70
71
72 void MathFrameboxInset::write(WriteStream & os) const
73 {
74         os << "\\framebox";
75         os << '[' << cell(0) << ']';
76         if (cell(1).size())
77                 os << '[' << cell(1) << ']';
78         os << '{' << cell(2) << '}';
79 }
80
81
82 void MathFrameboxInset::normalize(NormalStream & os) const
83 {
84         os << "[framebox " << cell(0) << ' ' << cell(1) << ' ' << cell(2) << ']';
85 }