]> git.lyx.org Git - lyx.git/blob - src/mathed/math_matrixinset.h
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_matrixinset.h
1 // -*- C++ -*-
2 #ifndef MATH_MATRIXINSET_H
3 #define MATH_MATRIXINSET_H
4
5 #include "math_gridinset.h"
6
7
8 // "shortcut" for DelimInset("(",ArrayInset,")")
9
10 class MathMatrixInset : public MathGridInset {
11 public:
12         ///
13         MathMatrixInset(MathGridInset const &);
14         ///
15         MathMatrixInset(string const & str);
16         ///
17         MathInset * clone() const;
18         ///
19         void metrics(MathMetricsInfo &) const {}
20         /// identifies MatrixInsets
21         MathMatrixInset const * asMatrixInset() const { return this; }
22
23         ///
24         void write(WriteStream & os) const;
25         ///
26         void normalize(NormalStream &) const;
27         ///
28         void maple(MapleStream &) const;
29         ///
30         void maxima(MaximaStream &) const;
31         ///
32         void mathmlize(MathMLStream &) const;
33         ///
34         void octave(OctaveStream &) const;
35 };
36
37 #endif