X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_rootinset.h;h=025304b3340947e48c034011a3c01e8bfb2f0625;hb=12ac7f339e14c4f76a24f45a21c0697303099145;hp=97e56ea6259a5e975ed59b8310e7a151d4dadaee;hpb=8b7b3a589507e2bed9777f2854ea731c454492e4;p=lyx.git diff --git a/src/mathed/math_rootinset.h b/src/mathed/math_rootinset.h index 97e56ea625..025304b334 100644 --- a/src/mathed/math_rootinset.h +++ b/src/mathed/math_rootinset.h @@ -1,49 +1,45 @@ // -*- C++ -*- -/* - * File: math_root.h - * Purpose: Declaration of the root object - * Author: Alejandro Aguilar Sierra - * Created: January 1999 - * Description: Root math object +/** + * \file math_rootinset.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * Copyright: 1999 Alejandro Aguilar Sierra + * \author Alejandro Aguilar Sierra + * \author André Pönitz * - * You are free to use and modify this code under the terms of - * the GNU General Public Licence version 2 or later. + * Full author contact details are available in file CREDITS. */ #ifndef MATH_ROOT_H #define MATH_ROOT_H #include "math_nestinset.h" -#include "symbol_def.h" -#ifdef __GNUG__ -#pragma interface -#endif -/** The general n-th root inset. - \author Alejandro Aguilar Sierra - \version January 1999 - */ +/// The general n-th root inset. class MathRootInset : public MathNestInset { public: /// MathRootInset(); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; + /// + bool idxUpDown(LCursor & cur, bool up) const; /// - void draw(Painter &, int x, int y) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; + /// + void draw(PainterInfo & pi, int x, int y) const; + /// - void write(std::ostream &, bool fragile) const; + void write(WriteStream & os) const; /// - void writeNormal(std::ostream &) const; + void normalize(NormalStream &) const; /// - void metrics(MathStyles st) const; + void mathmlize(MathMLStream &) const; /// - bool idxUp(int & idx, int & pos) const; + void maple(MapleStream &) const; /// - bool idxDown(int & idx, int & pos) const; + void octave(OctaveStream &) const; }; #endif