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