X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathXYMatrix.h;h=a5be7c0af31b29182b567c08ac798a107277287d;hb=2acc4fc54c178744467b89b469f10bda90bb0310;hp=1928af1aa360955a9ccdcc640e29f372517a7df6;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathXYMatrix.h b/src/mathed/InsetMathXYMatrix.h index 1928af1aa3..a5be7c0af3 100644 --- a/src/mathed/InsetMathXYMatrix.h +++ b/src/mathed/InsetMathXYMatrix.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -12,36 +12,58 @@ #ifndef MATH_XYMATRIX_H #define MATH_XYMATRIX_H -#include "lyxlength.h" +#include "Length.h" #include "InsetMathGrid.h" +namespace lyx { + + class InsetMathXYMatrix : public InsetMathGrid { public: /// - InsetMathXYMatrix(); + InsetMathXYMatrix(Buffer * buf, Length const & = Length(), char c = '\0', + bool equal_spacing = false); /// void metrics(MetricsInfo &, Dimension &) const; /// + void draw(PainterInfo & pi, int x, int y) const; + /// InsetMathXYMatrix const * asXYMatrixInset() const { return this; } /// virtual int colsep() const; /// virtual int rowsep() const; - /// - void normalize(); /// void write(WriteStream & os) const; /// - void infoize(std::ostream & os) const; + void infoize(odocstream & os) const; /// void normalize(NormalStream &) const; /// void maple(MapleStream &) const; + /// + void validate(LaTeXFeatures & features) const; + /// + InsetCode lyxCode() const { return MATH_XYMATRIX_CODE; } + /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + private: /// - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; + /// extra spacing, may be empty + Length spacing_; + /// + char spacing_code_; + /// + bool equal_spacing_; }; + + +} // namespace lyx #endif