mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-29 12:48:33 +00:00
77234fecd8
Now all cells are correctly visited in sequence when moving with cursor left/right.
75 lines
1.5 KiB
C++
75 lines
1.5 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;
|
|
///
|
|
bool idxForward(Cursor & cur) const;
|
|
///
|
|
bool idxBackward(Cursor & cur) const;
|
|
///
|
|
bool idxFirst(Cursor &) const;
|
|
///
|
|
bool idxLast(Cursor &) 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;
|
|
};
|
|
|
|
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
|