]> git.lyx.org Git - lyx.git/blob - src/mathed/math_ertinset.h
a step towards world domination^H^H^H
[lyx.git] / src / mathed / math_ertinset.h
1 #ifndef MATH_ERTINSET_H
2 #define MATH_ERTINSET_H
3
4 #include "math_textinset.h"
5
6 // implements support for \parbox
7
8 class MathErtInset : public MathTextInset {
9 public:
10         ///
11         MathErtInset() {}
12         ///
13         MathInset * clone() const;
14         ///
15         mode_type currentMode() const { return TEXT_MODE; }
16         ///
17         void metrics(MathMetricsInfo & mi) const;
18         ///
19         void draw(MathPainterInfo & pi, int x, int y) const;
20         ///
21         void infoize(std::ostream & os) const;
22         ///
23         void write(WriteStream & os) const;
24 };
25
26 #endif