]> git.lyx.org Git - lyx.git/blob - src/mathed/math_fboxinset.C
Make Helge happy: no more crash on arrow up/down in math macro
[lyx.git] / src / mathed / math_fboxinset.C
1 /**
2  * \file math_fboxinset.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_fboxinset.h"
14 #include "math_data.h"
15 #include "math_mathmlstream.h"
16 #include "math_parser.h"
17 #include "math_streamstr.h"
18 #include "LColor.h"
19
20 #include "support/std_ostream.h"
21 #include "frontends/Painter.h"
22
23 using std::auto_ptr;
24
25
26 MathFboxInset::MathFboxInset()
27         : MathNestInset(1)
28 {}
29
30
31 auto_ptr<InsetBase> MathFboxInset::doClone() const
32 {
33         return auto_ptr<InsetBase>(new MathFboxInset(*this));
34 }
35
36
37 MathInset::mode_type MathFboxInset::currentMode() const
38 {
39         return TEXT_MODE;
40 }
41
42
43 void MathFboxInset::metrics(MetricsInfo & mi, Dimension & dim) const
44 {
45         FontSetChanger dummy(mi.base, "textnormal");
46         cell(0).metrics(mi, dim);
47         metricsMarkers(dim, 3); // 1 pixel space, 1 frame, 1 space
48         dim_ = dim;
49 }
50
51
52 void MathFboxInset::draw(PainterInfo & pi, int x, int y) const
53 {
54         pi.pain.rectangle(x + 1, y - dim_.ascent() + 1,
55                 dim_.width() - 2, dim_.height() - 2, LColor::foreground);
56         FontSetChanger dummy(pi.base, "textnormal");
57         cell(0).draw(pi, x + 3, y);
58         setPosCache(pi, x, y);
59 }
60
61
62 void MathFboxInset::write(WriteStream & os) const
63 {
64         os << "\\fbox{" << cell(0) << '}';
65 }
66
67
68 void MathFboxInset::normalize(NormalStream & os) const
69 {
70         os << "[fbox " << cell(0) << ']';
71 }
72
73
74 void MathFboxInset::infoize(std::ostream & os) const
75 {
76         os << "FBox: ";
77 }