2002-02-13 13:15:15 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
#ifndef MATH_AMSARRAYINSET_H
|
|
|
|
#define MATH_AMSARRAYINSET_H
|
|
|
|
|
|
|
|
#include "math_gridinset.h"
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2002-07-11 09:34:58 +00:00
|
|
|
//
|
|
|
|
// used for [pbvV]matrix, psmatrix etc
|
|
|
|
//
|
|
|
|
|
2002-02-13 13:15:15 +00:00
|
|
|
|
|
|
|
class MathAMSArrayInset : public MathGridInset {
|
2002-03-21 17:42:56 +00:00
|
|
|
public:
|
2002-02-13 13:15:15 +00:00
|
|
|
///
|
2002-06-24 15:37:14 +00:00
|
|
|
MathAMSArrayInset(string const & name, int m, int n);
|
2002-02-13 13:15:15 +00:00
|
|
|
///
|
2002-06-24 15:37:14 +00:00
|
|
|
MathAMSArrayInset(string const & name);
|
2002-02-13 13:15:15 +00:00
|
|
|
///
|
|
|
|
MathInset * clone() const;
|
|
|
|
///
|
2002-05-30 07:09:54 +00:00
|
|
|
void metrics(MathMetricsInfo & st) const;
|
2002-02-13 13:15:15 +00:00
|
|
|
///
|
2002-05-30 07:09:54 +00:00
|
|
|
void draw(MathPainterInfo & pain, int x, int y) const;
|
2002-02-13 13:15:15 +00:00
|
|
|
///
|
|
|
|
MathAMSArrayInset * asAMSArrayInset() { return this; }
|
2002-08-09 07:01:17 +00:00
|
|
|
///
|
|
|
|
MathAMSArrayInset const * asAMSArrayInset() const { return this; }
|
2002-02-13 13:15:15 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
///
|
|
|
|
void normalize(NormalStream &) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
char const * name_left() const;
|
|
|
|
///
|
|
|
|
char const * name_right() const;
|
|
|
|
|
|
|
|
///
|
|
|
|
string name_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|