mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
324e5571ca
* New virtual functions leftMargin() and rightMargin() to get rid of drawWithMargin() * Factor and rewrite code for borders. * Fix several offset calculations. Known issues: * Borders of multicols look too good and do not correspond to the pdf output. (non-regression) * Bounding box for Hull (Regexp) not pixel-perfect. * Bounding boxes of Diagram, XYmatrix, are too tight when there are borders. Also border should be disabled. (non-regression)
111 lines
2.1 KiB
C++
111 lines
2.1 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 "MetricsInfo.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include <ostream>
|
|
|
|
namespace lyx {
|
|
|
|
InsetMathTabular::InsetMathTabular(Buffer * buf, docstring const & name, int m,
|
|
int n)
|
|
: InsetMathGrid(buf, m, n), name_(name)
|
|
{}
|
|
|
|
|
|
InsetMathTabular::InsetMathTabular(Buffer * buf, docstring const & name, int m,
|
|
int n, char valign, docstring const & halign)
|
|
: InsetMathGrid(buf, m, n, valign, halign), name_(name)
|
|
{}
|
|
|
|
|
|
|
|
Inset * InsetMathTabular::clone() const
|
|
{
|
|
return new InsetMathTabular(*this);
|
|
}
|
|
|
|
|
|
void InsetMathTabular::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
Changer dummy = mi.base.changeFontSet("textnormal");
|
|
InsetMathGrid::metrics(mi, dim);
|
|
}
|
|
|
|
|
|
void InsetMathTabular::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
Changer dummy = pi.base.changeFontSet("textnormal");
|
|
InsetMathGrid::draw(pi, x, y);
|
|
}
|
|
|
|
|
|
void InsetMathTabular::write(WriteStream & os) const
|
|
{
|
|
ModeSpecifier specifier(os, TEXT_MODE);
|
|
|
|
if (os.fragile())
|
|
os << "\\protect";
|
|
os << "\\begin{" << name_ << '}';
|
|
bool open = os.startOuterRow();
|
|
|
|
char const v = verticalAlignment();
|
|
if (v == 't' || v == 'b')
|
|
os << '[' << v << ']';
|
|
os << '{' << horizontalAlignments() << "}\n";
|
|
|
|
InsetMathGrid::write(os);
|
|
|
|
if (os.fragile())
|
|
os << "\\protect";
|
|
os << "\\end{" << name_ << '}';
|
|
if (open)
|
|
os.startOuterRow();
|
|
// 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
|