X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathCases.h;h=84e13979e8ba9226a94a4e3e0e1598f5542855d4;hb=cdc847fd304019a19425a0d5d9d42a556a937097;hp=9ceac475ea237b822bbbeb2cd5423525ca03f4eb;hpb=0facb603fefec1ecc927f77bcf6228ca1f035444;p=lyx.git diff --git a/src/mathed/InsetMathCases.h b/src/mathed/InsetMathCases.h index 9ceac475ea..84e13979e8 100644 --- a/src/mathed/InsetMathCases.h +++ b/src/mathed/InsetMathCases.h @@ -23,12 +23,10 @@ class LaTeXFeatures; class InsetMathCases : public InsetMathGrid { public: /// - explicit InsetMathCases(row_type rows = 1u); + explicit InsetMathCases(Buffer * buf, row_type rows = 1u); /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// - Dimension const dimension(BufferView const &) const; - /// void draw(PainterInfo & pi, int x, int y) const; /// virtual void doDispatch(Cursor & cur, FuncRequest & cmd); @@ -43,11 +41,24 @@ public: /// void maple(MapleStream &) const; /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// void write(WriteStream & os) const; /// void validate(LaTeXFeatures & features) const; /// InsetCode lyxCode() const { return MATH_CASES_CODE; } + /// + int displayColSpace(col_type) const; + /// + int leftMargin() const { return 8; } //override + /// + int rightMargin() const { return 0; } //override + /// see e.g. https://tex.stackexchange.com/a/133283/87201 + bool handlesMulticolumn() const { return true; } //override + private: virtual Inset * clone() const; };