X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathXYMatrix.h;h=72f48efe46534799c9f4dea52093e00d07a3da5b;hb=30d3fcd640c180407a8a1db7679cca42eaa9e0c1;hp=4453d00d658e1a2d7cd56b63c5dbf699c17609f9;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/mathed/InsetMathXYMatrix.h b/src/mathed/InsetMathXYMatrix.h index 4453d00d65..72f48efe46 100644 --- a/src/mathed/InsetMathXYMatrix.h +++ b/src/mathed/InsetMathXYMatrix.h @@ -22,7 +22,8 @@ namespace lyx { class InsetMathXYMatrix : public InsetMathGrid { public: /// - InsetMathXYMatrix(Length const & = Length(), char c = '\0'); + InsetMathXYMatrix(Buffer * buf, Length const & = Length(), char c = '\0', + bool equal_spacing = false); /// void metrics(MetricsInfo &, Dimension &) const; /// @@ -32,8 +33,6 @@ public: /// virtual int rowsep() const; - /// - void normalize(); /// void write(WriteStream & os) const; /// @@ -44,6 +43,13 @@ public: 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 Inset * clone() const; @@ -51,6 +57,8 @@ private: Length spacing_; /// char spacing_code_; + /// + bool equal_spacing_; };