X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathArray.cpp;h=821f4605e8f119a5fa74210d319ad9e9d06f4887;hb=3d4076b598deb18660e50ec9c327efc3b15f15d0;hp=31b5f4f9b3dc3f9e53dcbee0f66019b34536fbf2;hpb=70c8d87745ba7d6def7fbcb29ec00c56ac7abf80;p=lyx.git diff --git a/src/mathed/InsetMathArray.cpp b/src/mathed/InsetMathArray.cpp index 31b5f4f9b3..821f4605e8 100644 --- a/src/mathed/InsetMathArray.cpp +++ b/src/mathed/InsetMathArray.cpp @@ -3,53 +3,46 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ #include -#include "LaTeXFeatures.h" #include "InsetMathArray.h" + +#include "LaTeXFeatures.h" #include "MathData.h" #include "MathParser.h" #include "MathStream.h" +#include "MetricsInfo.h" #include "support/lstrings.h" #include #include +using namespace std; namespace lyx { -using std::getline; -using std::istringstream; -using std::istream_iterator; -using std::vector; -using std::string; - -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, char valign, - docstring const & halign) - : InsetMathGrid(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)); @@ -58,17 +51,18 @@ 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); } for (row_type row = 1; row < dat.size(); ++row) - appendRow(0); + addRow(0); for (col_type col = 1; col < dat[0].size(); ++col) addCol(0); 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])); + mathed_parse_cell(cell(index(row, col)), + from_utf8(dat[row][col]), Parse::NORMAL); } @@ -104,13 +98,16 @@ void InsetMathArray::draw(PainterInfo & pi, int x, int y) const void InsetMathArray::write(WriteStream & os) const { + MathEnsurer ensurer(os); + if (os.fragile()) os << "\\protect"; os << "\\begin{" << name_ << '}'; - if (v_align_ == 't' || v_align_ == 'b') - os << '[' << char(v_align_) << ']'; - os << '{' << halign() << "}\n"; + char const v = verticalAlignment(); + if (v == 't' || v == 'b') + os << '[' << v << ']'; + os << '{' << horizontalAlignments() << "}\n"; InsetMathGrid::write(os);