2001-11-09 08:35:57 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file InsetMathMatrix.h
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
|
#ifndef MATH_MATRIXINSET_H
|
|
|
|
|
#define MATH_MATRIXINSET_H
|
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathGrid.h"
|
2001-11-09 08:35:57 +00:00
|
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
|
// "shortcut" for DelimInset("(",ArrayInset,")")
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
class InsetMathMatrix : public InsetMathGrid {
|
2002-03-21 17:42:56 +00:00
|
|
|
|
public:
|
2001-11-09 08:35:57 +00:00
|
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
|
explicit InsetMathMatrix(InsetMathGrid const &);
|
2001-11-09 08:35:57 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
explicit InsetMathMatrix(docstring const & str);
|
2001-11-09 08:35:57 +00:00
|
|
|
|
/// identifies MatrixInsets
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathMatrix const * asMatrixInset() const { return this; }
|
2001-11-09 08:35:57 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
|
///
|
|
|
|
|
void normalize(NormalStream &) const;
|
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void maple(MapleStream &) const;
|
2001-11-09 08:35:57 +00:00
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void maxima(MaximaStream &) const;
|
2002-10-28 17:15:19 +00:00
|
|
|
|
///
|
2006-09-02 01:57:36 +00:00
|
|
|
|
void mathematica(MathematicaStream &) const;
|
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
void mathmlize(MathStream &) const;
|
2001-11-09 08:35:57 +00:00
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void octave(OctaveStream &) const;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
|
virtual Inset * clone() const;
|
2001-11-09 08:35:57 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
2001-11-09 08:35:57 +00:00
|
|
|
|
#endif
|