]> git.lyx.org Git - lyx.git/blob - src/mathed/math_xymatrixinset.h
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_xymatrixinset.h
1 // -*- C++ -*-
2 #ifndef MATH_XYMATRIX_H
3 #define MATH_XYMATRIX_H
4
5 #include "math_gridinset.h"
6
7
8
9 class MathXYMatrixInset : public MathGridInset {
10 public:
11         ///
12         MathXYMatrixInset();
13         ///
14         MathInset * clone() const;
15         ///
16         void metrics(MathMetricsInfo & st) const;
17         ///
18         MathXYMatrixInset const * asXYMatrixInset() const { return this; }
19         ///
20         virtual int colsep() const;
21         ///
22         virtual int rowsep() const;
23
24         ///
25         void normalize();
26         ///
27         void write(WriteStream & os) const;
28         ///
29         void normalize(NormalStream &) const;
30         ///
31         void maple(MapleStream &) const;
32 };
33
34 #endif