lyx_mirror/src/mathed/InsetMathComment.cpp
2021-01-02 19:52:23 +01:00

105 lines
1.7 KiB
C++

/**
* \file InsetMathComment.cpp
* 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 "InsetMathComment.h"
#include "MathData.h"
#include "MathStream.h"
#include "MathSupport.h"
#include <ostream>
namespace lyx {
InsetMathComment::InsetMathComment(Buffer * buf)
: InsetMathNest(buf, 1)
{}
InsetMathComment::InsetMathComment(MathData const & ar)
: InsetMathNest(const_cast<Buffer *>(ar.buffer()), 1)
{
cell(0) = ar;
}
InsetMathComment::InsetMathComment(Buffer * buf, docstring const & str)
: InsetMathNest(buf, 1)
{
// FIXME UNICODE
asArray(str, cell(0));
}
Inset * InsetMathComment::clone() const
{
return new InsetMathComment(*this);
}
void InsetMathComment::metrics(MetricsInfo & mi, Dimension & dim) const
{
cell(0).metrics(mi, dim);
}
void InsetMathComment::draw(PainterInfo & pi, int x, int y) const
{
cell(0).draw(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(TeXMathStream & os) const
{
os << '%' << cell(0) << "\n";
}
void InsetMathComment::maple(MapleStream & os) const
{
os << '#' << cell(0) << "\n";
}
void InsetMathComment::mathmlize(MathMLStream & ms) const
{
ms << MTag("comment") << cell(0) << ETag("comment");
}
void InsetMathComment::htmlize(HtmlStream & os) const
{
os << "<!-- " << cell(0) << " -->";
}
void InsetMathComment::infoize(odocstream & os) const
{
os << "Comment";
}
} // namespace lyx