]> git.lyx.org Git - lyx.git/blob - src/mathed/math_fboxinset.C
Finish the task of removing all cruft from the header files.
[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 "frontends/Painter.h"
19
20 using std::auto_ptr;
21
22
23 MathFboxInset::MathFboxInset(latexkeys const * key)
24         : MathNestInset(1), key_(key)
25 {}
26
27
28 auto_ptr<InsetBase> MathFboxInset::clone() const
29 {
30         return auto_ptr<InsetBase>(new MathFboxInset(*this));
31 }
32
33
34 MathInset::mode_type MathFboxInset::currentMode() const
35 {
36         if (key_->name == "fbox")
37                 return TEXT_MODE;
38         return MATH_MODE;
39 }
40
41
42 void MathFboxInset::metrics(MetricsInfo & mi, Dimension & dim) const
43 {
44         if (key_->name == "fbox") {
45                 FontSetChanger dummy(mi.base, "textnormal");
46                 cell(0).metrics(mi, dim_);
47         } else {
48                 cell(0).metrics(mi, dim_);
49         }
50         metricsMarkers(5); // 5 pixels margin
51         dim = dim_;
52 }
53
54
55 void MathFboxInset::draw(PainterInfo & pi, int x, int y) const
56 {
57         pi.pain.rectangle(x + 1, y - dim_.ascent() + 1,
58                 dim_.width() - 2, dim_.height() - 2, LColor::foreground);
59         if (key_->name == "fbox") {
60                 FontSetChanger dummy(pi.base, "textnormal");
61                 cell(0).draw(pi, x + 5, y);
62         } else {
63                 cell(0).draw(pi, x + 5, y);
64         }
65 }
66
67
68 void MathFboxInset::write(WriteStream & os) const
69 {
70         os << '\\' << key_->name << '{' << cell(0) << '}';
71 }
72
73
74 void MathFboxInset::normalize(NormalStream & os) const
75 {
76         os << '[' << key_->name << ' ' << cell(0) << ']';
77 }