A bit more re-organization.
[lyx.git] / src / mathed / InsetMathComment.cpp
blobebfba7a859918e35fc00b064334ebcd47c80a6ac
1 /**
2 * \file InsetMathComment.cpp
3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
6 * \author André Pönitz
8 * Full author contact details are available in file CREDITS.
9 */
11 #include <config.h>
13 #include "InsetMathComment.h"
15 #include "MathData.h"
16 #include "MathStream.h"
17 #include "MathSupport.h"
19 #include <ostream>
22 namespace lyx {
24 InsetMathComment::InsetMathComment(Buffer * buf)
25 : InsetMathNest(buf, 1)
29 InsetMathComment::InsetMathComment(Buffer * buf, docstring const & str)
30 : InsetMathNest(buf, 1)
32 // FIXME UNICODE
33 asArray(str, cell(0));
37 Inset * InsetMathComment::clone() const
39 return new InsetMathComment(*this);
43 void InsetMathComment::metrics(MetricsInfo & mi, Dimension & dim) const
45 cell(0).metrics(mi, dim);
46 metricsMarkers(dim);
50 void InsetMathComment::draw(PainterInfo & pi, int x, int y) const
52 cell(0).draw(pi, x + 1, y);
53 drawMarkers(pi, x, y);
57 void InsetMathComment::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
59 cell(0).metricsT(mi, dim);
63 void InsetMathComment::drawT(TextPainter & pain, int x, int y) const
65 cell(0).drawT(pain, x, y);
69 void InsetMathComment::write(WriteStream & os) const
71 os << '%' << cell(0) << "\n";
75 void InsetMathComment::maple(MapleStream & os) const
77 os << '#' << cell(0) << "\n";
81 void InsetMathComment::mathematica(MathematicaStream &) const
85 void InsetMathComment::octave(OctaveStream &) const
89 void InsetMathComment::mathmlize(MathStream & os) const
91 os << MTag("comment") << cell(0) << cell(1) << ETag("comment");
95 void InsetMathComment::infoize(odocstream & os) const
97 os << "Comment";
101 } // namespace lyx