lyx_mirror/src/mathed/math_parinset.C

44 lines
731 B
C++
Raw Normal View History

#ifdef __GNUG__
#pragma implementation
#endif
#include <config.h>
#include "math_parinset.h"
#include "math_mathmlstream.h"
#include "support/LOstream.h"
MathParInset::MathParInset(MathArray const & ar)
{
cells_[0] = ar;
}
void MathParInset::metrics(MathMetricsInfo & mi) const
{
MathFontSetChanger dummy1(mi.base, "textnormal");
MathGridInset::metrics(mi);
}
void MathParInset::draw(MathPainterInfo & pi, int x, int y) const
{
MathFontSetChanger dummy1(pi.base, "textnormal");
MathGridInset::draw(pi, x, y);
}
void MathParInset::write(WriteStream & os) const
{
for (idx_type i = 0; i < nargs(); ++i)
os << cell(i) << "\n";
}
void MathParInset::infoize(std::ostream & os) const
{
os << "Type: Paragraph ";
}