X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSplit.h;h=8893e7fe1d9e638515a0532d40269e00303dc564;hb=02e82157ec583c3900e359de86be79fac6512387;hp=327b3010d6135bd613fb9b0760945b3a8b3a96aa;hpb=8a9d0934e96c91fcb117a877e6579e32502d8cc0;p=lyx.git diff --git a/src/mathed/InsetMathSplit.h b/src/mathed/InsetMathSplit.h index 327b3010d6..8893e7fe1d 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. */ @@ -15,31 +15,51 @@ #include "InsetMathGrid.h" +namespace lyx { + + class InsetMathSplit : public InsetMathGrid { public: /// - explicit InsetMathSplit(std::string 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; - /// - bool getStatus(LCursor & cur, FuncRequest const & cmd, + bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & flag) const; void write(WriteStream & os) const; /// - void infoize(std::ostream & 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; } /// + 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 std::auto_ptr doClone() const; /// - std::string name_; + virtual Inset * clone() const; + /// + docstring name_; + /// + bool numbered_; }; + +} // namespace lyx #endif