2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_amsarrayinset.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2002-02-13 13:15:15 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2005-03-30 09:05:30 +00:00
|
|
|
|
#include "LaTeXFeatures.h"
|
2002-02-13 13:15:15 +00:00
|
|
|
|
#include "math_amsarrayinset.h"
|
2003-09-07 21:25:37 +00:00
|
|
|
|
#include "math_data.h"
|
2002-02-13 13:15:15 +00:00
|
|
|
|
#include "math_mathmlstream.h"
|
|
|
|
|
#include "math_streamstr.h"
|
|
|
|
|
#include "math_support.h"
|
|
|
|
|
|
2005-04-03 12:07:49 +00:00
|
|
|
|
#include "funcrequest.h"
|
|
|
|
|
#include "FuncStatus.h"
|
|
|
|
|
#include "gettext.h"
|
|
|
|
|
|
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
#include "support/std_ostream.h"
|
|
|
|
|
|
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2003-07-25 17:11:25 +00:00
|
|
|
|
using std::auto_ptr;
|
2005-04-03 12:07:49 +00:00
|
|
|
|
using lyx::support::bformat;
|
2003-07-25 17:11:25 +00:00
|
|
|
|
|
2002-02-13 13:15:15 +00:00
|
|
|
|
|
|
|
|
|
MathAMSArrayInset::MathAMSArrayInset(string const & name, int m, int n)
|
|
|
|
|
: MathGridInset(m, n), name_(name)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MathAMSArrayInset::MathAMSArrayInset(string const & name)
|
|
|
|
|
: MathGridInset(1, 1), name_(name)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
|
auto_ptr<InsetBase> MathAMSArrayInset::doClone() const
|
2002-02-13 13:15:15 +00:00
|
|
|
|
{
|
2003-07-25 17:11:25 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new MathAMSArrayInset(*this));
|
2002-02-13 13:15:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void MathAMSArrayInset::metrics(MetricsInfo & mi, Dimension & dim) const
|
2002-02-13 13:15:15 +00:00
|
|
|
|
{
|
2003-03-21 14:20:48 +00:00
|
|
|
|
MetricsInfo m = mi;
|
2002-05-30 07:09:54 +00:00
|
|
|
|
if (m.base.style == LM_ST_DISPLAY)
|
|
|
|
|
m.base.style = LM_ST_TEXT;
|
2004-04-06 19:25:39 +00:00
|
|
|
|
MathGridInset::metrics(m, dim);
|
2005-04-04 22:11:53 +00:00
|
|
|
|
dim.wid += 14;
|
2004-04-06 19:25:39 +00:00
|
|
|
|
dim_ = dim;
|
2002-02-13 13:15:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void MathAMSArrayInset::draw(PainterInfo & pi, int x, int y) const
|
2002-03-21 17:42:56 +00:00
|
|
|
|
{
|
2005-04-04 22:11:53 +00:00
|
|
|
|
MathGridInset::drawWithMargin(pi, x, y, 6, 8);
|
2003-05-28 13:22:36 +00:00
|
|
|
|
int const yy = y - dim_.ascent();
|
|
|
|
|
mathed_draw_deco(pi, x + 1, yy, 5, dim_.height(), name_left());
|
2005-04-04 22:11:53 +00:00
|
|
|
|
mathed_draw_deco(pi, x + dim_.width() - 8, yy, 5, dim_.height(), name_right());
|
2004-04-07 16:54:15 +00:00
|
|
|
|
setPosCache(pi, x, y);
|
2002-02-13 13:15:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-04-03 12:07:49 +00:00
|
|
|
|
bool MathAMSArrayInset::getStatus(LCursor & cur, FuncRequest const & cmd,
|
|
|
|
|
FuncStatus & flag) const
|
|
|
|
|
{
|
|
|
|
|
switch (cmd.action) {
|
|
|
|
|
case LFUN_TABULAR_FEATURE: {
|
|
|
|
|
string const s = cmd.argument;
|
|
|
|
|
if (s == "add-vline-left" || s == "add-vline-right") {
|
|
|
|
|
flag.message(bformat(
|
|
|
|
|
N_("Can't add vertical grid lines in '%1$s'"),
|
|
|
|
|
name_));
|
|
|
|
|
flag.enabled(false);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return MathGridInset::getStatus(cur, cmd, flag);
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
return MathGridInset::getStatus(cur, cmd, flag);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-02-13 13:15:15 +00:00
|
|
|
|
void MathAMSArrayInset::write(WriteStream & os) const
|
|
|
|
|
{
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << "\\begin{" << name_ << '}';
|
2002-02-13 13:15:15 +00:00
|
|
|
|
MathGridInset::write(os);
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << "\\end{" << name_ << '}';
|
2002-02-13 13:15:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-04-03 12:07:49 +00:00
|
|
|
|
void MathAMSArrayInset::infoize(std::ostream & os) const
|
|
|
|
|
{
|
|
|
|
|
string name = name_;
|
|
|
|
|
name[0] = lyx::support::uppercase(name[0]);
|
|
|
|
|
os << name << ' ';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-02-13 13:15:15 +00:00
|
|
|
|
void MathAMSArrayInset::normalize(NormalStream & os) const
|
|
|
|
|
{
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << '[' << name_ << ' ';
|
2002-02-13 13:15:15 +00:00
|
|
|
|
MathGridInset::normalize(os);
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << ']';
|
2002-02-13 13:15:15 +00:00
|
|
|
|
}
|
2005-03-30 09:05:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void MathAMSArrayInset::validate(LaTeXFeatures & features) const
|
|
|
|
|
{
|
|
|
|
|
features.require("amsmath");
|
|
|
|
|
MathGridInset::validate(features);
|
|
|
|
|
}
|