]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathEnv.cpp
Coding style
[lyx.git] / src / mathed / InsetMathEnv.cpp
1 /**
2  * \file InsetMathEnv.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 "InsetMathEnv.h"
14
15 #include "MathData.h"
16 #include "MathStream.h"
17 #include "MathStream.h"
18
19 #include <ostream>
20
21
22 namespace lyx {
23
24 InsetMathEnv::InsetMathEnv(docstring const & name)
25         : InsetMathNest(1), name_(name)
26 {}
27
28
29 Inset * InsetMathEnv::clone() const
30 {
31         return new InsetMathEnv(*this);
32 }
33
34
35 void InsetMathEnv::metrics(MetricsInfo & mi, Dimension & dim) const
36 {
37         cell(0).metrics(mi, dim);
38         metricsMarkers(dim);
39 }
40
41
42 void InsetMathEnv::draw(PainterInfo & pi, int x, int y) const
43 {
44         cell(0).draw(pi, x + 1, y);
45         drawMarkers(pi, x, y);
46 }
47
48
49 void InsetMathEnv::write(WriteStream & os) const
50 {
51         MathEnsurer ensurer(os);
52         os << "\\begin{" << name_ << '}' << cell(0) << "\\end{" << name_ << '}';
53 }
54
55
56 void InsetMathEnv::normalize(NormalStream & os) const
57 {
58         os << "[env " << name_ << ' ' << cell(0) << ']';
59 }
60
61
62 void InsetMathEnv::infoize(odocstream & os) const
63 {
64         os << "Env: " << name_;
65 }
66
67
68 } // namespace lyx