]> git.lyx.org Git - lyx.git/blob - src/mathed/math_casesinset.h
small up/down tweaking
[lyx.git] / src / mathed / math_casesinset.h
1 // -*- C++ -*-
2 #ifndef MATH_CASESINSET_H
3 #define MATH_CASESINSET_H
4
5 #include "math_gridinset.h"
6
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11
12 class MathCasesInset : public MathGridInset {
13 public:
14         ///
15         explicit MathCasesInset(row_type rows = 1u);
16         ///
17         MathInset * clone() const;
18         ///
19         void metrics(MathMetricsInfo & st) const;
20         ///
21         void draw(MathPainterInfo & pain, int x, int y) const;
22
23         ///
24         void infoize(std::ostream & os) const;
25         ///
26         void normalize(NormalStream &) const;
27         ///
28         void maplize(MapleStream &) const;
29         ///
30         void write(WriteStream & os) const;
31 };
32
33 #endif