]> git.lyx.org Git - lyx.git/blob - src/mathed/math_parinset.h
small up/down tweaking
[lyx.git] / src / mathed / math_parinset.h
1 #ifndef MATH_PARINSET_H
2 #define MATH_PARINSET_H
3
4 #ifdef __GNUG__
5 #pragma interface
6 #endif
7
8 #include "math_hullinset.h"
9
10 class MathParInset : public MathHullInset {
11 public:
12         ///
13         MathParInset() {}
14         ///
15         MathParInset(MathArray const & ar);
16         ///
17         mode_type currentMode() const { return TEXT_MODE; }
18         ///
19         void metrics(MathMetricsInfo & mi) const;
20         ///
21         void draw(MathPainterInfo &, int x, int y) const;
22         ///
23         void infoize(std::ostream & os) const;
24         ///
25         void write(WriteStream & os) const;
26 };
27
28 #endif