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
|
|
|
|
|
|
|
|
#include "math_inset.h"
|
2001-02-13 19:10:18 +00:00
|
|
|
#include "math_defs.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-06-25 00:06:33 +00:00
|
|
|
class MathSpaceInset : public MathInset {
|
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
|
|
|
///
|
2001-07-09 10:19:50 +00:00
|
|
|
MathInset * clone() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
|
|
|
void draw(Painter &, int, int);
|
|
|
|
///
|
2001-06-25 00:06:33 +00:00
|
|
|
void Write(std::ostream &, bool fragile) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-06-25 00:06:33 +00:00
|
|
|
void WriteNormal(std::ostream &) const;
|
2001-04-25 15:43:57 +00:00
|
|
|
///
|
2001-06-25 00:06:33 +00:00
|
|
|
void Metrics(MathStyles st);
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-02-13 16:40:19 +00:00
|
|
|
void SetSpace(int sp);
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-02-13 19:10:18 +00:00
|
|
|
int GetSpace();
|
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
|