X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSubstack.h;h=822b0aa4533427ec71dc22a9cd50cf3012a33478;hb=2de30c62f8d671a8c8d4d52a6a7310e2c5ca84de;hp=6d279a6cee8eaed9d7fef115ad6a363c2ad72aa9;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathSubstack.h b/src/mathed/InsetMathSubstack.h index 6d279a6cee..822b0aa453 100644 --- a/src/mathed/InsetMathSubstack.h +++ b/src/mathed/InsetMathSubstack.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,12 +15,15 @@ #include "InsetMathGrid.h" +namespace lyx { + + /// support for AMS's \\substack class InsetMathSubstack : public InsetMathGrid { public: /// - InsetMathSubstack(); + InsetMathSubstack(Buffer * buf); /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -29,20 +32,30 @@ public: InsetMathSubstack const * asSubstackInset() const { return this; } /// - bool getStatus(LCursor & cur, FuncRequest const & cmd, + bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & flag) const; /// - void infoize(std::ostream & os) const; + void infoize(odocstream & os) const; /// void write(WriteStream & os) const; /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// void normalize(NormalStream &) const; /// void maple(MapleStream &) const; /// - void validate(LaTeXFeatures & features) const; + void validate(LaTeXFeatures &) const; + /// + InsetCode lyxCode() const { return MATH_SUBSTACK_CODE; } + private: - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; }; + + +} // namespace lyx #endif