]> git.lyx.org Git - lyx.git/blob - src/mathed/math_parinset.C
a step towards world domination^H^H^H
[lyx.git] / src / mathed / math_parinset.C
1
2 #include "math_parinset.h"
3 #include "math_mathmlstream.h"
4 #include "debug.h"
5
6
7 void MathParInset::metrics(MathMetricsInfo & mi) const
8 {
9         MathFontSetChanger dummy1(mi.base, "textnormal");
10         MathGridInset::metrics(mi);
11 }
12
13
14 void MathParInset::draw(MathPainterInfo & pi, int x, int y) const
15 {
16         MathFontSetChanger dummy1(pi.base, "textnormal");
17         MathGridInset::draw(pi, x, y);
18 }
19
20
21 void MathParInset::write(WriteStream & os) const
22 {
23         for (idx_type i = 0; i < nargs(); ++i)
24                 os << cell(i) << "\n";
25 }
26
27
28 void MathParInset::infoize(std::ostream & os) const
29 {
30         os << "Type: Paragraph ";
31 }
32