lyx_mirror/src/mathed/math_commentinset.C
Angus Leeming 0705dae8a3 Finish the task of removing all cruft from the header files.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7703 a592a061-630c-0410-9148-cb99ea01b6c8
2003-09-07 21:25:37 +00:00

97 lines
1.7 KiB
C

/**
* \file math_commentinset.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "math_commentinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_support.h"
#include "support/std_ostream.h"
using std::auto_ptr;
MathCommentInset::MathCommentInset()
: MathNestInset(1)
{}
MathCommentInset::MathCommentInset(string const & str)
: MathNestInset(1)
{
asArray(str, cell(0));
}
auto_ptr<InsetBase> MathCommentInset::clone() const
{
return auto_ptr<InsetBase>(new MathCommentInset(*this));
}
void MathCommentInset::metrics(MetricsInfo & mi, Dimension & dim) const
{
cell(0).metrics(mi);
metricsMarkers();
dim = dim_;
}
void MathCommentInset::draw(PainterInfo & pi, int x, int y) const
{
cell(0).draw(pi, x + 1, y);
drawMarkers(pi, x, y);
}
void MathCommentInset::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
{
cell(0).metricsT(mi, dim);
}
void MathCommentInset::drawT(TextPainter & pain, int x, int y) const
{
cell(0).drawT(pain, x, y);
}
void MathCommentInset::write(WriteStream & os) const
{
os << '%' << cell(0) << "\n";
}
void MathCommentInset::maple(MapleStream & os) const
{
os << '#' << cell(0) << "\n";
}
void MathCommentInset::mathematica(MathematicaStream &) const
{}
void MathCommentInset::octave(OctaveStream &) const
{}
void MathCommentInset::mathmlize(MathMLStream & os) const
{
os << MTag("comment") << cell(0) << cell(1) << ETag("comment");
}
void MathCommentInset::infoize(std::ostream & os) const
{
os << "Comment";
}