X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_matrixinset.h;h=50d7baccd3e5a458138908795bc52277ca3bb5aa;hb=7338f3b980d4dc5793ff80be814b7a74e1c72274;hp=d19fa76474e6c8f8be56affc0201f73fb61b9475;hpb=b1c4f8070feac7b2cc6d0054cc305dc3a6e918b8;p=lyx.git diff --git a/src/mathed/math_matrixinset.h b/src/mathed/math_matrixinset.h index d19fa76474..50d7baccd3 100644 --- a/src/mathed/math_matrixinset.h +++ b/src/mathed/math_matrixinset.h @@ -1,93 +1,45 @@ // -*- C++ -*- +/** + * \file math_matrixinset.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author André Pönitz + * + * Full author contact details are available in file CREDITS. + */ + #ifndef MATH_MATRIXINSET_H #define MATH_MATRIXINSET_H -#include - -#include "math_grid.h" - -#ifdef __GNUG__ -#pragma interface -#endif +#include "math_gridinset.h" -/** Multiline math paragraph base class. - This is the base to all multiline editable math objects - like array and eqnarray. - \author Alejandro Aguilar Sierra -*/ -class LaTeXFeatures; +// "shortcut" for DelimInset("(",ArrayInset,")") class MathMatrixInset : public MathGridInset { -public: - /// - MathMatrixInset(); - /// - explicit MathMatrixInset(MathInsetTypes t); - /// - MathInset * Clone() const; - /// - void Write(std::ostream &, bool fragile) const; - /// - void Metrics(MathStyles st); - /// - void breakLine(); - /// - void draw(Painter &, int, int); - /// - string label(int row) const; - /// - void label(int row, string const & label); - /// - void numbered(int row, bool num); +public: /// - bool numbered(int row) const; + MathMatrixInset(MathGridInset const &); /// - bool numberedType() const; + MathMatrixInset(string const & str); /// - bool display() const; - /// - bool ams() const; - /// - std::vector const getLabelList() const; - /// - void Validate(LaTeXFeatures & features); + virtual std::auto_ptr clone() const; + /// identifies MatrixInsets + MathMatrixInset const * asMatrixInset() const { return this; } /// - void addRow(int); - /// - void delRow(int); + void write(WriteStream & os) const; /// - void addCol(int); + void normalize(NormalStream &) const; /// - void delCol(int); + void maple(MapleStream &) const; /// - void appendRow(); - - /// change type - void mutate(string const &); - /// - void mutate(short); - - /// Splits cells and shifts right part to the next cell - void splitCell(int idx); - -private: - /// - void Validate1(LaTeXFeatures & features); - /// - void header_write(std::ostream &) const; - /// - void footer_write(std::ostream &) const; - /// - void glueall(); - /// - string nicelabel(int row) const; - + void maxima(MaximaStream &) const; /// - std::vector nonum_; + void mathmlize(MathMLStream &) const; /// - std::vector label_; + void octave(OctaveStream &) const; }; #endif