lyx_mirror/src/mathed/math_arrayinset.C

62 lines
1.1 KiB
C++
Raw Normal View History

#ifdef __GNUG__
#pragma implementation
#endif
#include "math_arrayinset.h"
#include "support/LOstream.h"
MathArrayInset::MathArrayInset(int m, int n)
: MathGridInset(m, n)
{}
MathArrayInset::MathArrayInset(int m, int n, char valign, string const & halign)
: MathGridInset(m, n, valign, halign)
{}
MathInset * MathArrayInset::clone() const
{
return new MathArrayInset(*this);
}
void MathArrayInset::write(MathWriteInfo & os) const
{
if (os.fragile)
os << "\\protect";
os << "\\begin{array}";
if (v_align_ == 't' || v_align_ == 'b')
os << '[' << char(v_align_) << ']';
os << '{';
for (col_type col = 0; col < ncols(); ++col)
os << colinfo_[col].align_;
os << "}\n";
MathGridInset::write(os);
if (os.fragile)
os << "\\protect";
os << "\\end{array}\n";
}
void MathArrayInset::writeNormal(std::ostream & os) const
{
os << "[array ";
MathGridInset::writeNormal(os);
os << "]";
}
void MathArrayInset::metrics(MathMetricsInfo const & st) const
{
MathMetricsInfo mi = st;
if (mi.style == LM_ST_DISPLAY)
mi.style = LM_ST_TEXT;
MathGridInset::metrics(mi);
}