lyx_mirror/src/mathed/InsetMathAMSArray.cpp
André Pönitz ed858d73e5 use bald pointers in clone()
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19920 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-30 18:03:17 +00:00

155 lines
3.1 KiB
C++

/**
* \file InsetMathAMSArray.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "LaTeXFeatures.h"
#include "InsetMathAMSArray.h"
#include "MathData.h"
#include "MathStream.h"
#include "MathStream.h"
#include "MathSupport.h"
#include "FuncRequest.h"
#include "FuncStatus.h"
#include "gettext.h"
#include "support/lstrings.h"
#include "support/std_ostream.h"
namespace lyx {
using support::bformat;
InsetMathAMSArray::InsetMathAMSArray(docstring const & name, int m, int n)
: InsetMathGrid(m, n), name_(name)
{}
InsetMathAMSArray::InsetMathAMSArray(docstring const & name)
: InsetMathGrid(1, 1), name_(name)
{}
Inset * InsetMathAMSArray::clone() const
{
return new InsetMathAMSArray(*this);
}
char const * InsetMathAMSArray::name_left() const
{
if (name_ == "bmatrix")
return "[";
if (name_ == "Bmatrix")
return "{";
if (name_ == "vmatrix")
return "|";
if (name_ == "Vmatrix")
return "Vert";
if (name_ == "pmatrix")
return "(";
return ".";
}
char const * InsetMathAMSArray::name_right() const
{
if (name_ == "bmatrix")
return "]";
if (name_ == "Bmatrix")
return "}";
if (name_ == "vmatrix")
return "|";
if (name_ == "Vmatrix")
return "Vert";
if (name_ == "pmatrix")
return ")";
return ".";
}
bool InsetMathAMSArray::metrics(MetricsInfo & mi, Dimension & dim) const
{
ArrayChanger dummy(mi.base);
InsetMathGrid::metrics(mi, dim);
dim.wid += 14;
bool const changed = dim_ != dim;
dim_ = dim;
return changed;
}
void InsetMathAMSArray::draw(PainterInfo & pi, int x, int y) const
{
int const yy = y - dim_.ascent();
// Drawing the deco after an ArrayChanger does not work
mathed_draw_deco(pi, x + 1, yy, 5, dim_.height(), from_ascii(name_left()));
mathed_draw_deco(pi, x + dim_.width() - 8, yy, 5, dim_.height(), from_ascii(name_right()));
ArrayChanger dummy(pi.base);
InsetMathGrid::drawWithMargin(pi, x, y, 6, 8);
}
bool InsetMathAMSArray::getStatus(Cursor & cur, FuncRequest const & cmd,
FuncStatus & flag) const
{
switch (cmd.action) {
case LFUN_TABULAR_FEATURE: {
docstring const & s = cmd.argument();
if (s == "add-vline-left" || s == "add-vline-right") {
flag.message(bformat(
from_utf8(N_("Can't add vertical grid lines in '%1$s'")), name_));
flag.enabled(false);
return true;
}
return InsetMathGrid::getStatus(cur, cmd, flag);
}
default:
return InsetMathGrid::getStatus(cur, cmd, flag);
}
}
void InsetMathAMSArray::write(WriteStream & os) const
{
os << "\\begin{" << name_ << '}';
InsetMathGrid::write(os);
os << "\\end{" << name_ << '}';
}
void InsetMathAMSArray::infoize(odocstream & os) const
{
docstring name = name_;
name[0] = support::uppercase(name[0]);
os << name << ' ';
}
void InsetMathAMSArray::normalize(NormalStream & os) const
{
os << '[' << name_ << ' ';
InsetMathGrid::normalize(os);
os << ']';
}
void InsetMathAMSArray::validate(LaTeXFeatures & features) const
{
features.require("amsmath");
InsetMathGrid::validate(features);
}
} // namespace lyx