2002-02-01 10:33:06 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-09-11 08:26:02 +00:00
|
|
|
|
|
|
|
|
|
/** Underset objects
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS
|
|
|
|
|
*/
|
|
|
|
|
|
2002-02-01 10:33:06 +00:00
|
|
|
|
#ifndef MATH_UNDERSETINSET_H
|
|
|
|
|
#define MATH_UNDERSETINSET_H
|
|
|
|
|
|
|
|
|
|
|
2002-09-11 08:26:02 +00:00
|
|
|
|
#include "math_fracbase.h"
|
|
|
|
|
|
|
|
|
|
/// Inset for underset
|
2002-02-01 10:33:06 +00:00
|
|
|
|
class MathUndersetInset : public MathFracbaseInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
MathUndersetInset();
|
|
|
|
|
///
|
|
|
|
|
MathInset * clone() const;
|
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void metrics(MetricsInfo & st) const;
|
2002-02-01 10:33:06 +00:00
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
2002-02-01 10:33:06 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
|
///
|
|
|
|
|
void normalize(NormalStream &) const;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|