]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathEnv.cpp
Fix drawing of empty boxes
[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 "MetricsInfo.h"
20
21 #include "support/gettext.h"
22 #include "support/lstrings.h"
23
24 #include <ostream>
25
26 using namespace lyx::support;
27
28 namespace lyx {
29
30 InsetMathEnv::InsetMathEnv(Buffer * buf, docstring const & name)
31         : InsetMathNest(buf, 1), name_(name)
32 {}
33
34
35 Inset * InsetMathEnv::clone() const
36 {
37         return new InsetMathEnv(*this);
38 }
39
40
41 void InsetMathEnv::metrics(MetricsInfo & mi, Dimension & dim) const
42 {
43         Changer dummy = mi.base.changeEnsureMath();
44         cell(0).metrics(mi, dim);
45 }
46
47
48 void InsetMathEnv::draw(PainterInfo & pi, int x, int y) const
49 {
50         Changer dummy = pi.base.changeEnsureMath();
51         cell(0).draw(pi, x, y);
52 }
53
54
55 void InsetMathEnv::write(WriteStream & os) const
56 {
57         MathEnsurer ensurer(os);
58         os << "\\begin{" << name_ << '}' << cell(0) << "\\end{" << name_ << '}';
59 }
60
61
62 void InsetMathEnv::normalize(NormalStream & os) const
63 {
64         os << "[env " << name_ << ' ' << cell(0) << ']';
65 }
66
67
68 void InsetMathEnv::infoize(odocstream & os) const
69 {
70         os << bformat(_("Environment: %1$s"), name_);
71 }
72
73
74 } // namespace lyx