lyx_mirror/src/mathed/InsetMathLim.cpp
André Pönitz 9d0ea8aeff Move debug.{cpp,h}, Messages.{cpp,h} and gettext.{cpp,h} to support/.
Now support/* should have no dependencies on src/* anymore.



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21851 a592a061-630c-0410-9148-cb99ea01b6c8
2007-11-29 07:04:28 +00:00

86 lines
1.5 KiB
C++

/**
* \file InsetMathLim.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 "InsetMathLim.h"
#include "MathData.h"
#include "MathStream.h"
#include "support/debug.h"
namespace lyx {
InsetMathLim::InsetMathLim
(MathData const & f, MathData const & x, MathData const & x0)
: InsetMathNest(3)
{
cell(0) = f;
cell(1) = x;
cell(2) = x0;
}
Inset * InsetMathLim::clone() const
{
return new InsetMathLim(*this);
}
void InsetMathLim::normalize(NormalStream & os) const
{
os << "[lim " << cell(0) << ' ' << cell(1) << ' ' << cell(2) << ']';
}
void InsetMathLim::metrics(MetricsInfo &, Dimension &) const
{
LYXERR0("should not happen");
}
void InsetMathLim::draw(PainterInfo &, int, int) const
{
LYXERR0("should not happen");
}
void InsetMathLim::maple(MapleStream & os) const
{
os << "limit(" << cell(0) << ',' << cell(1) << '=' << cell(2) << ')';
}
void InsetMathLim::maxima(MaximaStream & os) const
{
os << "limit(" << cell(0) << ',' << cell(1) << ',' << cell(2) << ')';
}
void InsetMathLim::mathematica(MathematicaStream & os) const
{
os << "Limit[" << cell(0) << ',' << cell(1) << "-> " << cell(2) << ']';
}
void InsetMathLim::mathmlize(MathStream & os) const
{
os << "lim(" << cell(0) << ',' << cell(1) << ',' << cell(2) << ')';
}
void InsetMathLim::write(WriteStream &) const
{
LYXERR0("should not happen");
}
} // namespace lyx