2002-02-13 13:15:15 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "math_amsarrayinset.h"
|
|
|
|
#include "math_mathmlstream.h"
|
2002-08-02 14:04:16 +00:00
|
|
|
#include "math_metricsinfo.h"
|
2002-02-13 13:15:15 +00:00
|
|
|
#include "math_support.h"
|
|
|
|
#include "math_streamstr.h"
|
|
|
|
#include "math_support.h"
|
|
|
|
#include "Lsstream.h"
|
|
|
|
|
|
|
|
|
|
|
|
MathAMSArrayInset::MathAMSArrayInset(string const & name, int m, int n)
|
|
|
|
: MathGridInset(m, n), name_(name)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
MathAMSArrayInset::MathAMSArrayInset(string const & name)
|
|
|
|
: MathGridInset(1, 1), name_(name)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
MathInset * MathAMSArrayInset::clone() const
|
|
|
|
{
|
|
|
|
return new MathAMSArrayInset(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char const * MathAMSArrayInset::name_left() const
|
|
|
|
{
|
|
|
|
if (name_ == "bmatrix")
|
|
|
|
return "[";
|
2002-08-12 07:05:02 +00:00
|
|
|
if (name_ == "Bmatrix")
|
|
|
|
return "{";
|
2002-02-14 14:19:52 +00:00
|
|
|
if (name_ == "vmatrix")
|
|
|
|
return "|";
|
|
|
|
if (name_ == "Vmatrix")
|
|
|
|
return "Vert";
|
2002-02-15 14:50:40 +00:00
|
|
|
if (name_ == "pmatrix")
|
|
|
|
return "(";
|
|
|
|
return ".";
|
2002-02-13 13:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char const * MathAMSArrayInset::name_right() const
|
|
|
|
{
|
|
|
|
if (name_ == "bmatrix")
|
|
|
|
return "]";
|
2002-08-12 07:05:02 +00:00
|
|
|
if (name_ == "Bmatrix")
|
|
|
|
return "}";
|
2002-02-14 14:19:52 +00:00
|
|
|
if (name_ == "vmatrix")
|
|
|
|
return "|";
|
|
|
|
if (name_ == "Vmatrix")
|
|
|
|
return "Vert";
|
2002-02-15 14:50:40 +00:00
|
|
|
if (name_ == "pmatrix")
|
|
|
|
return ")";
|
|
|
|
return ".";
|
2002-02-13 13:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
void MathAMSArrayInset::metrics(MathMetricsInfo & mi) const
|
2002-02-13 13:15:15 +00:00
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
MathMetricsInfo m = mi;
|
|
|
|
if (m.base.style == LM_ST_DISPLAY)
|
|
|
|
m.base.style = LM_ST_TEXT;
|
|
|
|
MathGridInset::metrics(m);
|
2002-07-11 11:27:24 +00:00
|
|
|
dim_.w += 12;
|
2002-02-13 13:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
void MathAMSArrayInset::draw(MathPainterInfo & pi, int x, int y) const
|
2002-03-21 17:42:56 +00:00
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
MathGridInset::draw(pi, x + 6, y);
|
2002-07-11 11:27:24 +00:00
|
|
|
int const yy = y - ascent();
|
2002-05-30 07:09:54 +00:00
|
|
|
mathed_draw_deco(pi, x + 1, yy, 5, height(), name_left());
|
2002-07-11 11:27:24 +00:00
|
|
|
mathed_draw_deco(pi, x + width() - 6, yy, 5, height(), name_right());
|
2002-02-13 13:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathAMSArrayInset::write(WriteStream & os) const
|
|
|
|
{
|
|
|
|
os << "\\begin{" << name_ << "}";
|
|
|
|
MathGridInset::write(os);
|
2002-02-14 13:36:39 +00:00
|
|
|
os << "\\end{" << name_ << "}";
|
2002-02-13 13:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathAMSArrayInset::normalize(NormalStream & os) const
|
|
|
|
{
|
|
|
|
os << "[" << name_ << " ";
|
|
|
|
MathGridInset::normalize(os);
|
|
|
|
os << "]";
|
|
|
|
}
|
|
|
|
|