]> git.lyx.org Git - lyx.git/blob - src/mathed/math_casesinset.h
d8ff0b47104acfc017fc451985baf01971514167
[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
8
9 class MathCasesInset : public MathGridInset {
10 public:
11         ///
12         explicit MathCasesInset(row_type rows = 1u);
13         ///
14         MathInset * clone() const;
15         ///
16         void metrics(MathMetricsInfo & st) const;
17         ///
18         void draw(MathPainterInfo & pain, int x, int y) const;
19
20         ///
21         void infoize(std::ostream & os) const;
22         ///
23         void normalize(NormalStream &) const;
24         ///
25         void maplize(MapleStream &) const;
26         ///
27         void write(WriteStream & os) const;
28 };
29
30 #endif