X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSplit.h;h=0310ce13c492ca6495b8e068a0f7c8697fa11fa3;hb=30d3fcd640c180407a8a1db7679cca42eaa9e0c1;hp=06d17c47ce70f455010b17b5efe4e0a3edff406e;hpb=de6418f37765fe452f135f96dee6d49897bff215;p=lyx.git diff --git a/src/mathed/InsetMathSplit.h b/src/mathed/InsetMathSplit.h index 06d17c47ce..0310ce13c4 100644 --- a/src/mathed/InsetMathSplit.h +++ b/src/mathed/InsetMathSplit.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. */ @@ -21,25 +21,33 @@ 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'); /// void draw(PainterInfo & pi, int x, int y) const; /// - bool getStatus(LCursor & cur, FuncRequest const & cmd, + bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & flag) const; void write(WriteStream & os) const; /// void infoize(odocstream & os) const; /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// void validate(LaTeXFeatures & features) const; /// int defaultColSpace(col_type) { return 0; } /// char defaultColAlign(col_type); + /// + InsetCode lyxCode() const { return MATH_SPLIT_CODE; } + private: /// - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; /// docstring name_; };