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
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
/** The square root inset.
|
|
|
|
\author Alejandro Aguilar Siearra
|
|
|
|
*/
|
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
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
MathInset * clone() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
void draw(Painter &, int x, int y) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2002-03-19 16:55:58 +00:00
|
|
|
void metrics(MathMetricsInfo const & mi) const;
|
|
|
|
///
|
|
|
|
void draw(TextPainter &, int x, int y) const;
|
|
|
|
///
|
|
|
|
void metrics(TextMetricsInfo const & mi) 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
|
|
|
///
|
2001-11-07 17:30:26 +00:00
|
|
|
void maplize(MapleStream &) const;
|
|
|
|
///
|
|
|
|
void mathmlize(MathMLStream &) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
#endif
|