]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_arrayinset.C
Andreas' patch to prevent crash on click on previewd inset
[lyx.git] / src / mathed / math_arrayinset.C
index ff252ee435de1844243ea61b88c05a3bca078350..be837bad25d22a580d2d71978c7cb812eefd2f78 100644 (file)
@@ -1,36 +1,62 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
+/**
+ * \file math_arrayinset.C
+ * 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 "LaTeXFeatures.h"
 #include "math_arrayinset.h"
+#include "math_data.h"
 #include "math_parser.h"
-#include "support/LOstream.h"
-#include "Lsstream.h"
 #include "math_mathmlstream.h"
+#include "math_streamstr.h"
+
+#include "support/lstrings.h"
+
+#include <iterator>
+#include <sstream>
 
+using std::getline;
+
+using std::string;
+using std::auto_ptr;
+using std::istringstream;
+using std::istream_iterator;
 using std::vector;
 
 
-MathArrayInset::MathArrayInset(int m, int n)
-       : MathGridInset(m, n)
+MathArrayInset::MathArrayInset(string const & name, int m, int n)
+       : MathGridInset(m, n), name_(name)
+{}
+
+
+MathArrayInset::MathArrayInset(string const & name, int m, int n,
+               char valign, string const & halign)
+       : MathGridInset(m, n, valign, halign), name_(name)
 {}
 
 
-MathArrayInset::MathArrayInset(int m, int n, char valign, string const & halign)
-       : MathGridInset(m, n, valign, halign)
+MathArrayInset::MathArrayInset(string const & name, char valign,
+               string const & halign)
+       : MathGridInset(valign, halign), name_(name)
 {}
 
 
-MathArrayInset::MathArrayInset(string const & str)
-       : MathGridInset(1, 1)
+MathArrayInset::MathArrayInset(string const & name, string const & str)
+       : MathGridInset(1, 1), name_(name)
 {
        vector< vector<string> > dat;
-       istringstream is(str.c_str());
-       while (is) {
-               string line;
-               getline(is, line);
-               istringstream ls(line.c_str());
-               typedef std::istream_iterator<string> iter;
+       istringstream is(str);
+       string line;
+       while (getline(is, line)) {
+               istringstream ls(line);
+               typedef istream_iterator<string> iter;
                vector<string> v = vector<string>(iter(ls), iter());
                if (v.size())
                        dat.push_back(v);
@@ -41,51 +67,81 @@ MathArrayInset::MathArrayInset(string const & str)
        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[row].size(); ++col)
+               for (col_type col = 0; col < dat[0].size(); ++col)
                        mathed_parse_cell(cell(index(row, col)), dat[row][col]);
 }
 
 
-MathInset * MathArrayInset::clone() const
+auto_ptr<InsetBase> MathArrayInset::doClone() const
+{
+       return auto_ptr<InsetBase>(new MathArrayInset(*this));
+}
+
+
+void MathArrayInset::metrics(MetricsInfo & mi, Dimension & dim) const
+{
+       ArrayChanger dummy(mi.base);
+       MathGridInset::metrics(mi, dim);
+       dim.wid += 6;
+       dim_ = dim;
+}
+
+
+void MathArrayInset::draw(PainterInfo & pi, int x, int y) const
 {
-       return new MathArrayInset(*this);
+       setPosCache(pi, x, y);
+       ArrayChanger dummy(pi.base);
+       MathGridInset::drawWithMargin(pi, x, y, 4, 2);
 }
 
 
-void MathArrayInset::write(MathWriteInfo & os) const
+void MathArrayInset::write(WriteStream & os) const
 {
-       if (os.fragile)
+       if (os.fragile())
                os << "\\protect";
-       os << "\\begin{array}";
+       os << "\\begin{" << name_ << '}';
 
-       if (v_align_ == 't' || v_align_ == 'b') 
+       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";
+       os << '{' << halign() << "}\n";
 
        MathGridInset::write(os);
 
-       if (os.fragile)
+       if (os.fragile())
                os << "\\protect";
-       os << "\\end{array}\n";
+       os << "\\end{" << name_ << '}';
+       // adding a \n here is bad if the array is the last item
+       // in an \eqnarray...
+}
+
+
+void MathArrayInset::infoize(std::ostream & os) const
+{
+       string name = name_;
+       name[0] = lyx::support::uppercase(name[0]);
+       os << name << ' ';
+}
+
+
+void MathArrayInset::normalize(NormalStream & os) const
+{
+       os << '[' << name_ << ' ';
+       MathGridInset::normalize(os);
+       os << ']';
 }
 
 
-void MathArrayInset::writeNormal(NormalStream & os) const
+void MathArrayInset::maple(MapleStream & os) const
 {
-       os << "[array ";
-       MathGridInset::writeNormal(os);
-       os << "]";
+       os << "array(";
+       MathGridInset::maple(os);
+       os << ')';
 }
 
 
-void MathArrayInset::metrics(MathMetricsInfo const & st) const
+void MathArrayInset::validate(LaTeXFeatures & features) const
 {
-       MathMetricsInfo mi = st;
-       if (mi.style == LM_ST_DISPLAY)
-               mi.style = LM_ST_TEXT;
-       MathGridInset::metrics(mi);
+       if (name_ == "subarray")
+               features.require("amsmath");
+       MathGridInset::validate(features);
 }