X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_arrayinset.h;h=dbd9fe3bc035b5aa70429a703d351c8c8375ef49;hb=b447408de232872fef1537fca542abc23702d572;hp=d09dae7e8aa1f3c415d0961f65d22947208fe6e2;hpb=9b0945a47fd0876d01a84e83443364acc4dae656;p=lyx.git diff --git a/src/mathed/math_arrayinset.h b/src/mathed/math_arrayinset.h index d09dae7e8a..dbd9fe3bc0 100644 --- a/src/mathed/math_arrayinset.h +++ b/src/mathed/math_arrayinset.h @@ -1,37 +1,55 @@ // -*- C++ -*- +/** + * \file math_arrayinset.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_ARRAYINSET_H #define MATH_ARRAYINSET_H #include "math_gridinset.h" -#ifdef __GNUG__ -#pragma interface -#endif - +/// Inset for things like \begin{array}...\end{array} class MathArrayInset : public MathGridInset { -public: +public: /// - MathArrayInset(int m, int n); + MathArrayInset(std::string const &, int m, int n); /// - MathArrayInset(int m, int n, char valign, string const & halign); + MathArrayInset(std::string const &, int m, int n, + char valign, std::string const & halign); /// - MathArrayInset(char valign, string const & halign); + MathArrayInset(std::string const &, char valign, std::string const & halign); /// convienience constructor from whitespace/newline seperated data - MathArrayInset(string const & str); + MathArrayInset(std::string const &, std::string const & str); + /// + std::auto_ptr clone() const; /// - MathInset * clone() const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void metrics(MathMetricsInfo const & st) const; + void draw(PainterInfo & pi, int x, int y) const; /// MathArrayInset * asArrayInset() { return this; } + /// + MathArrayInset const * asArrayInset() const { return this; } /// void write(WriteStream & os) const; /// - void normalize(NormalStream &) const; + void infoize(std::ostream & os) const; + /// + void normalize(NormalStream & os) const; + /// + void maple(MapleStream & os) const; + +private: /// - void maplize(MapleStream &) const; + std::string name_; }; #endif