2002-07-08 13:35:26 +00:00
|
|
|
#ifndef MATH_PARINSET_H
|
|
|
|
#define MATH_PARINSET_H
|
|
|
|
|
2002-09-11 09:14:57 +00:00
|
|
|
|
2002-07-08 13:35:26 +00:00
|
|
|
#include "math_hullinset.h"
|
|
|
|
|
|
|
|
class MathParInset : public MathHullInset {
|
|
|
|
public:
|
|
|
|
///
|
2002-07-31 17:26:14 +00:00
|
|
|
MathParInset() {}
|
2002-07-08 13:35:26 +00:00
|
|
|
///
|
2002-08-23 11:24:55 +00:00
|
|
|
MathParInset(MathArray const & ar);
|
|
|
|
///
|
2002-07-18 11:02:33 +00:00
|
|
|
mode_type currentMode() const { return TEXT_MODE; }
|
2002-07-08 13:35:26 +00:00
|
|
|
///
|
2003-05-28 13:22:36 +00:00
|
|
|
Dimension metrics(MetricsInfo & mi) const;
|
2002-07-08 13:35:26 +00:00
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
2002-07-08 13:35:26 +00:00
|
|
|
///
|
|
|
|
void infoize(std::ostream & os) const;
|
|
|
|
///
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|