]> git.lyx.org Git - lyx.git/blob - src/mathed/math_boxinset.C
Standardise the header blurb in mathed.
[lyx.git] / src / mathed / math_boxinset.C
1 /**
2  * \file math_boxinset.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_boxinset.h"
14 #include "math_support.h"
15 #include "math_mathmlstream.h"
16 #include "math_streamstr.h"
17 #include "support/LOstream.h"
18
19 using std::auto_ptr;
20
21
22 MathBoxInset::MathBoxInset(string const & name)
23         : MathNestInset(1), name_(name)
24 {}
25
26
27 auto_ptr<InsetBase> MathBoxInset::clone() const
28 {
29         return auto_ptr<InsetBase>(new MathBoxInset(*this));
30 }
31
32
33 void MathBoxInset::write(WriteStream & os) const
34 {
35         os << '\\' << name_ << '{' << cell(0) << '}';
36 }
37
38
39 void MathBoxInset::normalize(NormalStream & os) const
40 {
41         os << '[' << name_ << ' ';
42         //text_->write(buffer(), os);
43         os << "] ";
44 }
45
46
47 void MathBoxInset::metrics(MetricsInfo & mi, Dimension & dim) const
48 {
49         FontSetChanger dummy(mi.base, "textnormal");
50         cell(0).metrics(mi, dim_);
51         metricsMarkers();
52         dim = dim_;
53 }
54
55
56 void MathBoxInset::draw(PainterInfo & pi, int x, int y) const
57 {
58         FontSetChanger dummy(pi.base, "textnormal");
59         cell(0).draw(pi, x, y);
60         drawMarkers(pi, x, y);
61 }
62
63
64 void MathBoxInset::infoize(std::ostream & os) const
65 {
66         os << "Box: " << name_;
67 }