lyx_mirror/src/mathed/math_rootinset.h
André Pönitz 1eaa3eb913 more IU
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8371 a592a061-630c-0410-9148-cb99ea01b6c8
2004-01-26 10:13:15 +00:00

46 lines
908 B
C++

// -*- C++ -*-
/**
* \file math_rootinset.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Alejandro Aguilar Sierra
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#ifndef MATH_ROOT_H
#define MATH_ROOT_H
#include "math_nestinset.h"
/// The general n-th root inset.
class MathRootInset : public MathNestInset {
public:
///
MathRootInset();
///
virtual std::auto_ptr<InsetBase> clone() const;
///
bool idxUpDown(LCursor & cur, bool up) const;
///
void metrics(MetricsInfo & mi, Dimension & dim) const;
///
void draw(PainterInfo & pi, int x, int y) const;
///
void write(WriteStream & os) const;
///
void normalize(NormalStream &) const;
///
void mathmlize(MathMLStream &) const;
///
void maple(MapleStream &) const;
///
void octave(OctaveStream &) const;
};
#endif