mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
688c186614
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21482 a592a061-630c-0410-9148-cb99ea01b6c8
117 lines
2.2 KiB
C++
117 lines
2.2 KiB
C++
/**
|
|
* \file InsetMathTabular.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 "InsetMathTabular.h"
|
|
|
|
#include "MathData.h"
|
|
#include "MathStream.h"
|
|
#include "MathStream.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include <ostream>
|
|
|
|
|
|
namespace lyx {
|
|
|
|
InsetMathTabular::InsetMathTabular(docstring const & name, int m, int n)
|
|
: InsetMathGrid(m, n), name_(name)
|
|
{}
|
|
|
|
|
|
InsetMathTabular::InsetMathTabular(docstring const & name, int m, int n,
|
|
char valign, docstring const & halign)
|
|
: InsetMathGrid(m, n, valign, halign), name_(name)
|
|
{}
|
|
|
|
|
|
InsetMathTabular::InsetMathTabular(docstring const & name, char valign,
|
|
docstring const & halign)
|
|
: InsetMathGrid(valign, halign), name_(name)
|
|
{}
|
|
|
|
|
|
Inset * InsetMathTabular::clone() const
|
|
{
|
|
return new InsetMathTabular(*this);
|
|
}
|
|
|
|
|
|
void InsetMathTabular::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
FontSetChanger dummy(mi.base, "textnormal");
|
|
InsetMathGrid::metrics(mi, dim);
|
|
dim.wid += 6;
|
|
}
|
|
|
|
|
|
Dimension const InsetMathTabular::dimension(BufferView const & bv) const
|
|
{
|
|
Dimension dim = InsetMathGrid::dimension(bv);
|
|
dim.wid += 6;
|
|
return dim;
|
|
}
|
|
|
|
|
|
void InsetMathTabular::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
FontSetChanger dummy(pi.base, "textnormal");
|
|
InsetMathGrid::drawWithMargin(pi, x, y, 4, 2);
|
|
}
|
|
|
|
|
|
void InsetMathTabular::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";
|
|
|
|
InsetMathGrid::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 InsetMathTabular::infoize(odocstream & os) const
|
|
{
|
|
docstring name = name_;
|
|
name[0] = support::uppercase(name[0]);
|
|
os << name << ' ';
|
|
}
|
|
|
|
|
|
void InsetMathTabular::normalize(NormalStream & os) const
|
|
{
|
|
os << '[' << name_ << ' ';
|
|
InsetMathGrid::normalize(os);
|
|
os << ']';
|
|
}
|
|
|
|
|
|
void InsetMathTabular::maple(MapleStream & os) const
|
|
{
|
|
os << "array(";
|
|
InsetMathGrid::maple(os);
|
|
os << ')';
|
|
}
|
|
|
|
|
|
} // namespace lyx
|