mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
1829cdef6a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6555 a592a061-630c-0410-9148-cb99ea01b6c8
40 lines
667 B
C
40 lines
667 B
C
|
|
#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(MetricsInfo & mi) const
|
|
{
|
|
FontSetChanger dummy1(mi.base, "textnormal");
|
|
MathGridInset::metrics(mi);
|
|
}
|
|
|
|
|
|
void MathParInset::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
FontSetChanger 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 ";
|
|
}
|