2002-02-05 13:27:34 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
#ifndef MATH_XYMATRIX_H
|
|
|
|
#define MATH_XYMATRIX_H
|
|
|
|
|
|
|
|
#include "math_gridinset.h"
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
class MathXYMatrixInset : public MathGridInset {
|
2002-03-21 17:42:56 +00:00
|
|
|
public:
|
2002-02-05 13:27:34 +00:00
|
|
|
///
|
|
|
|
MathXYMatrixInset();
|
|
|
|
///
|
|
|
|
MathInset * clone() const;
|
|
|
|
///
|
2002-05-30 07:09:54 +00:00
|
|
|
void metrics(MathMetricsInfo & st) const;
|
2002-02-05 13:27:34 +00:00
|
|
|
///
|
2002-02-11 08:19:02 +00:00
|
|
|
MathXYMatrixInset const * asXYMatrixInset() const { return this; }
|
2002-02-08 08:03:38 +00:00
|
|
|
///
|
2002-02-11 08:19:02 +00:00
|
|
|
virtual int colsep() const;
|
|
|
|
///
|
|
|
|
virtual int rowsep() const;
|
2002-02-05 13:27:34 +00:00
|
|
|
|
2002-02-11 08:19:02 +00:00
|
|
|
///
|
|
|
|
void normalize();
|
2002-02-05 13:27:34 +00:00
|
|
|
///
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
///
|
|
|
|
void normalize(NormalStream &) const;
|
|
|
|
///
|
|
|
|
void maplize(MapleStream &) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|