]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_gridinset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_gridinset.C
index 73069213011f4d90c6493b03b7a0ac9764811e3e..e80458db6b63be2892a60af79ce2479ea6fb9536 100644 (file)
@@ -1,3 +1,5 @@
+#include <config.h>
+
 #include "math_gridinset.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
@@ -15,6 +17,8 @@ using std::max;
 using std::min;
 using std::vector;
 using std::istream;
+using std::auto_ptr;
+using std::endl;
 
 
 class GridInsetMailer : public MailInset {
@@ -27,7 +31,7 @@ public:
                return theName;
        }
        ///
-       virtual string const inset2string() const
+       virtual string const inset2string(Buffer const &) const
        {
                ostringstream data;
                //data << name() << " active_cell " << inset.getActCell() << '\n';
@@ -114,7 +118,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;
 }
 
 
@@ -160,9 +164,9 @@ MathGridInset::~MathGridInset()
 }
 
 
-InsetBase * MathGridInset::clone() const
+auto_ptr<InsetBase> MathGridInset::clone() const
 {
-       return new MathGridInset(*this);
+       return auto_ptr<InsetBase>(new MathGridInset(*this));
 }
 
 
@@ -175,9 +179,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);
@@ -199,7 +203,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;
                }
        }
 
@@ -1052,12 +1056,12 @@ dispatch_result MathGridInset::dispatch
                        return DISPATCHED_POP;
 
                case LFUN_CELL_SPLIT:
-                       //bv->lockedInsetStoreUndo(Undo::EDIT);
+                       //recordUndo(bv, Undo::ATOMIC);
                        splitCell(idx, pos);
                        return DISPATCHED_POP;
 
                case LFUN_BREAKLINE: {
-                       //bv->lockedInsetStoreUndo(Undo::INSERT);
+                       //recordUndo(bv, Undo::INSERT);
                        row_type const r = row(idx);
                        addRow(r);
 
@@ -1077,7 +1081,7 @@ dispatch_result MathGridInset::dispatch
                }
 
                case LFUN_TABULAR_FEATURE: {
-                       //lyxerr << "handling tabular-feature " << cmd.argument << "\n";
+                       //lyxerr << "handling tabular-feature " << cmd.argument << endl;
                        istringstream is(STRCONV(cmd.argument));
                        string s;
                        is >> s;
@@ -1129,12 +1133,12 @@ dispatch_result MathGridInset::dispatch
                                swapCol(col(idx));
                        else
                                return UNDISPATCHED;
-                       lyxerr << "returning DISPATCHED_POP\n";
+                       lyxerr << "returning DISPATCHED_POP" << endl;
                        return DISPATCHED_POP;
                }
 
                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) {