mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
32ee4c13cf
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33983 a592a061-630c-0410-9148-cb99ea01b6c8
61 lines
1.1 KiB
C++
61 lines
1.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetMathRoot.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 "InsetMathNest.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
/// The general n-th root inset.
|
|
class InsetMathRoot : public InsetMathNest {
|
|
public:
|
|
///
|
|
InsetMathRoot(Buffer * buf);
|
|
///
|
|
bool idxUpDown(Cursor & 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(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 Inset * clone() const;
|
|
};
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
#endif
|