X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSplit.h;h=8893e7fe1d9e638515a0532d40269e00303dc564;hb=5fdc577badb1cb133d6a0dc7d831bb1f82576adb;hp=4f92d59ae7dfcea3bb8b746bc0a12b174031abf0;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/mathed/InsetMathSplit.h b/src/mathed/InsetMathSplit.h index 4f92d59ae7..8893e7fe1d 100644 --- a/src/mathed/InsetMathSplit.h +++ b/src/mathed/InsetMathSplit.h @@ -21,7 +21,10 @@ namespace lyx { class InsetMathSplit : public InsetMathGrid { public: /// - explicit InsetMathSplit(docstring const & name, char valign = 'c'); + explicit InsetMathSplit(Buffer * buf, docstring const & name, + char valign = 'c', bool numbered = false); + /// + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -32,16 +35,29 @@ public: /// void infoize(odocstream & os) const; /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// void validate(LaTeXFeatures & features) const; /// int defaultColSpace(col_type) { return 0; } /// + int displayColSpace(col_type col) const; + /// char defaultColAlign(col_type); + /// + char displayColAlign(idx_type idx) const; + /// + InsetCode lyxCode() const { return MATH_SPLIT_CODE; } + private: /// virtual Inset * clone() const; /// docstring name_; + /// + bool numbered_; };