X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSplit.h;h=8893e7fe1d9e638515a0532d40269e00303dc564;hb=2acc4fc54c178744467b89b469f10bda90bb0310;hp=447aa0f4dd1a7ccdacceaa30a2e7fe8c2b43ad56;hpb=69fc2f6702309e4937d2d6280c579db3d9a54e4a;p=lyx.git diff --git a/src/mathed/InsetMathSplit.h b/src/mathed/InsetMathSplit.h index 447aa0f4dd..8893e7fe1d 100644 --- a/src/mathed/InsetMathSplit.h +++ b/src/mathed/InsetMathSplit.h @@ -22,7 +22,9 @@ class InsetMathSplit : public InsetMathGrid { public: /// explicit InsetMathSplit(Buffer * buf, docstring const & name, - char valign = 'c'); + char valign = 'c', bool numbered = false); + /// + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -35,12 +37,18 @@ public: /// 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: @@ -48,6 +56,8 @@ private: virtual Inset * clone() const; /// docstring name_; + /// + bool numbered_; };