1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
2002-09-11 08:26:02 +00:00
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
* \file InsetMathRoot.h
|
2003-08-19 13:00:56 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
2003-08-19 13:00:56 +00:00
|
|
|
* \author Alejandro Aguilar Sierra
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
2003-08-19 13:00:56 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
1999-09-27 18:44:28 +00:00
|
|
|
*/
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
#ifndef MATH_ROOT_H
|
|
|
|
#define MATH_ROOT_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMathNest.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
/// The general n-th root inset.
|
2006-09-16 18:11:38 +00:00
|
|
|
class InsetMathRoot : public InsetMathNest {
|
2001-02-16 09:25:43 +00:00
|
|
|
public:
|
|
|
|
///
|
2019-09-15 21:56:17 +00:00
|
|
|
explicit InsetMathRoot(Buffer * buf);
|
2001-02-16 09:25:43 +00:00
|
|
|
///
|
2020-10-03 12:42:14 +00:00
|
|
|
bool idxUpDown(Cursor & cur, bool up) const override;
|
2018-11-07 21:53:00 +00:00
|
|
|
///
|
2020-10-04 14:56:53 +00:00
|
|
|
bool idxForward(Cursor & cur) const override;
|
2018-11-07 21:53:00 +00:00
|
|
|
///
|
2020-10-03 12:42:14 +00:00
|
|
|
bool idxBackward(Cursor & cur) const override;
|
2018-11-10 13:55:00 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
bool idxFirst(Cursor &) const override;
|
2018-11-10 13:55:00 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
bool idxLast(Cursor &) const override;
|
2018-11-06 07:29:47 +00:00
|
|
|
|
2001-04-25 15:43:57 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const override;
|
2001-02-16 09:25:43 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void draw(PainterInfo & pi, int x, int y) const override;
|
2001-11-09 08:35:57 +00:00
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
///
|
2020-12-26 19:04:36 +00:00
|
|
|
void write(TeXMathStream & os) const override;
|
2001-11-09 08:35:57 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void normalize(NormalStream &) const override;
|
2001-11-07 13:15:59 +00:00
|
|
|
///
|
2020-12-26 19:02:46 +00:00
|
|
|
void mathmlize(MathMLStream &) const override;
|
2001-11-07 17:30:26 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void htmlize(HtmlStream &) const override;
|
2010-03-31 20:31:04 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void maple(MapleStream &) const override;
|
2002-10-28 17:15:19 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void mathematica(MathematicaStream &) const override;
|
2007-01-07 03:28:53 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void octave(OctaveStream &) const override;
|
2009-07-16 19:00:24 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
InsetCode lyxCode() const override { return MATH_ROOT_CODE; }
|
2010-03-31 20:31:04 +00:00
|
|
|
///
|
2020-10-01 07:42:11 +00:00
|
|
|
void validate(LaTeXFeatures &) const override;
|
2009-07-16 19:00:24 +00:00
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
private:
|
2020-10-01 07:42:11 +00:00
|
|
|
Inset * clone() const override;
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
2001-02-16 09:25:43 +00:00
|
|
|
|
2017-12-04 09:44:49 +00:00
|
|
|
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);
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
1999-09-27 18:44:28 +00:00
|
|
|
#endif
|