X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathRoot.h;h=144ecdf7a6ece8f72b034b278ec19a6148c3ec68;hb=21c92c8a129b5f3ff56de33bf2941a25967cffbb;hp=419a26cd19fb1c23a21f77888a2d5f309cecfc64;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathRoot.h b/src/mathed/InsetMathRoot.h index 419a26cd19..144ecdf7a6 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. */ @@ -16,13 +16,25 @@ #include "InsetMathNest.h" +namespace lyx { + + /// The general n-th root inset. class InsetMathRoot : public InsetMathNest { public: /// - InsetMathRoot(); + explicit InsetMathRoot(Buffer * buf); + /// + bool idxUpDown(Cursor & cur, bool up) const; + /// + bool idxForward(Cursor & cur) const; /// - bool idxUpDown(LCursor & cur, bool up) const; + bool idxBackward(Cursor & cur) const; + /// + bool idxFirst(Cursor &) const; + /// + bool idxLast(Cursor &) const; + /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -33,13 +45,30 @@ public: /// void normalize(NormalStream &) const; /// - void mathmlize(MathMLStream &) const; + 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; }; +void mathed_root_metrics(MetricsInfo & mi, MathData const & nucleus, + MathData const * root, Dimension & dim); + +void mathed_draw_root(PainterInfo & pi, int x, int y, MathData const & nucleus, + MathData const * root, Dimension const & dim); + + +} // namespace lyx #endif