2001-02-26 12:53:35 +00:00
|
|
|
// -*- C++ -*-
|
2001-02-13 13:28:32 +00:00
|
|
|
#ifndef MATH_SQRTINSET_H
|
|
|
|
#define MATH_SQRTINSET_H
|
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
#include "math_nestinset.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
/** The square root inset.
|
2002-09-11 08:26:02 +00:00
|
|
|
* \author Alejandro Aguilar Siearra
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-02-16 09:25:43 +00:00
|
|
|
*/
|
2001-08-03 17:10:22 +00:00
|
|
|
class MathSqrtInset : public MathNestInset {
|
2001-02-13 13:28:32 +00:00
|
|
|
public:
|
|
|
|
///
|
2001-06-25 00:06:33 +00:00
|
|
|
MathSqrtInset();
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2003-06-16 11:49:38 +00:00
|
|
|
InsetBase * clone() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2003-06-02 10:03:27 +00:00
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2002-03-19 16:55:58 +00:00
|
|
|
///
|
2002-03-21 06:57:13 +00:00
|
|
|
void drawT(TextPainter &, int x, int y) const;
|
2002-03-19 16:55:58 +00:00
|
|
|
///
|
2003-05-28 13:22:36 +00:00
|
|
|
void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
|
2001-11-09 08:35:57 +00:00
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
void write(WriteStream & os) const;
|
2001-04-25 15:43:57 +00:00
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
void normalize(NormalStream &) const;
|
2001-11-07 10:21:51 +00:00
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
void maple(MapleStream &) const;
|
2001-11-07 17:30:26 +00:00
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
void mathematica(MathematicaStream &) const;
|
2002-07-01 11:17:14 +00:00
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
void octave(OctaveStream &) const;
|
2002-04-25 05:58:55 +00:00
|
|
|
///
|
2001-11-07 17:30:26 +00:00
|
|
|
void mathmlize(MathMLStream &) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
#endif
|