2001-08-13 15:26:41 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
#ifndef MATH_BINOMINSET_H
|
|
|
|
|
#define MATH_DINOMINSET_H
|
|
|
|
|
|
|
|
|
|
#include "math_fracbase.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Binom like objects
|
2002-09-11 08:26:02 +00:00
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
2001-08-13 15:26:41 +00:00
|
|
|
|
*/
|
|
|
|
|
class MathBinomInset : public MathFracbaseInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
2002-07-04 11:00:51 +00:00
|
|
|
|
explicit MathBinomInset(bool choose = false);
|
2001-08-13 15:26:41 +00:00
|
|
|
|
///
|
|
|
|
|
MathInset * clone() const;
|
|
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
|
void write(WriteStream & os) const;
|
2001-08-13 15:26:41 +00:00
|
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
|
void normalize(NormalStream &) const;
|
2001-08-13 15:26:41 +00:00
|
|
|
|
///
|
2002-05-30 07:09:54 +00:00
|
|
|
|
void metrics(MathMetricsInfo & st) const;
|
2001-08-13 15:26:41 +00:00
|
|
|
|
///
|
2002-05-30 07:09:54 +00:00
|
|
|
|
void draw(MathPainterInfo &, int x, int y) const;
|
2001-08-13 15:26:41 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
|
|
|
|
int dw() const;
|
2002-07-04 11:00:51 +00:00
|
|
|
|
///
|
|
|
|
|
bool choose_;
|
2001-08-13 15:26:41 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|