lyx_mirror/src/mathed/math_tabularinset.C
Martin Vermeer e9ac548c9a Final touches, corner markers & clickability in math
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9778 a592a061-630c-0410-9148-cb99ea01b6c8
2005-04-04 22:11:53 +00:00

109 lines
2.2 KiB
C

/**
* \file math_tabularinset.C
* 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 "math_tabularinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "support/lstrings.h"
#include "support/std_ostream.h"
#include <iterator>
using std::string;
using std::auto_ptr;
MathTabularInset::MathTabularInset(string const & name, int m, int n)
: MathGridInset(m, n), name_(name)
{}
MathTabularInset::MathTabularInset(string const & name, int m, int n,
char valign, string const & halign)
: MathGridInset(m, n, valign, halign), name_(name)
{}
MathTabularInset::MathTabularInset(string const & name, char valign,
string const & halign)
: MathGridInset(valign, halign), name_(name)
{}
auto_ptr<InsetBase> MathTabularInset::doClone() const
{
return auto_ptr<InsetBase>(new MathTabularInset(*this));
}
void MathTabularInset::metrics(MetricsInfo & mi, Dimension & dim) const
{
FontSetChanger dummy(mi.base, "textnormal");
MathGridInset::metrics(mi, dim);
dim.wid += 6;
dim_ = dim;
}
void MathTabularInset::draw(PainterInfo & pi, int x, int y) const
{
FontSetChanger dummy(pi.base, "textnormal");
MathGridInset::drawWithMargin(pi, x, y, 4, 2);
}
void MathTabularInset::write(WriteStream & os) const
{
if (os.fragile())
os << "\\protect";
os << "\\begin{" << name_ << '}';
if (v_align_ == 't' || v_align_ == 'b')
os << '[' << char(v_align_) << ']';
os << '{' << halign() << "}\n";
MathGridInset::write(os);
if (os.fragile())
os << "\\protect";
os << "\\end{" << name_ << '}';
// adding a \n here is bad if the tabular is the last item
// in an \eqnarray...
}
void MathTabularInset::infoize(std::ostream & os) const
{
string name = name_;
name[0] = lyx::support::uppercase(name[0]);
os << name << ' ';
}
void MathTabularInset::normalize(NormalStream & os) const
{
os << '[' << name_ << ' ';
MathGridInset::normalize(os);
os << ']';
}
void MathTabularInset::maple(MapleStream & os) const
{
os << "array(";
MathGridInset::maple(os);
os << ')';
}