X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathArray.cpp;h=eeea831d05e5c2d7f2279a88c6aa7a3553ba9c00;hb=25d64bf43aba78a1ed20c88dfdc4cac269b53985;hp=f8cc87e7726f92e6e64a24fbd1b75cf9cd0a8e95;hpb=a1a34443eff8d3224141a8d170cef3d628fb1ae4;p=lyx.git diff --git a/src/mathed/InsetMathArray.cpp b/src/mathed/InsetMathArray.cpp index f8cc87e772..eeea831d05 100644 --- a/src/mathed/InsetMathArray.cpp +++ b/src/mathed/InsetMathArray.cpp @@ -28,19 +28,21 @@ using namespace std; namespace lyx { -InsetMathArray::InsetMathArray(docstring const & name, int m, int n) - : InsetMathGrid(m, n), name_(name) +InsetMathArray::InsetMathArray(Buffer * buf, docstring const & name, int m, + int n) + : InsetMathGrid(buf, m, n), name_(name) {} -InsetMathArray::InsetMathArray(docstring const & name, int m, int n, - char valign, docstring const & halign) - : InsetMathGrid(m, n, valign, halign), name_(name) +InsetMathArray::InsetMathArray(Buffer * buf, docstring const & name, int m, + int n, char valign, docstring const & halign) + : InsetMathGrid(buf, m, n, valign, halign), name_(name) {} -InsetMathArray::InsetMathArray(docstring const & name, docstring const & str) - : InsetMathGrid(1, 1), name_(name) +InsetMathArray::InsetMathArray(Buffer * buf, docstring const & name, + docstring const & str) + : InsetMathGrid(buf, 1, 1), name_(name) { vector< vector > dat; istringstream is(to_utf8(str)); @@ -49,7 +51,7 @@ InsetMathArray::InsetMathArray(docstring const & name, docstring const & str) istringstream ls(line); typedef istream_iterator iter; vector v = vector(iter(ls), iter()); - if (v.size()) + if (!v.empty()) dat.push_back(v); } @@ -60,8 +62,7 @@ InsetMathArray::InsetMathArray(docstring const & name, docstring const & str) for (row_type row = 0; row < dat.size(); ++row) for (col_type col = 0; col < dat[0].size(); ++col) mathed_parse_cell(cell(index(row, col)), - from_utf8(dat[row][col]), - Parse::NORMAL, &buffer()); + from_utf8(dat[row][col]), Parse::NORMAL); } @@ -73,25 +74,17 @@ Inset * InsetMathArray::clone() const void InsetMathArray::metrics(MetricsInfo & mi, Dimension & dim) const { - ArrayChanger dummy(mi.base); + Changer dummy2 = mi.base.changeEnsureMath(); + Changer dummy = mi.base.changeArray(); InsetMathGrid::metrics(mi, dim); - dim.wid += 6; -} - - -Dimension const InsetMathArray::dimension(BufferView const & bv) const -{ - Dimension dim = InsetMathGrid::dimension(bv); - dim.wid += 6; - return dim; } void InsetMathArray::draw(PainterInfo & pi, int x, int y) const { - setPosCache(pi, x, y); - ArrayChanger dummy(pi.base); - InsetMathGrid::drawWithMargin(pi, x, y, 4, 2); + Changer dummy2 = pi.base.changeEnsureMath(); + Changer dummy = pi.base.changeArray(); + InsetMathGrid::draw(pi, x, y); } @@ -102,6 +95,7 @@ void InsetMathArray::write(WriteStream & os) const if (os.fragile()) os << "\\protect"; os << "\\begin{" << name_ << '}'; + bool open = os.startOuterRow(); char const v = verticalAlignment(); if (v == 't' || v == 'b') @@ -113,6 +107,8 @@ void InsetMathArray::write(WriteStream & os) const if (os.fragile()) os << "\\protect"; os << "\\end{" << name_ << '}'; + if (open) + os.startOuterRow(); // adding a \n here is bad if the array is the last item // in an \eqnarray... }