2001-08-08 17:26:30 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
#ifndef MATH_STACKRELINSET_H
|
|
|
|
|
#define MATH_STACKRELINSET_H
|
|
|
|
|
|
|
|
|
|
#include "math_fracbase.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma interface
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-03-21 17:42:56 +00:00
|
|
|
|
/** Stackrel objects
|
2001-08-08 17:26:30 +00:00
|
|
|
|
\author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*/
|
|
|
|
|
class MathStackrelInset : public MathFracbaseInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
MathStackrelInset();
|
|
|
|
|
///
|
|
|
|
|
MathInset * clone() const;
|
|
|
|
|
///
|
2001-10-19 11:25:48 +00:00
|
|
|
|
void metrics(MathMetricsInfo const & st) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
///
|
|
|
|
|
void draw(Painter &, int x, int y) const;
|
2001-11-09 08:35:57 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
|
///
|
|
|
|
|
void normalize(NormalStream &) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|