lyx_mirror/src/mathed/InsetMathComment.C

99 lines
1.7 KiB
C++
Raw Normal View History

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