]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathMatrix.h
rename LyXFont to Font except in tex2lyx
[lyx.git] / src / mathed / InsetMathMatrix.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathMatrix.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_MATRIXINSET_H
13 #define MATH_MATRIXINSET_H
14
15 #include "InsetMathGrid.h"
16
17
18 namespace lyx {
19
20
21 // "shortcut" for DelimInset("(",ArrayInset,")")
22
23 class InsetMathMatrix : public InsetMathGrid {
24 public:
25         ///
26         explicit InsetMathMatrix(InsetMathGrid const &);
27         ///
28         explicit InsetMathMatrix(docstring const & str);
29         /// identifies MatrixInsets
30         InsetMathMatrix const * asMatrixInset() const { return this; }
31
32         ///
33         void write(WriteStream & os) const;
34         ///
35         void normalize(NormalStream &) const;
36         ///
37         void maple(MapleStream &) const;
38         ///
39         void maxima(MaximaStream &) const;
40         ///
41         void mathematica(MathematicaStream &) const;
42         ///
43         void mathmlize(MathStream &) const;
44         ///
45         void octave(OctaveStream &) const;
46 private:
47         virtual std::auto_ptr<Inset> doClone() const;
48 };
49
50
51
52 } // namespace lyx
53 #endif