2001-02-28 11:56:36 +00:00
|
|
|
// -*- C++ -*-
|
2001-02-13 13:28:32 +00:00
|
|
|
#ifndef MATH_SPACEINSET_H
|
|
|
|
#define MATH_SPACEINSET_H
|
|
|
|
|
2001-08-03 17:55:10 +00:00
|
|
|
#include "math_diminset.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-02-28 11:56:36 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
/// Smart spaces
|
2001-08-03 17:55:10 +00:00
|
|
|
class MathSpaceInset : public MathDimInset {
|
2001-02-13 13:28:32 +00:00
|
|
|
public:
|
|
|
|
///
|
2001-07-09 10:19:50 +00:00
|
|
|
explicit MathSpaceInset(int sp);
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2002-06-25 13:19:50 +00:00
|
|
|
explicit MathSpaceInset(string const & name);
|
|
|
|
///
|
2001-07-09 10:19:50 +00:00
|
|
|
MathInset * clone() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-11-15 14:14:37 +00:00
|
|
|
MathSpaceInset const * asSpaceInset() const { return this; }
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-11-15 14:14:37 +00:00
|
|
|
MathSpaceInset * asSpaceInset() { return this; }
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-11-15 14:14:37 +00:00
|
|
|
void incSpace();
|
2001-04-25 15:43:57 +00:00
|
|
|
///
|
2002-05-30 07:09:54 +00:00
|
|
|
void metrics(MathMetricsInfo & st) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2002-05-30 07:09:54 +00:00
|
|
|
void draw(MathPainterInfo &, int x, int y) const;
|
2001-11-15 14:14:37 +00:00
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
///
|
2001-11-15 14:14:37 +00:00
|
|
|
void normalize(NormalStream &) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-11-15 14:14:37 +00:00
|
|
|
void maplize(MapleStream &) const;
|
|
|
|
///
|
2002-07-01 11:17:14 +00:00
|
|
|
void mathematicize(MathematicaStream &) const;
|
|
|
|
///
|
2001-11-15 14:14:37 +00:00
|
|
|
void octavize(OctaveStream &) const;
|
|
|
|
///
|
|
|
|
void write(WriteStream & os) const;
|
2001-02-28 11:56:36 +00:00
|
|
|
private:
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-02-28 11:56:36 +00:00
|
|
|
int space_;
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
#endif
|