]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_gridinset.C
Georg Baum's vspace change
[lyx.git] / src / mathed / math_gridinset.C
index b1108f6d1252670e714144cc21e1c4c0baefdaf9..d16f82776cfd17ed3badbd83fc1ff4662a07013c 100644 (file)
@@ -1,22 +1,67 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
+/**
+ * \file math_gridinset.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 "math_gridinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
-#include "lyxfont.h"
+#include "dispatchresult.h"
+#include "debug.h"
 #include "funcrequest.h"
+#include "LColor.h"
 #include "frontends/Painter.h"
-#include "debug.h"
+#include "support/std_sstream.h"
 
+#include "insets/mailinset.h"
 
-using std::swap;
+using std::endl;
 using std::max;
 using std::min;
+using std::swap;
+
+using std::string;
+using std::auto_ptr;
+using std::istream;
+using std::istringstream;
+using std::ostringstream;
 using std::vector;
 
 
+class GridInsetMailer : public MailInset {
+public:
+       GridInsetMailer(MathGridInset & inset) : inset_(inset) {}
+       ///
+       virtual string const & name() const
+       {
+               static string const theName = "tabular";
+               return theName;
+       }
+       ///
+       virtual string const inset2string(Buffer const &) const
+       {
+               ostringstream data;
+               //data << name() << " active_cell " << inset.getActCell() << '\n';
+               data << name() << " active_cell " << 0 << '\n';
+               WriteStream ws(data);
+               inset_.write(ws);
+               return data.str();
+       }
+
+protected:
+       InsetBase & inset() const { return inset_; }
+       MathGridInset & inset_;
+};
+
+
 void mathed_parse_normal(MathGridInset &, string const & argument);
 
 namespace {
@@ -26,11 +71,22 @@ string verboseHLine(int n)
        string res;
        for (int i = 0; i < n; ++i)
                res += "\\hline";
-       return res + ' ';
+       if (n)
+               res += ' ';
+       return res;
 }
 
+
+int extractInt(istream & is)
+{
+       int num = 1;
+       is >> num;
+       return (num == 0) ? 1 : num;
 }
 
+}
+
+
 //////////////////////////////////////////////////////////////
 
 
@@ -77,7 +133,7 @@ MathGridInset::MathGridInset(char v, string const & h)
        setDefaults();
        valign(v);
        halign(h);
-       //lyxerr << "created grid with " << ncols() << " columns\n";
+       //lyxerr << "created grid with " << ncols() << " columns" << endl;
 }
 
 
@@ -116,9 +172,16 @@ MathGridInset::MathGridInset(col_type m, row_type n, char v, string const & h)
 }
 
 
-MathInset * MathGridInset::clone() const
+MathGridInset::~MathGridInset()
 {
-       return new MathGridInset(*this);
+       GridInsetMailer mailer(*this);
+       mailer.hideDialog();
+}
+
+
+auto_ptr<InsetBase> MathGridInset::clone() const
+{
+       return auto_ptr<InsetBase>(new MathGridInset(*this));
 }
 
 
@@ -131,9 +194,9 @@ MathInset::idx_type MathGridInset::index(row_type row, col_type col) const
 void MathGridInset::setDefaults()
 {
        if (ncols() <= 0)
-               lyxerr << "positive number of columns expected\n";
+               lyxerr << "positive number of columns expected" << endl;
        //if (nrows() <= 0)
-       //      lyxerr << "positive number of rows expected\n";
+       //      lyxerr << "positive number of rows expected" << endl;
        for (col_type col = 0; col < ncols(); ++col) {
                colinfo_[col].align_ = defaultColAlign(col);
                colinfo_[col].skip_  = defaultColSpace(col);
@@ -155,7 +218,7 @@ void MathGridInset::halign(string const & hh)
                        ++col;
                        colinfo_[col].lines_ = 0;
                } else {
-                       lyxerr << "unknown column separator: '" << c << "'\n";
+                       lyxerr << "unknown column separator: '" << c << "'" << endl;
                }
        }
 
@@ -175,7 +238,7 @@ MathGridInset::col_type MathGridInset::guessColumns(string const & hh) const
        for (string::const_iterator it = hh.begin(); it != hh.end(); ++it)
                if (*it == 'c' || *it == 'l' || *it == 'r')
                        ++col;
-       // let's have at least one column, even if we did not recognize its 
+       // let's have at least one column, even if we did not recognize its
        // alignment
        if (col == 0)
                col = 1;
@@ -254,7 +317,7 @@ LyXLength MathGridInset::vcrskip(row_type row) const
 }
 
 
-void MathGridInset::metrics(MathMetricsInfo & mi) const
+void MathGridInset::metrics(MetricsInfo & mi) const
 {
        // let the cells adjust themselves
        MathNestInset::metrics(mi);
@@ -324,19 +387,19 @@ void MathGridInset::metrics(MathMetricsInfo & mi) const
        }
 
 
-       dim_.w   =   colinfo_[ncols() - 1].offset_
+       dim_.wid   =   colinfo_[ncols() - 1].offset_
                       + colinfo_[ncols() - 1].width_
-                + vlinesep() * colinfo_[ncols()].lines_
+                + vlinesep() * colinfo_[ncols()].lines_
                       + border();
 
-       dim_.a  = - rowinfo_[0].offset_
+       dim_.asc  = - rowinfo_[0].offset_
                       + rowinfo_[0].ascent_
-                + hlinesep() * rowinfo_[0].lines_
+                + hlinesep() * rowinfo_[0].lines_
                       + border();
 
-       dim_.d =   rowinfo_[nrows() - 1].offset_
+       dim_.des =   rowinfo_[nrows() - 1].offset_
                       + rowinfo_[nrows() - 1].descent_
-                + hlinesep() * rowinfo_[nrows()].lines_
+                + hlinesep() * rowinfo_[nrows()].lines_
                       + border();
 
 
@@ -393,7 +456,14 @@ void MathGridInset::metrics(MathMetricsInfo & mi) const
 }
 
 
-void MathGridInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathGridInset::metrics(MetricsInfo & mi, Dimension & dim) const
+{
+       metrics(mi);
+       dim = dim_;
+}
+
+
+void MathGridInset::draw(PainterInfo & pi, int x, int y) const
 {
        for (idx_type idx = 0; idx < nargs(); ++idx)
                cell(idx).draw(pi, x + cellXOffset(idx), y + cellYOffset(idx));
@@ -402,24 +472,28 @@ void MathGridInset::draw(MathPainterInfo & pi, int x, int y) const
                for (int i = 0; i < rowinfo_[row].lines_; ++i) {
                        int yy = y + rowinfo_[row].offset_ - rowinfo_[row].ascent_
                                - i * hlinesep() - hlinesep()/2 - rowsep()/2;
-                       pi.pain.line(x + 1, yy, x + width() - 1, yy);
+                       pi.pain.line(x + 1, yy,
+                                    x + dim_.width() - 1, yy,
+                                    LColor::foreground);
                }
 
        for (col_type col = 0; col <= ncols(); ++col)
                for (int i = 0; i < colinfo_[col].lines_; ++i) {
                        int xx = x + colinfo_[col].offset_
                                - i * vlinesep() - vlinesep()/2 - colsep()/2;
-                       pi.pain.line(xx, y - ascent() + 1, xx, y + descent() - 1);
+                       pi.pain.line(xx, y - dim_.ascent() + 1,
+                                    xx, y + dim_.descent() - 1,
+                                    LColor::foreground);
                }
 }
 
 
-void MathGridInset::metricsT(TextMetricsInfo const & mi) const
+void MathGridInset::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
 {
        // let the cells adjust themselves
        //MathNestInset::metrics(mi);
        for (idx_type i = 0; i < nargs(); ++i)
-               cell(i).metricsT(mi);
+               cell(i).metricsT(mi, dim);
 
        // compute absolute sizes of vertical structure
        for (row_type row = 0; row < nrows(); ++row) {
@@ -486,21 +560,20 @@ void MathGridInset::metricsT(TextMetricsInfo const & mi) const
        }
 
 
-       dim_.w  =  colinfo_[ncols() - 1].offset_
+       dim.wid  =  colinfo_[ncols() - 1].offset_
                       + colinfo_[ncols() - 1].width_
                 //+ vlinesep() * colinfo_[ncols()].lines_
                       + 2;
 
-       dim_.a  = -rowinfo_[0].offset_
+       dim.asc  = -rowinfo_[0].offset_
                       + rowinfo_[0].ascent_
                 //+ hlinesep() * rowinfo_[0].lines_
                       + 1;
 
-       dim_.d  =  rowinfo_[nrows() - 1].offset_
+       dim.des  =  rowinfo_[nrows() - 1].offset_
                       + rowinfo_[nrows() - 1].descent_
                 //+ hlinesep() * rowinfo_[nrows()].lines_
                       + 1;
-
 }
 
 
@@ -516,7 +589,7 @@ string MathGridInset::eolString(row_type row, bool fragile) const
        string eol;
 
        if (!rowinfo_[row].crskip_.zero())
-               eol += "[" + rowinfo_[row].crskip_.asLatexString() + "]";
+               eol += '[' + rowinfo_[row].crskip_.asLatexString() + ']';
 
        // make sure an upcoming '[' does not break anything
        if (row + 1 < nrows()) {
@@ -530,13 +603,13 @@ string MathGridInset::eolString(row_type row, bool fragile) const
        if (eol.empty() && row + 1 == nrows())
                return string();
 
-       return (fragile ? "\\protect\\\\" : "\\\\") + eol + '\n';
+       return (fragile ? "\\protect\\\\" : "\\\\") + eol;
 }
 
 
-string MathGridInset::eocString(col_type col) const
+string MathGridInset::eocString(col_type col, col_type lastcol) const
 {
-       if (col + 1 == ncols())
+       if (col + 1 == lastcol)
                return string();
        return " & ";
 }
@@ -578,6 +651,25 @@ void MathGridInset::delRow(row_type row)
 }
 
 
+void MathGridInset::copyRow(row_type row)
+{
+       addRow(row);
+       for (col_type col = 0; col < ncols(); ++col)
+               cells_[(row + 1) * ncols() + col] = cells_[row * ncols() + col];
+}
+
+
+void MathGridInset::swapRow(row_type row)
+{
+       if (nrows() == 1)
+               return;
+       if (row + 1 == nrows())
+               --row;
+       for (col_type col = 0; col < ncols(); ++col)
+               swap(cells_[row * ncols() + col], cells_[(row + 1) * ncols() + col]);
+}
+
+
 void MathGridInset::addCol(col_type newcol)
 {
        const col_type nc = ncols();
@@ -621,6 +713,25 @@ void MathGridInset::delCol(col_type col)
 }
 
 
+void MathGridInset::copyCol(col_type col)
+{
+       addCol(col);
+       for (row_type row = 0; row < nrows(); ++row)
+               cells_[row * ncols() + col + 1] = cells_[row * ncols() + col];
+}
+
+
+void MathGridInset::swapCol(col_type col)
+{
+       if (ncols() == 1)
+               return;
+       if (col + 1 == ncols())
+               --col;
+       for (row_type row = 0; row < nrows(); ++row)
+               swap(cells_[row * ncols() + col], cells_[row * ncols() + col + 1]);
+}
+
+
 int MathGridInset::cellXOffset(idx_type idx) const
 {
        col_type c = col(idx);
@@ -863,9 +974,21 @@ void MathGridInset::write(WriteStream & os) const
 {
        for (row_type row = 0; row < nrows(); ++row) {
                os << verboseHLine(rowinfo_[row].lines_);
+               // don't write & and empty cells at end of line
+               col_type lastcol = 0;
+               bool emptyline = true;
                for (col_type col = 0; col < ncols(); ++col)
-                       os << cell(index(row, col)) << eocString(col);
+                       if (!cell(index(row, col)).empty()) {
+                               lastcol = col + 1;
+                               emptyline = false;
+                       }
+               for (col_type col = 0; col < lastcol; ++col)
+                       os << cell(index(row, col)) << eocString(col, lastcol);
                os << eolString(row, os.fragile());
+               // append newline only if line wasn't completely empty
+               // and this was not the last line in the grid
+               if (!emptyline && row + 1 < nrows())
+                       os << "\n";
        }
        string const s = verboseHLine(rowinfo_[nrows()].lines_);
        if (!s.empty() && s != " ") {
@@ -919,11 +1042,23 @@ void MathGridInset::splitCell(idx_type & idx, pos_type & pos)
 }
 
 
-MathInset::result_type MathGridInset::dispatch
-       (FuncRequest const & cmd, idx_type & idx, pos_type & pos)
+DispatchResult MathGridInset::priv_dispatch(FuncRequest const & cmd,
+       idx_type & idx, pos_type & pos)
 {
        switch (cmd.action) {
 
+               case LFUN_MOUSE_RELEASE:
+                       //if (cmd.button() == mouse_button::button3) {
+                       //      GridInsetMailer(*this).showDialog();
+                       //      return DispatchResult(true, true);
+                       //}
+                       return DispatchResult(false);
+
+               case LFUN_INSET_DIALOG_UPDATE:
+                       GridInsetMailer(*this).updateDialog(cmd.view());
+                       return DispatchResult(false);
+
+               // insert file functions
                case LFUN_DELETE_LINE_FORWARD:
                        //autocorrect_ = false;
                        //macroModeClose();
@@ -937,16 +1072,15 @@ MathInset::result_type MathGridInset::dispatch
                                idx = nargs() - 1;
                        if (pos > cell(idx).size())
                                pos = cell(idx).size();
-                       return DISPATCHED_POP;
+                       return DispatchResult(true, FINISHED);
 
-               case LFUN_TABINSERT:
-                       //bv->lockedInsetStoreUndo(Undo::EDIT);
+               case LFUN_CELL_SPLIT:
+                       //recordUndo(bv, Undo::ATOMIC);
                        splitCell(idx, pos);
-                       //updateLocal(bv, true);
-                       return DISPATCHED_POP;
+                       return DispatchResult(true, FINISHED);
 
                case LFUN_BREAKLINE: {
-                       //bv->lockedInsetStoreUndo(Undo::INSERT);
+                       //recordUndo(bv, Undo::INSERT);
                        row_type const r = row(idx);
                        addRow(r);
 
@@ -957,50 +1091,73 @@ MathInset::result_type MathGridInset::dispatch
                        // split cell
                        splitCell(idx, pos);
                        std::swap(cell(idx), cell(idx + ncols() - 1));
-               
-                       //mathcursor->normalize();
-                       //updateLocal(bv, true);
-                       return DISPATCHED_POP;
-               }
+                       if (idx > 0)
+                               --idx;
+                       pos = cell(idx).size();
 
-               case LFUN_MATH_HALIGN:
-                       halign((cmd.argument + "c")[0], col(idx));
-                       return DISPATCHED_POP;
-
-               case LFUN_MATH_VALIGN:
-                       valign((cmd.argument + "c")[0]);
-                       return DISPATCHED_POP;
-
-               case LFUN_MATH_ROW_INSERT:
-                       addRow(row(idx));
-                       return DISPATCHED_POP;
-
-               case LFUN_MATH_ROW_DELETE:
-                       delRow(row(idx));
-                       if (idx > nargs())
-                               idx -= ncols();
-                       return DISPATCHED_POP;
-
-               case LFUN_MATH_COLUMN_INSERT: {
-                       row_type r = row(idx);
-                       col_type c = col(idx);
-                       addFancyCol(c);
-                       idx = index(r, c);
-                       return DISPATCHED_POP;
+                       //mathcursor->normalize();
+                       return DispatchResult(true, FINISHED);
                }
 
-               case LFUN_MATH_COLUMN_DELETE: {
-                       row_type r = row(idx);
-                       col_type c = col(idx);
-                       delFancyCol(col(idx));
-                       idx = index(r, c);
-                       if (idx > nargs())
-                               idx -= ncols();
-                       return DISPATCHED_POP;
+               case LFUN_TABULAR_FEATURE: {
+                       //lyxerr << "handling tabular-feature " << cmd.argument << endl;
+                       istringstream is(cmd.argument);
+                       string s;
+                       is >> s;
+                       if (s == "valign-top")
+                               valign('t');
+                       else if (s == "valign-middle")
+                               valign('c');
+                       else if (s == "valign-bottom")
+                               valign('b');
+                       else if (s == "align-left")
+                               halign('l', col(idx));
+                       else if (s == "align-right")
+                               halign('r', col(idx));
+                       else if (s == "align-center")
+                               halign('c', col(idx));
+                       else if (s == "append-row")
+                               for (int i = 0, n = extractInt(is); i < n; ++i)
+                                       addRow(row(idx));
+                       else if (s == "delete-row")
+                               for (int i = 0, n = extractInt(is); i < n; ++i) {
+                                       delRow(row(idx));
+                                       if (idx > nargs())
+                                               idx -= ncols();
+                               }
+                       else if (s == "copy-row")
+                               for (int i = 0, n = extractInt(is); i < n; ++i)
+                                       copyRow(row(idx));
+                       else if (s == "swap-row")
+                               swapRow(row(idx));
+                       else if (s == "append-column")
+                               for (int i = 0, n = extractInt(is); i < n; ++i) {
+                                       row_type r = row(idx);
+                                       col_type c = col(idx);
+                                       addCol(c);
+                                       idx = index(r, c);
+                               }
+                       else if (s == "delete-column")
+                               for (int i = 0, n = extractInt(is); i < n; ++i) {
+                                       row_type r = row(idx);
+                                       col_type c = col(idx);
+                                       delCol(col(idx));
+                                       idx = index(r, c);
+                                       if (idx > nargs())
+                                               idx -= ncols();
+                               }
+                       else if (s == "copy-column")
+                               copyCol(col(idx));
+                       else if (s == "swap-column")
+                               swapCol(col(idx));
+                       else
+                               return DispatchResult(false);
+                       lyxerr << "returning DispatchResult(true, FINISHED)" << endl;
+                       return DispatchResult(true, FINISHED);
                }
 
                case LFUN_PASTE: {
-                       //lyxerr << "pasting '" << cmd.argument << "'\n";
+                       //lyxerr << "pasting '" << cmd.argument << "'" << endl;
                        MathGridInset grid(1, 1);
                        mathed_parse_normal(grid, cmd.argument);
                        if (grid.nargs() == 1) {
@@ -1014,7 +1171,7 @@ MathInset::result_type MathGridInset::dispatch
                                for (row_type r = 0; r < numrows; ++r) {
                                        for (col_type c = 0; c < numcols; ++c) {
                                                idx_type i = index(r + row(idx), c + col(idx));
-                                               cell(i).append(grid.cell(grid.index(r, c)));
+                                               cell(i).insert(0, grid.cell(grid.index(r, c)));
                                        }
                                        // append the left over horizontal cells to the last column
                                        idx_type i = index(r + row(idx), ncols() - 1);
@@ -1027,11 +1184,10 @@ MathInset::result_type MathGridInset::dispatch
                                        for (col_type c = 0; c < grid.ncols(); ++c)
                                                cell(i).append(grid.cell(grid.index(r, c)));
                        }
-                       return DISPATCHED_POP;
+                       return DispatchResult(true, FINISHED);
                }
 
-               default:        
-                       return MathNestInset::dispatch(cmd, idx, pos);
+               default:
+                       return MathNestInset::priv_dispatch(cmd, idx, pos);
        }
-       return UNDISPATCHED;
 }