lyx_mirror/src/mathed/InsetMathEnsureMath.cpp
André Pönitz f1cba8ff64 more latin1..utf8 schanges. all of src/* should be utf8 now
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27425 a592a061-630c-0410-9148-cb99ea01b6c8
2008-11-14 15:58:50 +00:00

77 lines
1.4 KiB
C++

/**
* \file InsetMathEnsureMath.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
* \author Enrico Forestieri
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "InsetMathEnsureMath.h"
#include "MathStream.h"
#include "MathData.h"
#include <ostream>
namespace lyx {
InsetMathEnsureMath::InsetMathEnsureMath()
: InsetMathNest(1)
{}
Inset * InsetMathEnsureMath::clone() const
{
return new InsetMathEnsureMath(*this);
}
void InsetMathEnsureMath::metrics(MetricsInfo & mi, Dimension & dim) const
{
FontSetChanger dummy(mi.base, "mathnormal");
cell(0).metrics(mi, dim);
metricsMarkers(dim);
}
void InsetMathEnsureMath::draw(PainterInfo & pi, int x, int y) const
{
FontSetChanger dummy(pi.base, "mathnormal");
cell(0).draw(pi, x, y);
drawMarkers(pi, x, y);
}
void InsetMathEnsureMath::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
{
cell(0).metricsT(mi, dim);
}
void InsetMathEnsureMath::drawT(TextPainter & pain, int x, int y) const
{
cell(0).drawT(pain, x, y);
}
void InsetMathEnsureMath::write(WriteStream & os) const
{
ModeSpecifier specifier(os, MATH_MODE);
os << "\\ensuremath{" << cell(0) << "}";
}
void InsetMathEnsureMath::infoize(odocstream & os) const
{
os << "EnsureMath";
}
} // namespace lyx