X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathRoot.h;h=18bacbbf18888bc825da8c080217ea50c9d50733;hb=4c724a6072013247ac178f0acec06825585c6c55;hp=0ba0653261678133935c1eaab6aa8532ec412767;hpb=4709a0c535da50f93db30aaffc93f016fd3220ed;p=lyx.git diff --git a/src/mathed/InsetMathRoot.h b/src/mathed/InsetMathRoot.h index 0ba0653261..18bacbbf18 100644 --- a/src/mathed/InsetMathRoot.h +++ b/src/mathed/InsetMathRoot.h @@ -5,7 +5,7 @@ * Licence details can be found in the file COPYING. * * \author Alejandro Aguilar Sierra - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -23,11 +23,11 @@ namespace lyx { class InsetMathRoot : public InsetMathNest { public: /// - InsetMathRoot(); + InsetMathRoot(Buffer * buf); /// - bool idxUpDown(LCursor & cur, bool up) const; + bool idxUpDown(Cursor & cur, bool up) const; /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; @@ -38,13 +38,20 @@ public: /// void mathmlize(MathStream &) const; /// + void htmlize(HtmlStream &) const; + /// void maple(MapleStream &) const; /// void mathematica(MathematicaStream &) const; /// void octave(OctaveStream &) const; + /// + InsetCode lyxCode() const { return MATH_ROOT_CODE; } + /// + void validate(LaTeXFeatures &) const; + private: - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; };