X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmathed%2FInsetMathCases.h;h=84e13979e8ba9226a94a4e3e0e1598f5542855d4;hb=bf56e2c8e1afa857cd5e313c19948040e41b8227;hp=b2d72f24708f73db0c7cc900d3f9572f91f3be14;hpb=42123ab8a71080b6d15fca4e0c43ae76abf00a1e;p=lyx.git diff --git a/src/mathed/InsetMathCases.h b/src/mathed/InsetMathCases.h index b2d72f2470..84e13979e8 100644 --- a/src/mathed/InsetMathCases.h +++ b/src/mathed/InsetMathCases.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. */ @@ -23,9 +23,9 @@ class LaTeXFeatures; class InsetMathCases : public InsetMathGrid { public: /// - explicit InsetMathCases(row_type rows = 1u); + explicit InsetMathCases(Buffer * buf, row_type rows = 1u); /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -41,11 +41,26 @@ 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 std::auto_ptr doClone() const; + virtual Inset * clone() const; };