X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathXYMatrix.h;h=a5be7c0af31b29182b567c08ac798a107277287d;hb=31cd421bcd26647cb7edbb694b05473271fe9153;hp=ee20149d30d31f29ea61ca2ac8713111698ef685;hpb=ff4460603e3888948b46f0ab5bfa69a862d538ad;p=lyx.git diff --git a/src/mathed/InsetMathXYMatrix.h b/src/mathed/InsetMathXYMatrix.h index ee20149d30..a5be7c0af3 100644 --- a/src/mathed/InsetMathXYMatrix.h +++ b/src/mathed/InsetMathXYMatrix.h @@ -22,18 +22,19 @@ namespace lyx { class InsetMathXYMatrix : public InsetMathGrid { public: /// - InsetMathXYMatrix(Buffer * buf, Length const & = Length(), char c = '\0'); + 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; /// @@ -46,6 +47,10 @@ public: void validate(LaTeXFeatures & features) const; /// InsetCode lyxCode() const { return MATH_XYMATRIX_CODE; } + /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; private: /// @@ -54,6 +59,8 @@ private: Length spacing_; /// char spacing_code_; + /// + bool equal_spacing_; };