]> git.lyx.org Git - lyx.git/blob - src/insets/insettabular.C
work on inset scrolling
[lyx.git] / src / insets / insettabular.C
1 /**
2  * \file insettabular.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Vigna
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "insettabular.h"
14
15 #include "buffer.h"
16 #include "bufferparams.h"
17 #include "BufferView.h"
18 #include "cursor.h"
19 #include "coordcache.h"
20 #include "debug.h"
21 #include "dispatchresult.h"
22 #include "funcrequest.h"
23 #include "FuncStatus.h"
24 #include "gettext.h"
25 #include "language.h"
26 #include "LColor.h"
27 #include "lyx_cb.h"
28 #include "lyxlex.h"
29 #include "metricsinfo.h"
30 #include "outputparams.h"
31 #include "paragraph.h"
32 #include "paragraph_funcs.h"
33 #include "ParagraphParameters.h"
34 #include "undo.h"
35
36 #include "support/convert.h"
37
38 #include "frontends/Alert.h"
39 #include "frontends/font_metrics.h"
40 #include "frontends/LyXView.h"
41 #include "frontends/Painter.h"
42 #include "frontends/nullpainter.h"
43
44 #include <sstream>
45 #include <iostream>
46 #include <limits>
47
48 using lyx::graphics::PreviewLoader;
49
50 using lyx::support::ltrim;
51
52 using boost::shared_ptr;
53
54 using std::auto_ptr;
55 using std::endl;
56 using std::max;
57 using std::string;
58 using std::istringstream;
59 using std::ostream;
60 using std::ostringstream;
61 using std::swap;
62 using std::vector;
63
64
65 namespace {
66
67 int const ADD_TO_HEIGHT = 2;
68 int const ADD_TO_TABULAR_WIDTH = 2;
69
70 ///
71 boost::scoped_ptr<LyXTabular> paste_tabular;
72
73
74 struct TabularFeature {
75         LyXTabular::Feature action;
76         string feature;
77 };
78
79
80 TabularFeature tabularFeature[] =
81 {
82         { LyXTabular::APPEND_ROW, "append-row" },
83         { LyXTabular::APPEND_COLUMN, "append-column" },
84         { LyXTabular::DELETE_ROW, "delete-row" },
85         { LyXTabular::DELETE_COLUMN, "delete-column" },
86         { LyXTabular::TOGGLE_LINE_TOP, "toggle-line-top" },
87         { LyXTabular::TOGGLE_LINE_BOTTOM, "toggle-line-bottom" },
88         { LyXTabular::TOGGLE_LINE_LEFT, "toggle-line-left" },
89         { LyXTabular::TOGGLE_LINE_RIGHT, "toggle-line-right" },
90         { LyXTabular::ALIGN_LEFT, "align-left" },
91         { LyXTabular::ALIGN_RIGHT, "align-right" },
92         { LyXTabular::ALIGN_CENTER, "align-center" },
93         { LyXTabular::ALIGN_BLOCK, "align-block" },
94         { LyXTabular::VALIGN_TOP, "valign-top" },
95         { LyXTabular::VALIGN_BOTTOM, "valign-bottom" },
96         { LyXTabular::VALIGN_MIDDLE, "valign-middle" },
97         { LyXTabular::M_TOGGLE_LINE_TOP, "m-toggle-line-top" },
98         { LyXTabular::M_TOGGLE_LINE_BOTTOM, "m-toggle-line-bottom" },
99         { LyXTabular::M_TOGGLE_LINE_LEFT, "m-toggle-line-left" },
100         { LyXTabular::M_TOGGLE_LINE_RIGHT, "m-toggle-line-right" },
101         { LyXTabular::M_ALIGN_LEFT, "m-align-left" },
102         { LyXTabular::M_ALIGN_RIGHT, "m-align-right" },
103         { LyXTabular::M_ALIGN_CENTER, "m-align-center" },
104         { LyXTabular::M_VALIGN_TOP, "m-valign-top" },
105         { LyXTabular::M_VALIGN_BOTTOM, "m-valign-bottom" },
106         { LyXTabular::M_VALIGN_MIDDLE, "m-valign-middle" },
107         { LyXTabular::MULTICOLUMN, "multicolumn" },
108         { LyXTabular::SET_ALL_LINES, "set-all-lines" },
109         { LyXTabular::UNSET_ALL_LINES, "unset-all-lines" },
110         { LyXTabular::SET_LONGTABULAR, "set-longtabular" },
111         { LyXTabular::UNSET_LONGTABULAR, "unset-longtabular" },
112         { LyXTabular::SET_PWIDTH, "set-pwidth" },
113         { LyXTabular::SET_MPWIDTH, "set-mpwidth" },
114         { LyXTabular::SET_ROTATE_TABULAR, "set-rotate-tabular" },
115         { LyXTabular::UNSET_ROTATE_TABULAR, "unset-rotate-tabular" },
116         { LyXTabular::SET_ROTATE_CELL, "set-rotate-cell" },
117         { LyXTabular::UNSET_ROTATE_CELL, "unset-rotate-cell" },
118         { LyXTabular::SET_USEBOX, "set-usebox" },
119         { LyXTabular::SET_LTHEAD, "set-lthead" },
120         { LyXTabular::UNSET_LTHEAD, "unset-lthead" },
121         { LyXTabular::SET_LTFIRSTHEAD, "set-ltfirsthead" },
122         { LyXTabular::UNSET_LTFIRSTHEAD, "unset-ltfirsthead" },
123         { LyXTabular::SET_LTFOOT, "set-ltfoot" },
124         { LyXTabular::UNSET_LTFOOT, "unset-ltfoot" },
125         { LyXTabular::SET_LTLASTFOOT, "set-ltlastfoot" },
126         { LyXTabular::UNSET_LTLASTFOOT, "unset-ltlastfoot" },
127         { LyXTabular::SET_LTNEWPAGE, "set-ltnewpage" },
128         { LyXTabular::SET_SPECIAL_COLUMN, "set-special-column" },
129         { LyXTabular::SET_SPECIAL_MULTI, "set-special-multi" },
130         { LyXTabular::LAST_ACTION, "" }
131 };
132
133
134 class FeatureEqual : public std::unary_function<TabularFeature, bool> {
135 public:
136         FeatureEqual(LyXTabular::Feature feature)
137                 : feature_(feature) {}
138         bool operator()(TabularFeature const & tf) const {
139                 return tf.action == feature_;
140         }
141 private:
142         LyXTabular::Feature feature_;
143 };
144
145 } // namespace anon
146
147
148 string const featureAsString(LyXTabular::Feature feature)
149 {
150         TabularFeature * end = tabularFeature +
151                 sizeof(tabularFeature) / sizeof(TabularFeature);
152         TabularFeature * it = std::find_if(tabularFeature, end,
153                                            FeatureEqual(feature));
154         return (it == end) ? string() : it->feature;
155 }
156
157
158 bool InsetTabular::hasPasteBuffer() const
159 {
160         return (paste_tabular.get() != 0);
161 }
162
163
164 InsetTabular::InsetTabular(Buffer const & buf, row_type rows,
165                            col_type columns)
166         : tabular(buf.params(), max(rows, row_type(1)),
167           max(columns, col_type(1))), buffer_(&buf), cursorx_(0)
168 {}
169
170
171 InsetTabular::InsetTabular(InsetTabular const & tab)
172         : UpdatableInset(tab), tabular(tab.tabular),
173                 buffer_(tab.buffer_), cursorx_(0)
174 {}
175
176
177 InsetTabular::~InsetTabular()
178 {
179         InsetTabularMailer(*this).hideDialog();
180 }
181
182
183 auto_ptr<InsetBase> InsetTabular::doClone() const
184 {
185         return auto_ptr<InsetBase>(new InsetTabular(*this));
186 }
187
188
189 Buffer const & InsetTabular::buffer() const
190 {
191         return *buffer_;
192 }
193
194
195 void InsetTabular::buffer(Buffer const * b)
196 {
197         buffer_ = b;
198 }
199
200
201 void InsetTabular::write(Buffer const & buf, ostream & os) const
202 {
203         os << "Tabular" << endl;
204         tabular.write(buf, os);
205 }
206
207
208 void InsetTabular::read(Buffer const & buf, LyXLex & lex)
209 {
210         bool const old_format = (lex.getString() == "\\LyXTable");
211
212         tabular.read(buf, lex);
213
214         if (old_format)
215                 return;
216
217         lex.next();
218         string token = lex.getString();
219         while (lex.isOK() && (token != "\\end_inset")) {
220                 lex.next();
221                 token = lex.getString();
222         }
223         if (token != "\\end_inset") {
224                 lex.printError("Missing \\end_inset at this point. "
225                                "Read: `$$Token'");
226         }
227 }
228
229
230 void InsetTabular::metrics(MetricsInfo & mi, Dimension & dim) const
231 {
232         //lyxerr << "InsetTabular::metrics: " << mi.base.bv << " width: " <<
233         //      mi.base.textwidth << "\n";
234         if (!mi.base.bv) {
235                 lyxerr << "InsetTabular::metrics: need bv" << endl;
236                 BOOST_ASSERT(false);
237         }
238
239         row_type i = 0;
240         for (idx_type cell = 0; i < tabular.rows(); ++i) {
241                 int maxAsc = 0;
242                 int maxDesc = 0;
243                 for (col_type j = 0; j < tabular.columns(); ++j) {
244                         if (tabular.isPartOfMultiColumn(i, j))
245                                 continue;
246                         Dimension dim;
247                         MetricsInfo m = mi;
248                         LyXLength p_width = tabular.column_info[j].p_width;
249                         if (!p_width.zero())
250                                 m.base.textwidth = p_width.inPixels(mi.base.textwidth);
251                         tabular.getCellInset(cell)->metrics(m, dim);
252                         if (!p_width.zero())
253                                 dim.wid = m.base.textwidth;
254                         maxAsc  = max(maxAsc, dim.asc);
255                         maxDesc = max(maxDesc, dim.des);
256                         tabular.setWidthOfCell(cell, dim.wid);
257                         ++cell;
258                 }
259                 tabular.setAscentOfRow(i, maxAsc + ADD_TO_HEIGHT);
260                 tabular.setDescentOfRow(i, maxDesc + ADD_TO_HEIGHT);
261         }
262
263         dim.asc = tabular.getAscentOfRow(0);
264         dim.des = tabular.getHeightOfTabular() - dim.asc;
265         dim.wid = tabular.getWidthOfTabular() + 2 * ADD_TO_TABULAR_WIDTH;
266         dim_ = dim;
267 }
268
269
270 void InsetTabular::draw(PainterInfo & pi, int x, int y) const
271 {
272         setPosCache(pi, x, y);
273
274         //lyxerr << "InsetTabular::draw: " << x << " " << y << endl;
275         BufferView * bv = pi.base.bv;
276
277         static NullPainter nop;
278         static PainterInfo nullpi(bv, nop);
279
280         resetPos(bv->cursor());
281
282         x += scroll();
283         x += ADD_TO_TABULAR_WIDTH;
284
285         idx_type idx = 0;
286         first_visible_cell = LyXTabular::npos;
287         for (row_type i = 0; i < tabular.rows(); ++i) {
288                 int nx = x;
289                 int const a = tabular.getAscentOfRow(i);
290                 int const d = tabular.getDescentOfRow(i);
291                 idx = tabular.getCellNumber(i, 0);
292                 for (col_type j = 0; j < tabular.columns(); ++j) {
293                         if (tabular.isPartOfMultiColumn(i, j))
294                                 continue;
295                         if (first_visible_cell == LyXTabular::npos)
296                                 first_visible_cell = idx;
297
298                         int const cx = nx + tabular.getBeginningOfTextInCell(idx);
299                         if (nx + tabular.getWidthOfColumn(idx) < 0
300                             || nx > bv->workWidth()
301                             || y + d < 0
302                             || y - a > bv->workHeight()) {
303                                 cell(idx)->draw(nullpi, cx, y);
304                                 drawCellLines(nop, nx, y, i, idx);
305                         } else {
306                                 cell(idx)->draw(pi, cx, y);
307                                 drawCellLines(pi.pain, nx, y, i, idx);
308                         }
309                         nx += tabular.getWidthOfColumn(idx);
310                         ++idx;
311                 }
312
313                 if (i + 1 < tabular.rows())
314                         y += d + tabular.getAscentOfRow(i + 1) +
315                                 tabular.getAdditionalHeight(i + 1);
316         }
317 }
318
319
320 void InsetTabular::drawSelection(PainterInfo & pi, int x, int y) const
321 {
322         setPosCache(pi, x, y);
323
324         LCursor & cur = pi.base.bv->cursor();
325         if (!cur.selection())
326                 return;
327         if (!ptr_cmp(&cur.inset(), this))
328                 return;
329
330         resetPos(cur);
331
332         x += scroll();
333         x += ADD_TO_TABULAR_WIDTH;
334
335         if (tablemode(cur)) {
336                 row_type rs, re;
337                 col_type cs, ce;
338                 getSelection(cur, rs, re, cs, ce);
339                 y -= tabular.getAscentOfRow(0);
340                 for (row_type j = 0; j < tabular.rows(); ++j) {
341                         int const a = tabular.getAscentOfRow(j);
342                         int const h = a + tabular.getDescentOfRow(j);
343                         int xx = x;
344                         y += tabular.getAdditionalHeight(j);
345                         for (col_type i = 0; i < tabular.columns(); ++i) {
346                                 if (tabular.isPartOfMultiColumn(j, i))
347                                         continue;
348                                 idx_type const cell =
349                                         tabular.getCellNumber(j, i);
350                                 int const w = tabular.getWidthOfColumn(cell);
351                                 if (i >= cs && i <= ce && j >= rs && j <= re)
352                                         pi.pain.fillRectangle(xx, y, w, h,
353                                                               LColor::selection);
354                                 xx += w;
355
356                         }
357                         y += h;
358                 }
359
360         } else {
361                 cur.text()->drawSelection(pi, x + getCellXPos(cur.idx()) + tabular.getBeginningOfTextInCell(cur.idx()), 0 /*this value is ignored */);
362         }
363 }
364
365
366 void InsetTabular::drawCellLines(Painter & pain, int x, int y,
367                                  row_type row, idx_type cell) const
368 {
369         int x2 = x + tabular.getWidthOfColumn(cell);
370         bool on_off = false;
371
372         if (!tabular.topAlreadyDrawn(cell)) {
373                 on_off = !tabular.topLine(cell);
374                 pain.line(x, y - tabular.getAscentOfRow(row),
375                           x2, y -  tabular.getAscentOfRow(row),
376                           on_off ? LColor::tabularonoffline : LColor::tabularline,
377                           on_off ? Painter::line_onoffdash : Painter::line_solid);
378         }
379         on_off = !tabular.bottomLine(cell);
380         pain.line(x, y + tabular.getDescentOfRow(row),
381                   x2, y + tabular.getDescentOfRow(row),
382                   on_off ? LColor::tabularonoffline : LColor::tabularline,
383                   on_off ? Painter::line_onoffdash : Painter::line_solid);
384         if (!tabular.leftAlreadyDrawn(cell)) {
385                 on_off = !tabular.leftLine(cell);
386                 pain.line(x, y -  tabular.getAscentOfRow(row),
387                           x, y +  tabular.getDescentOfRow(row),
388                           on_off ? LColor::tabularonoffline : LColor::tabularline,
389                           on_off ? Painter::line_onoffdash : Painter::line_solid);
390         }
391         on_off = !tabular.rightLine(cell);
392         pain.line(x2 - tabular.getAdditionalWidth(cell),
393                   y -  tabular.getAscentOfRow(row),
394                   x2 - tabular.getAdditionalWidth(cell),
395                   y +  tabular.getDescentOfRow(row),
396                   on_off ? LColor::tabularonoffline : LColor::tabularline,
397                   on_off ? Painter::line_onoffdash : Painter::line_solid);
398 }
399
400
401 string const InsetTabular::editMessage() const
402 {
403         return _("Opened table");
404 }
405
406
407 void InsetTabular::edit(LCursor & cur, bool left)
408 {
409         lyxerr << "InsetTabular::edit: " << this << endl;
410         finishUndo();
411         cur.selection() = false;
412         cur.push(*this);
413         if (left) {
414                 if (isRightToLeft(cur))
415                         cur.idx() = tabular.getLastCellInRow(0);
416                 else
417                         cur.idx() = 0;
418                 cur.pit() = 0;
419                 cur.pos() = 0;
420         } else {
421                 if (isRightToLeft(cur))
422                         cur.idx() = tabular.getFirstCellInRow(tabular.rows() - 1);
423                 else
424                         cur.idx() = tabular.getNumberOfCells() - 1;
425                 cur.pit() = 0;
426                 cur.pos() = cur.lastpos(); // FIXME crude guess
427         }
428         // this accesses the position cache before it is initialized
429         //resetPos(cur);
430         //cur.bv().fitCursor();
431 }
432
433
434 void InsetTabular::doDispatch(LCursor & cur, FuncRequest & cmd)
435 {
436         //lyxerr << "# InsetTabular::dispatch: cmd: " << cmd << endl;
437         //lyxerr << "  cur:\n" << cur << endl;
438         CursorSlice sl = cur.top();
439         LCursor & bvcur = cur.bv().cursor();
440
441         switch (cmd.action) {
442
443         case LFUN_MOUSE_PRESS:
444                 //lyxerr << "# InsetTabular::MousePress\n" << cur.bv().cursor() << endl;
445
446                 if (cmd.button() == mouse_button::button1) {
447                         cur.selection() = false;
448                         setCursorFromCoordinates(cur, cmd.x, cmd.y);
449                         cur.resetAnchor();
450                         bvcur = cur;
451                         break;
452                 }
453
454                 if (cmd.button() == mouse_button::button2) {
455                         // FIXME: pasting multiple cells (with insettabular's own
456                         // LFUN_PASTESELECTION still does not work! (jspitzm)
457                         cmd = FuncRequest(LFUN_PASTESELECTION, "paragraph");
458                         cell(cur.idx())->dispatch(cur, cmd);
459                         break;
460                 }
461
462                 // we'll pop up the table dialog on release
463                 if (cmd.button() == mouse_button::button3)
464                         break;
465                 break;
466
467         case LFUN_MOUSE_MOTION:
468                 //lyxerr << "# InsetTabular::MouseMotion\n" << bvcur << endl;
469                 if (cmd.button() == mouse_button::button1) {
470                         // only accept motions to places not deeper nested than the real anchor
471                         if (bvcur.anchor_.hasPart(cur)) {
472                                 setCursorFromCoordinates(cur, cmd.x, cmd.y);
473                                 bvcur.setCursor(cur);
474                                 bvcur.selection() = true;
475                         } else
476                                 cur.undispatched();
477                 }
478                 break;
479
480         case LFUN_MOUSE_RELEASE:
481                 //lyxerr << "# InsetTabular::MouseRelease\n" << bvcur << endl;
482                 if (cmd.button() == mouse_button::button3)
483                         InsetTabularMailer(*this).showDialog(&cur.bv());
484                 break;
485
486         case LFUN_CELL_BACKWARD:
487                 movePrevCell(cur);
488                 cur.selection() = false;
489                 break;
490
491         case LFUN_CELL_FORWARD:
492                 moveNextCell(cur);
493                 cur.selection() = false;
494                 break;
495
496         case LFUN_RIGHTSEL:
497         case LFUN_RIGHT:
498                 cell(cur.idx())->dispatch(cur, cmd);
499                 cur.dispatched(); // override the cell's decision
500                 if (sl == cur.top())
501                         isRightToLeft(cur) ? movePrevCell(cur) : moveNextCell(cur);
502                 if (sl == cur.top()) {
503                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
504                         cur.undispatched();
505                         resetPos(cur);
506                 }
507                 break;
508
509         case LFUN_LEFTSEL:
510         case LFUN_LEFT:
511                 cell(cur.idx())->dispatch(cur, cmd);
512                 cur.dispatched(); // override the cell's decision
513                 if (sl == cur.top())
514                         isRightToLeft(cur) ? moveNextCell(cur) : movePrevCell(cur);
515                 if (sl == cur.top()) {
516                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
517                         cur.undispatched();
518                         resetPos(cur);
519                 }
520                 break;
521
522         case LFUN_DOWNSEL:
523         case LFUN_DOWN:
524                 cell(cur.idx())->dispatch(cur, cmd);
525                 cur.dispatched(); // override the cell's decision
526                 if (sl == cur.top())
527                         if (tabular.row_of_cell(cur.idx()) != tabular.rows() - 1) {
528                                 cur.idx() = tabular.getCellBelow(cur.idx());
529                                 cur.pit() = 0;
530                                 cur.pos() = 0;
531                                 resetPos(cur);
532                         }
533                 if (sl == cur.top()) {
534                         cmd = FuncRequest(LFUN_FINISHED_DOWN);
535                         cur.undispatched();
536                         resetPos(cur);
537                 }
538                 break;
539
540         case LFUN_UPSEL:
541         case LFUN_UP:
542                 cell(cur.idx())->dispatch(cur, cmd);
543                 cur.dispatched(); // override the cell's decision
544                 if (sl == cur.top())
545                         if (tabular.row_of_cell(cur.idx()) != 0) {
546                                 cur.idx() = tabular.getCellAbove(cur.idx());
547                                 cur.pit() = cur.lastpit();
548                                 cur.pos() = cur.lastpos();
549                                 resetPos(cur);
550                         }
551                 if (sl == cur.top()) {
552                         cmd = FuncRequest(LFUN_FINISHED_UP);
553                         cur.undispatched();
554                         resetPos(cur);
555                 }
556                 break;
557
558 //      case LFUN_NEXT: {
559 //              //if (hasSelection())
560 //              //      cur.selection() = false;
561 //              col_type const col = tabular.column_of_cell(cur.idx());
562 //              int const t =   cur.bv().top_y() + cur.bv().painter().paperHeight();
563 //              if (t < yo() + tabular.getHeightOfTabular()) {
564 //                      cur.bv().scrollDocView(t);
565 //                      cur.idx() = tabular.getCellBelow(first_visible_cell) + col;
566 //              } else {
567 //                      cur.idx() = tabular.getFirstCellInRow(tabular.rows() - 1) + col;
568 //              }
569 //              cur.par() = 0;
570 //              cur.pos() = 0;
571 //              resetPos(cur);
572 //              break;
573 //      }
574 //
575 //      case LFUN_PRIOR: {
576 //              //if (hasSelection())
577 //              //      cur.selection() = false;
578 //              col_type const col = tabular.column_of_cell(cur.idx());
579 //              int const t =   cur.bv().top_y() + cur.bv().painter().paperHeight();
580 //              if (yo() < 0) {
581 //                      cur.bv().scrollDocView(t);
582 //                      if (yo() > 0)
583 //                              cur.idx() = col;
584 //                      else
585 //                              cur.idx() = tabular.getCellBelow(first_visible_cell) + col;
586 //              } else {
587 //                      cur.idx() = col;
588 //              }
589 //              cur.par() = cur.lastpar();
590 //              cur.pos() = cur.lastpos();
591 //              resetPos(cur);
592 //              break;
593 //      }
594
595         case LFUN_LAYOUT_TABULAR:
596                 InsetTabularMailer(*this).showDialog(&cur.bv());
597                 break;
598
599         case LFUN_INSET_DIALOG_UPDATE:
600                 InsetTabularMailer(*this).updateDialog(&cur.bv());
601                 break;
602
603         case LFUN_TABULAR_FEATURE:
604                 if (!tabularFeatures(cur, cmd.argument))
605                         cur.undispatched();
606                 break;
607
608         // insert file functions
609         case LFUN_FILE_INSERT_ASCII_PARA:
610         case LFUN_FILE_INSERT_ASCII: {
611                 string const tmpstr = getContentsOfAsciiFile(&cur.bv(), cmd.argument, false);
612                 if (!tmpstr.empty() && !insertAsciiString(cur.bv(), tmpstr, false))
613                         cur.undispatched();
614                 break;
615         }
616
617         case LFUN_CUT:
618                 if (tablemode(cur)) {
619                         if (copySelection(cur)) {
620                                 recordUndo(cur, Undo::DELETE);
621                                 cutSelection(cur);
622                         }
623                 }
624                 else
625                         cell(cur.idx())->dispatch(cur, cmd);
626                 break;
627
628         case LFUN_BACKSPACE:
629         case LFUN_DELETE:
630                 recordUndo(cur, Undo::DELETE);
631                 if (tablemode(cur))
632                         cutSelection(cur);
633                 else
634                         cell(cur.idx())->dispatch(cur, cmd);
635                 break;
636
637         case LFUN_COPY:
638                 if (!cur.selection())
639                         break;
640                 if (tablemode(cur)) {
641                         finishUndo();
642                         copySelection(cur);
643                 } else
644                         cell(cur.idx())->dispatch(cur, cmd);
645                 break;
646
647         case LFUN_PASTESELECTION: {
648                 string const clip = cur.bv().getClipboard();
649                 if (clip.empty())
650                         break;
651                 if (clip.find('\t') != string::npos) {
652                         col_type cols = 1;
653                         row_type rows = 1;
654                         col_type maxCols = 1;
655                         size_t len = clip.length();
656                         for (size_t p = 0; p < len; ++p) {
657                                 p = clip.find_first_of("\t\n", p);
658                                 if (p == string::npos)
659                                         break;
660                                 switch (clip[p]) {
661                                 case '\t':
662                                         ++cols;
663                                         break;
664                                 case '\n':
665                                         if (p + 1 < len)
666                                                 ++rows;
667                                         maxCols = max(cols, maxCols);
668                                         cols = 1;
669                                         break;
670                                 }
671                         }
672                         maxCols = max(cols, maxCols);
673
674                         paste_tabular.reset(
675                                 new LyXTabular(cur.buffer().params(), rows, maxCols));
676
677                         string::size_type op = 0;
678                         idx_type cell = 0;
679                         idx_type const cells =
680                                 paste_tabular->getNumberOfCells();
681                         cols = 0;
682                         LyXFont font;
683                         for (size_t p = 0; cell < cells && p < len; ++p) {
684                                 p = clip.find_first_of("\t\n", p);
685                                 if (p == string::npos || p >= len)
686                                         break;
687                                 switch (clip[p]) {
688                                 case '\t':
689                                         paste_tabular->getCellInset(cell)->
690                                                 setText(clip.substr(op, p - op), font);
691                                         ++cols;
692                                         ++cell;
693                                         break;
694                                 case '\n':
695                                         paste_tabular->getCellInset(cell)->
696                                                 setText(clip.substr(op, p - op), font);
697                                         while (cols++ < maxCols)
698                                                 ++cell;
699                                         cols = 0;
700                                         break;
701                                 }
702                                 op = p + 1;
703                         }
704                         // check for the last cell if there is no trailing '\n'
705                         if (cell < cells && op < len)
706                                 paste_tabular->getCellInset(cell)->
707                                         setText(clip.substr(op, len - op), font);
708                 } else if (!insertAsciiString(cur.bv(), clip, true)) {
709                         // so that the clipboard is used and it goes on
710                         // to default
711                         // and executes LFUN_PASTESELECTION in insettext!
712                         paste_tabular.reset();
713                 }
714                 // fall through
715         }
716
717         case LFUN_PASTE:
718                 if (hasPasteBuffer()) {
719                         recordUndo(cur, Undo::INSERT);
720                         pasteSelection(cur);
721                         break;
722                 }
723                 cell(cur.idx())->dispatch(cur, cmd);
724                 break;
725
726         case LFUN_EMPH:
727         case LFUN_BOLD:
728         case LFUN_ROMAN:
729         case LFUN_NOUN:
730         case LFUN_ITAL:
731         case LFUN_FRAK:
732         case LFUN_CODE:
733         case LFUN_SANS:
734         case LFUN_FREEFONT_APPLY:
735         case LFUN_FREEFONT_UPDATE:
736         case LFUN_FONT_SIZE:
737         case LFUN_UNDERLINE:
738         case LFUN_LANGUAGE:
739         case LFUN_CAPITALIZE_WORD:
740         case LFUN_UPCASE_WORD:
741         case LFUN_LOWCASE_WORD:
742         case LFUN_TRANSPOSE_CHARS:
743                 if (tablemode(cur)) {
744                         row_type rs, re;
745                         col_type cs, ce;
746                         getSelection(cur, rs, re, cs, ce);
747                         for (row_type i = rs; i <= re; ++i)
748                                 for (col_type j = cs; j <= ce; ++j) {
749                                         // cursor follows cell:
750                                         cur.idx() = tabular.getCellNumber(i, j);
751                                         // select this cell only:
752                                         cur.pos() = 0;
753                                         cur.resetAnchor();
754                                         cur.pos() = cur.top().lastpos();
755                                         cur.setCursor(cur);
756                                         cur.setSelection();
757                                         cell(cur.idx())->dispatch(cur, cmd);
758                                 }
759                         // Restore original selection
760                         cur.idx() = tabular.getCellNumber(rs, cs);
761                         cur.pos() = 0;
762                         cur.resetAnchor();
763                         cur.idx() = tabular.getCellNumber(re, ce);
764                         cur.pos() = cur.top().lastpos();
765                         cur.setCursor(cur);
766                         cur.setSelection();
767                         break;
768                 } else {
769                         cell(cur.idx())->dispatch(cur, cmd);
770                         break;
771                 }
772         default:
773                 // we try to handle this event in the insets dispatch function.
774                 cell(cur.idx())->dispatch(cur, cmd);
775                 break;
776         }
777
778         InsetTabularMailer(*this).updateDialog(&cur.bv());
779 }
780
781
782 // function sets an object as defined in func_status.h:
783 // states OK, Unknown, Disabled, On, Off.
784 bool InsetTabular::getStatus(LCursor & cur, FuncRequest const & cmd,
785         FuncStatus & status) const
786 {
787         switch (cmd.action) {
788         case LFUN_TABULAR_FEATURE: {
789                 int action = LyXTabular::LAST_ACTION;
790                 int i = 0;
791                 for (; tabularFeature[i].action != LyXTabular::LAST_ACTION; ++i) {
792                         string const tmp = tabularFeature[i].feature;
793                         if (tmp == cmd.argument.substr(0, tmp.length())) {
794                                 action = tabularFeature[i].action;
795                                 break;
796                         }
797                 }
798                 if (action == LyXTabular::LAST_ACTION) {
799                         status.clear();
800                         status.unknown(true);
801                         return true;
802                 }
803
804                 string const argument
805                         = ltrim(cmd.argument.substr(tabularFeature[i].feature.length()));
806
807                 row_type sel_row_start = 0;
808                 row_type sel_row_end = 0;
809                 col_type dummy;
810                 LyXTabular::ltType dummyltt;
811                 bool flag = true;
812
813                 getSelection(cur, sel_row_start, sel_row_end, dummy, dummy);
814
815                 switch (action) {
816                 case LyXTabular::SET_PWIDTH:
817                 case LyXTabular::SET_MPWIDTH:
818                 case LyXTabular::SET_SPECIAL_COLUMN:
819                 case LyXTabular::SET_SPECIAL_MULTI:
820                 case LyXTabular::APPEND_ROW:
821                 case LyXTabular::APPEND_COLUMN:
822                 case LyXTabular::DELETE_ROW:
823                 case LyXTabular::DELETE_COLUMN:
824                 case LyXTabular::SET_ALL_LINES:
825                 case LyXTabular::UNSET_ALL_LINES:
826                         status.clear();
827                         return true;
828
829                 case LyXTabular::MULTICOLUMN:
830                         status.setOnOff(tabular.isMultiColumn(cur.idx()));
831                         break;
832
833                 case LyXTabular::M_TOGGLE_LINE_TOP:
834                         flag = false;
835                 case LyXTabular::TOGGLE_LINE_TOP:
836                         status.setOnOff(tabular.topLine(cur.idx(), flag));
837                         break;
838
839                 case LyXTabular::M_TOGGLE_LINE_BOTTOM:
840                         flag = false;
841                 case LyXTabular::TOGGLE_LINE_BOTTOM:
842                         status.setOnOff(tabular.bottomLine(cur.idx(), flag));
843                         break;
844
845                 case LyXTabular::M_TOGGLE_LINE_LEFT:
846                         flag = false;
847                 case LyXTabular::TOGGLE_LINE_LEFT:
848                         status.setOnOff(tabular.leftLine(cur.idx(), flag));
849                         break;
850
851                 case LyXTabular::M_TOGGLE_LINE_RIGHT:
852                         flag = false;
853                 case LyXTabular::TOGGLE_LINE_RIGHT:
854                         status.setOnOff(tabular.rightLine(cur.idx(), flag));
855                         break;
856
857                 case LyXTabular::M_ALIGN_LEFT:
858                         flag = false;
859                 case LyXTabular::ALIGN_LEFT:
860                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_LEFT);
861                         break;
862
863                 case LyXTabular::M_ALIGN_RIGHT:
864                         flag = false;
865                 case LyXTabular::ALIGN_RIGHT:
866                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_RIGHT);
867                         break;
868
869                 case LyXTabular::M_ALIGN_CENTER:
870                         flag = false;
871                 case LyXTabular::ALIGN_CENTER:
872                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_CENTER);
873                         break;
874
875                 case LyXTabular::ALIGN_BLOCK:
876                         status.enabled(!tabular.getPWidth(cur.idx()).zero());
877                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_BLOCK);
878                         break;
879
880                 case LyXTabular::M_VALIGN_TOP:
881                         flag = false;
882                 case LyXTabular::VALIGN_TOP:
883                         status.setOnOff(
884                                 tabular.getVAlignment(cur.idx(), flag) == LyXTabular::LYX_VALIGN_TOP);
885                         break;
886
887                 case LyXTabular::M_VALIGN_BOTTOM:
888                         flag = false;
889                 case LyXTabular::VALIGN_BOTTOM:
890                         status.setOnOff(
891                                 tabular.getVAlignment(cur.idx(), flag) == LyXTabular::LYX_VALIGN_BOTTOM);
892                         break;
893
894                 case LyXTabular::M_VALIGN_MIDDLE:
895                         flag = false;
896                 case LyXTabular::VALIGN_MIDDLE:
897                         status.setOnOff(
898                                 tabular.getVAlignment(cur.idx(), flag) == LyXTabular::LYX_VALIGN_MIDDLE);
899                         break;
900
901                 case LyXTabular::SET_LONGTABULAR:
902                         status.setOnOff(tabular.isLongTabular());
903                         break;
904
905                 case LyXTabular::UNSET_LONGTABULAR:
906                         status.setOnOff(!tabular.isLongTabular());
907                         break;
908
909                 case LyXTabular::SET_ROTATE_TABULAR:
910                         status.setOnOff(tabular.getRotateTabular());
911                         break;
912
913                 case LyXTabular::UNSET_ROTATE_TABULAR:
914                         status.setOnOff(!tabular.getRotateTabular());
915                         break;
916
917                 case LyXTabular::SET_ROTATE_CELL:
918                         status.setOnOff(tabular.getRotateCell(cur.idx()));
919                         break;
920
921                 case LyXTabular::UNSET_ROTATE_CELL:
922                         status.setOnOff(!tabular.getRotateCell(cur.idx()));
923                         break;
924
925                 case LyXTabular::SET_USEBOX:
926                         status.setOnOff(convert<int>(argument) == tabular.getUsebox(cur.idx()));
927                         break;
928
929                 case LyXTabular::SET_LTFIRSTHEAD:
930                         status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
931                         break;
932
933                 case LyXTabular::UNSET_LTFIRSTHEAD:
934                         status.setOnOff(!tabular.getRowOfLTHead(sel_row_start, dummyltt));
935                         break;
936
937                 case LyXTabular::SET_LTHEAD:
938                         status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
939                         break;
940
941                 case LyXTabular::UNSET_LTHEAD:
942                         status.setOnOff(!tabular.getRowOfLTHead(sel_row_start, dummyltt));
943                         break;
944
945                 case LyXTabular::SET_LTFOOT:
946                         status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
947                         break;
948
949                 case LyXTabular::UNSET_LTFOOT:
950                         status.setOnOff(!tabular.getRowOfLTFoot(sel_row_start, dummyltt));
951                         break;
952
953                 case LyXTabular::SET_LTLASTFOOT:
954                         status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
955                         break;
956
957                 case LyXTabular::UNSET_LTLASTFOOT:
958                         status.setOnOff(!tabular.getRowOfLTFoot(sel_row_start, dummyltt));
959                         break;
960
961                 case LyXTabular::SET_LTNEWPAGE:
962                         status.setOnOff(tabular.getLTNewPage(sel_row_start));
963                         break;
964
965                 default:
966                         status.clear();
967                         status.enabled(false);
968                         break;
969                 }
970                 return true;
971         }
972
973         // These are only enabled inside tabular
974         case LFUN_CELL_BACKWARD:
975         case LFUN_CELL_FORWARD:
976                 status.enabled(true);
977                         return true;
978
979         // disable these with multiple cells selected
980         case LFUN_INSET_INSERT:
981         case LFUN_TABULAR_INSERT:
982         case LFUN_INSERT_CHARSTYLE:
983         case LFUN_INSET_FLOAT:
984         case LFUN_INSET_WIDE_FLOAT:
985         case LFUN_INSET_FOOTNOTE:
986         case LFUN_INSET_MARGINAL:
987         case LFUN_INSERT_MATH:
988         case LFUN_MATH_MODE:
989         case LFUN_MATH_MUTATE:
990         case LFUN_MATH_DISPLAY:
991         case LFUN_INSERT_NOTE:
992         case LFUN_INSET_OPTARG:
993         case LFUN_INSERT_BOX:
994         case LFUN_INSERT_BRANCH:
995         case LFUN_INSET_WRAP:
996         case LFUN_INSET_ERT: {
997                 if (tablemode(cur)) {
998                         status.enabled(false);
999                         return true;
1000                 }
1001         }
1002
1003         case LFUN_INSET_MODIFY:
1004                 if (translate(cmd.getArg(0)) == TABULAR_CODE) {
1005                         status.enabled(true);
1006                         return true;
1007                 }
1008                 // Fall through
1009
1010         default:
1011                 // we try to handle this event in the insets dispatch function.
1012                 return cell(cur.idx())->getStatus(cur, cmd, status);
1013         }
1014 }
1015
1016
1017 int InsetTabular::latex(Buffer const & buf, ostream & os,
1018                         OutputParams const & runparams) const
1019 {
1020         return tabular.latex(buf, os, runparams);
1021 }
1022
1023
1024 int InsetTabular::plaintext(Buffer const & buf, ostream & os,
1025                         OutputParams const & runparams) const
1026 {
1027         int const dp = runparams.linelen ? runparams.depth : 0;
1028         return tabular.plaintext(buf, os, runparams, dp, false, 0);
1029 }
1030
1031
1032 int InsetTabular::linuxdoc(Buffer const & buf, ostream & os,
1033                            OutputParams const & runparams) const
1034 {
1035         return tabular.linuxdoc(buf,os, runparams);
1036 }
1037
1038
1039 int InsetTabular::docbook(Buffer const & buf, ostream & os,
1040                           OutputParams const & runparams) const
1041 {
1042         int ret = 0;
1043         InsetBase * master = 0;
1044
1045 #ifdef WITH_WARNINGS
1046 #warning Why not pass a proper DocIterator here?
1047 #endif
1048 #if 0
1049         // if the table is inside a float it doesn't need the informaltable
1050         // wrapper. Search for it.
1051         for (master = owner(); master; master = master->owner())
1052                 if (master->lyxCode() == InsetBase::FLOAT_CODE)
1053                         break;
1054 #endif
1055
1056         if (!master) {
1057                 os << "<informaltable>";
1058                 ++ret;
1059         }
1060         ret += tabular.docbook(buf, os, runparams);
1061         if (!master) {
1062                 os << "</informaltable>";
1063                 ++ret;
1064         }
1065         return ret;
1066 }
1067
1068
1069 void InsetTabular::validate(LaTeXFeatures & features) const
1070 {
1071         tabular.validate(features);
1072 }
1073
1074
1075 shared_ptr<InsetText const> InsetTabular::cell(idx_type idx) const
1076 {
1077         return tabular.getCellInset(idx);
1078 }
1079
1080
1081 shared_ptr<InsetText> InsetTabular::cell(idx_type idx)
1082 {
1083         return tabular.getCellInset(idx);
1084 }
1085
1086
1087 void InsetTabular::cursorPos
1088         (CursorSlice const & sl, bool boundary, int & x, int & y) const
1089 {
1090         cell(sl.idx())->cursorPos(sl, boundary, x, y);
1091
1092         // y offset     correction
1093         int const row = tabular.row_of_cell(sl.idx());
1094         for (int i = 0; i <= row; ++i) {
1095                 if (i != 0) {
1096                         y += tabular.getAscentOfRow(i);
1097                         y += tabular.getAdditionalHeight(i);
1098                 }
1099                 if (i != row)
1100                         y += tabular.getDescentOfRow(i);
1101         }
1102
1103         // x offset correction
1104         int const col = tabular.column_of_cell(sl.idx());
1105         int idx = tabular.getCellNumber(row, 0);
1106         for (int j = 0; j < col; ++j) {
1107                 if (tabular.isPartOfMultiColumn(row, j))
1108                         continue;
1109                 x += tabular.getWidthOfColumn(idx);
1110                 ++idx;
1111         }
1112         x += tabular.getBeginningOfTextInCell(idx);
1113         x += ADD_TO_TABULAR_WIDTH;
1114         x += scroll();
1115 }
1116
1117
1118 int InsetTabular::dist(idx_type const cell, int x, int y) const
1119 {
1120         int xx = 0;
1121         int yy = 0;
1122         InsetBase const & inset = *tabular.getCellInset(cell);
1123         Point o = theCoords.getInsets().xy(&inset);
1124         int const xbeg = o.x_ - tabular.getBeginningOfTextInCell(cell);
1125         int const xend = xbeg + tabular.getWidthOfColumn(cell);
1126         int const ybeg = o.y_ - inset.ascent();
1127         row_type const row = tabular.row_of_cell(cell);
1128         int const rowheight = tabular.getAscentOfRow(row)
1129                         + tabular.getDescentOfRow(row)
1130                         + tabular.getAdditionalHeight(row);
1131         int const yend = ybeg + rowheight;
1132
1133         if (x < xbeg)
1134                 xx = xbeg - x;
1135         else if (x > xend)
1136                 xx = x - xend;
1137
1138         if (y < ybeg) 
1139                 yy = ybeg - y;
1140         else if (y > yend) 
1141                 yy = y - yend;
1142
1143         //lyxerr << " xbeg=" << xbeg << "  xend=" << xend
1144         //       << " ybeg=" << ybeg << " yend=" << yend
1145         //       << " xx=" << xx << " yy=" << yy
1146         //       << " dist=" << xx + yy << endl;
1147         return xx + yy;
1148 }
1149
1150
1151 InsetBase * InsetTabular::editXY(LCursor & cur, int x, int y)
1152 {
1153         //lyxerr << "InsetTabular::editXY: " << this << endl;
1154         cur.selection() = false;
1155         cur.push(*this);
1156         cur.idx() = getNearestCell(x, y);
1157         resetPos(cur);
1158         return cell(cur.idx())->text_.editXY(cur, x, y);
1159         //int xx = cursorx_ - xo() + tabular.getBeginningOfTextInCell(cur.idx());
1160 }
1161
1162
1163 void InsetTabular::setCursorFromCoordinates(LCursor & cur, int x, int y) const
1164 {
1165         //lyxerr << "# InsetTabular::setCursorFromCoordinates()\n" << cur << endl;
1166         cur.idx() = getNearestCell(x, y);
1167         resetPos(cur);
1168         return cell(cur.idx())->text_.setCursorFromCoordinates(cur, x, y);
1169 }
1170
1171
1172 InsetTabular::idx_type InsetTabular::getNearestCell(int x, int y) const
1173 {
1174         //lyxerr << "# InsetTabular::getNearestCell()  x=" << x << " y=" << y << endl;
1175         idx_type idx_min = 0;
1176         int dist_min = std::numeric_limits<int>::max();
1177         for (idx_type i = 0; i < nargs(); ++i) {
1178                 if (theCoords.getInsets().has(tabular.getCellInset(i).get())) {
1179                         int d = dist(i, x, y);
1180                         if (d < dist_min) {
1181                                 dist_min = d;
1182                                 idx_min = i;
1183                         }
1184                 }
1185         }
1186         return idx_min;
1187 }
1188
1189
1190 int InsetTabular::getCellXPos(idx_type const cell) const
1191 {
1192         idx_type c = cell;
1193
1194         for (; !tabular.isFirstCellInRow(c); --c)
1195                 ;
1196         int lx = tabular.getWidthOfColumn(cell);
1197         for (; c < cell; ++c)
1198                 lx += tabular.getWidthOfColumn(c);
1199
1200         return lx - tabular.getWidthOfColumn(cell);
1201 }
1202
1203
1204 void InsetTabular::resetPos(LCursor & cur) const
1205 {
1206         //lyxerr << "InsetTabular::resetPos" << endl;
1207         BufferView & bv = cur.bv();
1208         int const maxwidth = bv.workWidth();
1209 //      col_type const actcol = tabular.column_of_cell(cur.idx());
1210 //      int const offset = ADD_TO_TABULAR_WIDTH + 2;
1211 //      int const new_x = getCellXPos(cur.idx()) + offset;
1212 //      int const old_x = cursorx_;
1213 //      int const col_width = tabular.getWidthOfColumn(cur.idx());
1214 //      cursorx_ = new_x;
1215 //    cursor.x(getCellXPos(cur.idx()) + offset);
1216 //      if (actcol < tabular.columns() - 1 && scroll(false) &&
1217 //              tabular.getWidthOfTabular() < maxwidth - 20)
1218 //      {
1219 //              scx = 0;
1220 //      } else if (cursorx_ - offset > 20 &&
1221 //                 cursorx_ - offset + col_width > maxwidth - 20) {
1222 //              setScroll(maxwidth, - col_width - 20 - scx);
1223 //      } else if (cursorx_ - offset < 20) {
1224 //              setScroll(maxwidth, 20 - cursorx_ + offset - scx);
1225 //      } else if (scroll() && xo() > 20 &&
1226 //                 xo() + tabular.getWidthOfTabular() > maxwidth - 20) {
1227 //              setScroll(maxwidth, old_x - cursorx_ - scx);
1228 //      }
1229
1230         if (&cur.inset() != this) {
1231                 scx = 0;
1232         } else {
1233                 int const X1 = 0;
1234                 int const X2 = maxwidth;
1235                 int const offset = ADD_TO_TABULAR_WIDTH + 2;
1236                 int const x1 = xo() + getCellXPos(cur.idx()) + offset;
1237                 int const x2 = x1 + tabular.getWidthOfColumn(cur.idx());
1238
1239                 if (x1 < X1)
1240                         scx = X1 + 20 - x1;
1241                 else if (x2 > X2)
1242                         scx = X2 - 20 - x2;
1243                 else
1244                         scx = 0;
1245         }
1246
1247         cur.needsUpdate();
1248
1249         InsetTabularMailer(*this).updateDialog(&bv);
1250 }
1251
1252
1253 void InsetTabular::moveNextCell(LCursor & cur)
1254 {
1255         if (isRightToLeft(cur)) {
1256                 if (tabular.isFirstCellInRow(cur.idx())) {
1257                         row_type const row = tabular.row_of_cell(cur.idx());
1258                         if (row == tabular.rows() - 1)
1259                                 return;
1260                         cur.idx() = tabular.getCellBelow(tabular.getLastCellInRow(row));
1261                 } else {
1262                         if (cur.idx() == 0)
1263                                 return;
1264                         --cur.idx();
1265                 }
1266         } else {
1267                 if (tabular.isLastCell(cur.idx()))
1268                         return;
1269                 ++cur.idx();
1270         }
1271         cur.pit() = 0;
1272         cur.pos() = 0;
1273         resetPos(cur);
1274 }
1275
1276
1277 void InsetTabular::movePrevCell(LCursor & cur)
1278 {
1279         if (isRightToLeft(cur)) {
1280                 if (tabular.isLastCellInRow(cur.idx())) {
1281                         row_type const row = tabular.row_of_cell(cur.idx());
1282                         if (row == 0)
1283                                 return;
1284                         cur.idx() = tabular.getFirstCellInRow(row);
1285                         cur.idx() = tabular.getCellAbove(cur.idx());
1286                 } else {
1287                         if (tabular.isLastCell(cur.idx()))
1288                                 return;
1289                         ++cur.idx();
1290                 }
1291         } else {
1292                 if (cur.idx() == 0) // first cell
1293                         return;
1294                 --cur.idx();
1295         }
1296         cur.pit() = cur.lastpit();
1297         cur.pos() = cur.lastpos();
1298         resetPos(cur);
1299 }
1300
1301
1302 bool InsetTabular::tabularFeatures(LCursor & cur, string const & what)
1303 {
1304         LyXTabular::Feature action = LyXTabular::LAST_ACTION;
1305
1306         int i = 0;
1307         for (; tabularFeature[i].action != LyXTabular::LAST_ACTION; ++i) {
1308                 string const tmp = tabularFeature[i].feature;
1309
1310                 if (tmp == what.substr(0, tmp.length())) {
1311                         //if (!compare(tabularFeatures[i].feature.c_str(), what.c_str(),
1312                         //tabularFeatures[i].feature.length())) {
1313                         action = tabularFeature[i].action;
1314                         break;
1315                 }
1316         }
1317         if (action == LyXTabular::LAST_ACTION)
1318                 return false;
1319
1320         string const val =
1321                 ltrim(what.substr(tabularFeature[i].feature.length()));
1322         tabularFeatures(cur, action, val);
1323         return true;
1324 }
1325
1326
1327 namespace {
1328
1329 void checkLongtableSpecial(LyXTabular::ltType & ltt,
1330                           string const & special, bool & flag)
1331 {
1332         if (special == "dl_above") {
1333                 ltt.topDL = flag;
1334                 ltt.set = false;
1335         } else if (special == "dl_below") {
1336                 ltt.bottomDL = flag;
1337                 ltt.set = false;
1338         } else if (special == "empty") {
1339                 ltt.empty = flag;
1340                 ltt.set = false;
1341         } else if (flag) {
1342                 ltt.empty = false;
1343                 ltt.set = true;
1344         }
1345 }
1346
1347 } // anon namespace
1348
1349
1350 void InsetTabular::tabularFeatures(LCursor & cur,
1351         LyXTabular::Feature feature, string const & value)
1352 {
1353         BufferView & bv = cur.bv();
1354         col_type sel_col_start;
1355         col_type sel_col_end;
1356         row_type sel_row_start;
1357         row_type sel_row_end;
1358         bool setLines = false;
1359         LyXAlignment setAlign = LYX_ALIGN_LEFT;
1360         LyXTabular::VAlignment setVAlign = LyXTabular::LYX_VALIGN_TOP;
1361
1362         switch (feature) {
1363
1364         case LyXTabular::M_ALIGN_LEFT:
1365         case LyXTabular::ALIGN_LEFT:
1366                 setAlign = LYX_ALIGN_LEFT;
1367                 break;
1368
1369         case LyXTabular::M_ALIGN_RIGHT:
1370         case LyXTabular::ALIGN_RIGHT:
1371                 setAlign = LYX_ALIGN_RIGHT;
1372                 break;
1373
1374         case LyXTabular::M_ALIGN_CENTER:
1375         case LyXTabular::ALIGN_CENTER:
1376                 setAlign = LYX_ALIGN_CENTER;
1377                 break;
1378
1379         case LyXTabular::ALIGN_BLOCK:
1380                 setAlign = LYX_ALIGN_BLOCK;
1381                 break;
1382
1383         case LyXTabular::M_VALIGN_TOP:
1384         case LyXTabular::VALIGN_TOP:
1385                 setVAlign = LyXTabular::LYX_VALIGN_TOP;
1386                 break;
1387
1388         case LyXTabular::M_VALIGN_BOTTOM:
1389         case LyXTabular::VALIGN_BOTTOM:
1390                 setVAlign = LyXTabular::LYX_VALIGN_BOTTOM;
1391                 break;
1392
1393         case LyXTabular::M_VALIGN_MIDDLE:
1394         case LyXTabular::VALIGN_MIDDLE:
1395                 setVAlign = LyXTabular::LYX_VALIGN_MIDDLE;
1396                 break;
1397
1398         default:
1399                 break;
1400         }
1401
1402         recordUndo(cur, Undo::ATOMIC);
1403
1404         getSelection(cur, sel_row_start, sel_row_end, sel_col_start, sel_col_end);
1405         row_type const row = tabular.row_of_cell(cur.idx());
1406         col_type const column = tabular.column_of_cell(cur.idx());
1407         bool flag = true;
1408         LyXTabular::ltType ltt;
1409
1410         switch (feature) {
1411
1412         case LyXTabular::SET_PWIDTH: {
1413                 LyXLength const len(value);
1414                 tabular.setColumnPWidth(cur.idx(), len);
1415                 if (len.zero()
1416                     && tabular.getAlignment(cur.idx(), true) == LYX_ALIGN_BLOCK)
1417                         tabularFeatures(cur, LyXTabular::ALIGN_CENTER, string());
1418                 else if (!len.zero()
1419                          && tabular.getAlignment(cur.idx(), true) != LYX_ALIGN_BLOCK)
1420                         tabularFeatures(cur, LyXTabular::ALIGN_BLOCK, string());
1421                 break;
1422         }
1423
1424         case LyXTabular::SET_MPWIDTH:
1425                 tabular.setMColumnPWidth(cur.idx(), LyXLength(value));
1426                 break;
1427
1428         case LyXTabular::SET_SPECIAL_COLUMN:
1429         case LyXTabular::SET_SPECIAL_MULTI:
1430                 tabular.setAlignSpecial(cur.idx(),value,feature);
1431                 break;
1432
1433         case LyXTabular::APPEND_ROW:
1434                 // append the row into the tabular
1435                 tabular.appendRow(bv.buffer()->params(), cur.idx());
1436                 break;
1437
1438         case LyXTabular::APPEND_COLUMN:
1439                 // append the column into the tabular
1440                 tabular.appendColumn(bv.buffer()->params(), cur.idx());
1441                 cur.idx() = tabular.getCellNumber(row, column);
1442                 break;
1443
1444         case LyXTabular::DELETE_ROW:
1445                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1446                         tabular.deleteRow(sel_row_start);
1447                 if (sel_row_start >= tabular.rows())
1448                         --sel_row_start;
1449                 cur.idx() = tabular.getCellNumber(sel_row_start, column);
1450                 cur.pit() = 0;
1451                 cur.pos() = 0;
1452                 cur.selection() = false;
1453                 break;
1454
1455         case LyXTabular::DELETE_COLUMN:
1456                 for (col_type i = sel_col_start; i <= sel_col_end; ++i)
1457                         tabular.deleteColumn(sel_col_start);
1458                 if (sel_col_start >= tabular.columns())
1459                         --sel_col_start;
1460                 cur.idx() = tabular.getCellNumber(row, sel_col_start);
1461                 cur.pit() = 0;
1462                 cur.pos() = 0;
1463                 cur.selection() = false;
1464                 break;
1465
1466         case LyXTabular::M_TOGGLE_LINE_TOP:
1467                 flag = false;
1468         case LyXTabular::TOGGLE_LINE_TOP: {
1469                 bool lineSet = !tabular.topLine(cur.idx(), flag);
1470                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1471                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1472                                 tabular.setTopLine(
1473                                         tabular.getCellNumber(i, j),
1474                                         lineSet, flag);
1475                 break;
1476         }
1477
1478         case LyXTabular::M_TOGGLE_LINE_BOTTOM:
1479                 flag = false;
1480         case LyXTabular::TOGGLE_LINE_BOTTOM: {
1481                 bool lineSet = !tabular.bottomLine(cur.idx(), flag);
1482                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1483                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1484                                 tabular.setBottomLine(
1485                                         tabular.getCellNumber(i, j),
1486                                         lineSet,
1487                                         flag);
1488                 break;
1489         }
1490
1491         case LyXTabular::M_TOGGLE_LINE_LEFT:
1492                 flag = false;
1493         case LyXTabular::TOGGLE_LINE_LEFT: {
1494                 bool lineSet = !tabular.leftLine(cur.idx(), flag);
1495                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1496                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1497                                 tabular.setLeftLine(
1498                                         tabular.getCellNumber(i,j),
1499                                         lineSet,
1500                                         flag);
1501                 break;
1502         }
1503
1504         case LyXTabular::M_TOGGLE_LINE_RIGHT:
1505                 flag = false;
1506         case LyXTabular::TOGGLE_LINE_RIGHT: {
1507                 bool lineSet = !tabular.rightLine(cur.idx(), flag);
1508                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1509                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1510                                 tabular.setRightLine(
1511                                         tabular.getCellNumber(i,j),
1512                                         lineSet,
1513                                         flag);
1514                 break;
1515         }
1516
1517         case LyXTabular::M_ALIGN_LEFT:
1518         case LyXTabular::M_ALIGN_RIGHT:
1519         case LyXTabular::M_ALIGN_CENTER:
1520                 flag = false;
1521         case LyXTabular::ALIGN_LEFT:
1522         case LyXTabular::ALIGN_RIGHT:
1523         case LyXTabular::ALIGN_CENTER:
1524         case LyXTabular::ALIGN_BLOCK:
1525                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1526                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1527                                 tabular.setAlignment(
1528                                         tabular.getCellNumber(i, j),
1529                                         setAlign,
1530                                         flag);
1531                 break;
1532
1533         case LyXTabular::M_VALIGN_TOP:
1534         case LyXTabular::M_VALIGN_BOTTOM:
1535         case LyXTabular::M_VALIGN_MIDDLE:
1536                 flag = false;
1537         case LyXTabular::VALIGN_TOP:
1538         case LyXTabular::VALIGN_BOTTOM:
1539         case LyXTabular::VALIGN_MIDDLE:
1540                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1541                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1542                                 tabular.setVAlignment(
1543                                         tabular.getCellNumber(i, j),
1544                                         setVAlign, flag);
1545                 break;
1546
1547         case LyXTabular::MULTICOLUMN: {
1548                 if (sel_row_start != sel_row_end) {
1549 #ifdef WITH_WARNINGS
1550 #warning Need I say it ? This is horrible.
1551 #endif
1552                         Alert::error(_("Error setting multicolumn"),
1553                                    _("You cannot set multicolumn vertically."));
1554                         return;
1555                 }
1556                 if (!cur.selection()) {
1557                         // just multicol for one single cell
1558                         // check whether we are completely in a multicol
1559                         if (tabular.isMultiColumn(cur.idx()))
1560                                 tabular.unsetMultiColumn(cur.idx());
1561                         else
1562                                 tabular.setMultiColumn(bv.buffer(), cur.idx(), 1);
1563                         break;
1564                 }
1565                 // we have a selection so this means we just add all this
1566                 // cells to form a multicolumn cell
1567                 idx_type const s_start = cur.selBegin().idx();
1568                 idx_type const s_end = cur.selEnd().idx();
1569                 tabular.setMultiColumn(bv.buffer(), s_start, s_end - s_start + 1);
1570                 cur.idx() = s_start;
1571                 cur.pit() = 0;
1572                 cur.pos() = 0;
1573                 cur.selection() = false;
1574                 break;
1575         }
1576
1577         case LyXTabular::SET_ALL_LINES:
1578                 setLines = true;
1579         case LyXTabular::UNSET_ALL_LINES:
1580                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1581                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1582                                 tabular.setAllLines(
1583                                         tabular.getCellNumber(i,j), setLines);
1584                 break;
1585
1586         case LyXTabular::SET_LONGTABULAR:
1587                 tabular.setLongTabular(true);
1588                 break;
1589
1590         case LyXTabular::UNSET_LONGTABULAR:
1591                 tabular.setLongTabular(false);
1592                 break;
1593
1594         case LyXTabular::SET_ROTATE_TABULAR:
1595                 tabular.setRotateTabular(true);
1596                 break;
1597
1598         case LyXTabular::UNSET_ROTATE_TABULAR:
1599                 tabular.setRotateTabular(false);
1600                 break;
1601
1602         case LyXTabular::SET_ROTATE_CELL:
1603                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1604                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1605                                 tabular.setRotateCell(
1606                                         tabular.getCellNumber(i, j), true);
1607                 break;
1608
1609         case LyXTabular::UNSET_ROTATE_CELL:
1610                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1611                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1612                                 tabular.setRotateCell(
1613                                         tabular.getCellNumber(i, j), false);
1614                 break;
1615
1616         case LyXTabular::SET_USEBOX: {
1617                 LyXTabular::BoxType val = LyXTabular::BoxType(convert<int>(value));
1618                 if (val == tabular.getUsebox(cur.idx()))
1619                         val = LyXTabular::BOX_NONE;
1620                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1621                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1622                                 tabular.setUsebox(tabular.getCellNumber(i, j), val);
1623                 break;
1624         }
1625
1626         case LyXTabular::UNSET_LTFIRSTHEAD:
1627                 flag = false;
1628         case LyXTabular::SET_LTFIRSTHEAD:
1629                 tabular.getRowOfLTFirstHead(row, ltt);
1630                 checkLongtableSpecial(ltt, value, flag);
1631                 tabular.setLTHead(row, flag, ltt, true);
1632                 break;
1633
1634         case LyXTabular::UNSET_LTHEAD:
1635                 flag = false;
1636         case LyXTabular::SET_LTHEAD:
1637                 tabular.getRowOfLTHead(row, ltt);
1638                 checkLongtableSpecial(ltt, value, flag);
1639                 tabular.setLTHead(row, flag, ltt, false);
1640                 break;
1641
1642         case LyXTabular::UNSET_LTFOOT:
1643                 flag = false;
1644         case LyXTabular::SET_LTFOOT:
1645                 tabular.getRowOfLTFoot(row, ltt);
1646                 checkLongtableSpecial(ltt, value, flag);
1647                 tabular.setLTFoot(row, flag, ltt, false);
1648                 break;
1649
1650         case LyXTabular::UNSET_LTLASTFOOT:
1651                 flag = false;
1652         case LyXTabular::SET_LTLASTFOOT:
1653                 tabular.getRowOfLTLastFoot(row, ltt);
1654                 checkLongtableSpecial(ltt, value, flag);
1655                 tabular.setLTFoot(row, flag, ltt, true);
1656                 break;
1657
1658         case LyXTabular::SET_LTNEWPAGE:
1659                 tabular.setLTNewPage(row, !tabular.getLTNewPage(row));
1660                 break;
1661
1662         // dummy stuff just to avoid warnings
1663         case LyXTabular::LAST_ACTION:
1664                 break;
1665         }
1666
1667         InsetTabularMailer(*this).updateDialog(&bv);
1668 }
1669
1670
1671 bool InsetTabular::showInsetDialog(BufferView * bv) const
1672 {
1673         InsetTabularMailer(*this).showDialog(bv);
1674         return true;
1675 }
1676
1677
1678 void InsetTabular::openLayoutDialog(BufferView * bv) const
1679 {
1680         InsetTabularMailer(*this).showDialog(bv);
1681 }
1682
1683
1684 void InsetTabular::getLabelList(Buffer const & buffer,
1685                                 vector<string> & list) const
1686 {
1687         tabular.getLabelList(buffer, list);
1688 }
1689
1690
1691 bool InsetTabular::copySelection(LCursor & cur)
1692 {
1693         if (!cur.selection())
1694                 return false;
1695
1696         row_type rs, re;
1697         col_type cs, ce;
1698         getSelection(cur, rs, re, cs, ce);
1699
1700         paste_tabular.reset(new LyXTabular(tabular));
1701
1702         for (row_type i = 0; i < rs; ++i)
1703                 paste_tabular->deleteRow(0);
1704
1705         row_type const rows = re - rs + 1;
1706         while (paste_tabular->rows() > rows)
1707                 paste_tabular->deleteRow(rows);
1708
1709         paste_tabular->setTopLine(0, true, true);
1710         paste_tabular->setBottomLine(paste_tabular->getFirstCellInRow(rows - 1),
1711                                      true, true);
1712
1713         for (col_type i = 0; i < cs; ++i)
1714                 paste_tabular->deleteColumn(0);
1715
1716         col_type const columns = ce - cs + 1;
1717         while (paste_tabular->columns() > columns)
1718                 paste_tabular->deleteColumn(columns);
1719
1720         paste_tabular->setLeftLine(0, true, true);
1721         paste_tabular->setRightLine(paste_tabular->getLastCellInRow(0),
1722                                     true, true);
1723
1724         ostringstream os;
1725         OutputParams const runparams;
1726         paste_tabular->plaintext(cur.buffer(), os, runparams, 0, true, '\t');
1727         cur.bv().stuffClipboard(os.str());
1728         return true;
1729 }
1730
1731
1732 bool InsetTabular::pasteSelection(LCursor & cur)
1733 {
1734         if (!paste_tabular)
1735                 return false;
1736         col_type const actcol = tabular.column_of_cell(cur.idx());
1737         row_type const actrow = tabular.row_of_cell(cur.idx());
1738         for (row_type r1 = 0, r2 = actrow;
1739              r1 < paste_tabular->rows() && r2 < tabular.rows();
1740              ++r1, ++r2) {
1741                 for (col_type c1 = 0, c2 = actcol;
1742                     c1 < paste_tabular->columns() && c2 < tabular.columns();
1743                     ++c1, ++c2) {
1744                         if (paste_tabular->isPartOfMultiColumn(r1, c1) &&
1745                             tabular.isPartOfMultiColumn(r2, c2))
1746                                 continue;
1747                         if (paste_tabular->isPartOfMultiColumn(r1, c1)) {
1748                                 --c2;
1749                                 continue;
1750                         }
1751                         if (tabular.isPartOfMultiColumn(r2, c2)) {
1752                                 --c1;
1753                                 continue;
1754                         }
1755                         shared_ptr<InsetText> inset(
1756                                 new InsetText(*paste_tabular->getCellInset(r1, c1)));
1757                         tabular.setCellInset(r2, c2, inset);
1758                         inset->markNew();
1759                         cur.pos() = 0;
1760                 }
1761         }
1762         return true;
1763 }
1764
1765
1766 void InsetTabular::cutSelection(LCursor & cur)
1767 {
1768         if (!cur.selection())
1769                 return;
1770
1771         bool const track = cur.buffer().params().tracking_changes;
1772         row_type rs, re;
1773         col_type cs, ce;
1774         getSelection(cur, rs, re, cs, ce);
1775         for (row_type i = rs; i <= re; ++i)
1776                 for (col_type j = cs; j <= ce; ++j)
1777                         cell(tabular.getCellNumber(i, j))->clear(track);
1778
1779         // cursor position might be invalid now
1780         cur.pos() = cur.lastpos();
1781         cur.clearSelection();
1782 }
1783
1784
1785 bool InsetTabular::isRightToLeft(LCursor & cur) const
1786 {
1787         BOOST_ASSERT(cur.depth() > 1);
1788         Paragraph const & parentpar = cur[cur.depth() - 2].paragraph();
1789         LCursor::pos_type const parentpos = cur[cur.depth() - 2].pos();
1790         return parentpar.getFontSettings(cur.bv().buffer()->params(),
1791                                          parentpos).language()->RightToLeft();
1792 }
1793
1794
1795 void InsetTabular::getSelection(LCursor & cur,
1796         row_type & rs, row_type & re, col_type & cs, col_type & ce) const
1797 {
1798         CursorSlice const & beg = cur.selBegin();
1799         CursorSlice const & end = cur.selEnd();
1800         cs = tabular.column_of_cell(beg.idx());
1801         ce = tabular.column_of_cell(end.idx());
1802         if (cs > ce) {
1803                 ce = cs;
1804                 cs = tabular.column_of_cell(end.idx());
1805         } else {
1806                 ce = tabular.right_column_of_cell(end.idx());
1807         }
1808
1809         rs = tabular.row_of_cell(beg.idx());
1810         re = tabular.row_of_cell(end.idx());
1811         if (rs > re)
1812                 swap(rs, re);
1813 }
1814
1815
1816 size_t InsetTabular::nargs() const
1817 {
1818         return tabular.getNumberOfCells();
1819 }
1820
1821
1822 LyXText * InsetTabular::getText(int idx) const
1823 {
1824         return size_t(idx) < nargs() ? cell(idx)->getText(0) : 0;
1825 }
1826
1827
1828 void InsetTabular::markErased()
1829 {
1830         for (idx_type idx = 0; idx < nargs(); ++idx)
1831                 cell(idx)->markErased();
1832 }
1833
1834
1835 bool InsetTabular::forceDefaultParagraphs(InsetBase const *) const
1836 {
1837 #if 0
1838         idx_type const cell = tabular.getCellFromInset(in);
1839         // FIXME: getCellFromInset() returns now always a valid cell, so
1840         // the stuff below can be deleted, and instead we have:
1841         return tabular.getPWidth(cell).zero();
1842
1843         if (cell != npos)
1844                 return tabular.getPWidth(cell).zero();
1845
1846         // this is a workaround for a crash (New, Insert->Tabular,
1847         // Insert->FootNote)
1848         if (!owner())
1849                 return false;
1850
1851         // well we didn't obviously find it so maybe our owner knows more
1852         BOOST_ASSERT(owner());
1853         return owner()->forceDefaultParagraphs(in);
1854 #endif
1855         return false;
1856 }
1857
1858
1859 bool InsetTabular::insertAsciiString(BufferView & bv, string const & buf,
1860                                      bool usePaste)
1861 {
1862         if (buf.length() <= 0)
1863                 return true;
1864
1865         col_type cols = 1;
1866         row_type rows = 1;
1867         col_type maxCols = 1;
1868         string::size_type const len = buf.length();
1869         string::size_type p = 0;
1870
1871         while (p < len && (p = buf.find_first_of("\t\n", p)) != string::npos) {
1872                 switch (buf[p]) {
1873                 case '\t':
1874                         ++cols;
1875                         break;
1876                 case '\n':
1877                         if (p + 1 < len)
1878                                 ++rows;
1879                         maxCols = max(cols, maxCols);
1880                         cols = 1;
1881                         break;
1882                 }
1883                 ++p;
1884         }
1885         maxCols = max(cols, maxCols);
1886         LyXTabular * loctab;
1887         idx_type cell = 0;
1888         col_type ocol = 0;
1889         row_type row = 0;
1890         if (usePaste) {
1891                 paste_tabular.reset(
1892                         new LyXTabular(bv.buffer()->params(), rows, maxCols));
1893                 loctab = paste_tabular.get();
1894                 cols = 0;
1895         } else {
1896                 loctab = &tabular;
1897                 cell = bv.cursor().idx();
1898                 ocol = tabular.column_of_cell(cell);
1899                 row = tabular.row_of_cell(cell);
1900         }
1901
1902         string::size_type op = 0;
1903         idx_type const cells = loctab->getNumberOfCells();
1904         p = 0;
1905         cols = ocol;
1906         rows = loctab->rows();
1907         col_type const columns = loctab->columns();
1908
1909         while (cell < cells && p < len && row < rows &&
1910                (p = buf.find_first_of("\t\n", p)) != string::npos)
1911         {
1912                 if (p >= len)
1913                         break;
1914                 switch (buf[p]) {
1915                 case '\t':
1916                         // we can only set this if we are not too far right
1917                         if (cols < columns) {
1918                                 shared_ptr<InsetText> inset = loctab->getCellInset(cell);
1919                                 Paragraph & par = inset->text_.getPar(0);
1920                                 LyXFont const font = inset->text_.getFont(par, 0);
1921                                 inset->setText(buf.substr(op, p - op), font);
1922                                 ++cols;
1923                                 ++cell;
1924                         }
1925                         break;
1926                 case '\n':
1927                         // we can only set this if we are not too far right
1928                         if (cols < columns) {
1929                                 shared_ptr<InsetText> inset = tabular.getCellInset(cell);
1930                                 Paragraph & par = inset->text_.getPar(0);
1931                                 LyXFont const font = inset->text_.getFont(par, 0);
1932                                 inset->setText(buf.substr(op, p - op), font);
1933                         }
1934                         cols = ocol;
1935                         ++row;
1936                         if (row < rows)
1937                                 cell = loctab->getCellNumber(row, cols);
1938                         break;
1939                 }
1940                 ++p;
1941                 op = p;
1942         }
1943         // check for the last cell if there is no trailing '\n'
1944         if (cell < cells && op < len) {
1945                 shared_ptr<InsetText> inset = loctab->getCellInset(cell);
1946                 Paragraph & par = inset->text_.getPar(0);
1947                 LyXFont const font = inset->text_.getFont(par, 0);
1948                 inset->setText(buf.substr(op, len - op), font);
1949         }
1950         return true;
1951 }
1952
1953
1954 void InsetTabular::addPreview(PreviewLoader & loader) const
1955 {
1956         row_type const rows = tabular.rows();
1957         col_type const columns = tabular.columns();
1958         for (row_type i = 0; i < rows; ++i) {
1959                 for (col_type j = 0; j < columns; ++j)
1960                         tabular.getCellInset(i, j)->addPreview(loader);
1961         }
1962 }
1963
1964
1965 bool InsetTabular::tablemode(LCursor & cur) const
1966 {
1967         return cur.selection() && cur.selBegin().idx() != cur.selEnd().idx();
1968 }
1969
1970
1971
1972
1973
1974 string const InsetTabularMailer::name_("tabular");
1975
1976 InsetTabularMailer::InsetTabularMailer(InsetTabular const & inset)
1977         : inset_(const_cast<InsetTabular &>(inset))
1978 {}
1979
1980
1981 string const InsetTabularMailer::inset2string(Buffer const &) const
1982 {
1983         return params2string(inset_);
1984 }
1985
1986
1987 void InsetTabularMailer::string2params(string const & in, InsetTabular & inset)
1988 {
1989         istringstream data(in);
1990         LyXLex lex(0,0);
1991         lex.setStream(data);
1992
1993         if (in.empty())
1994                 return;
1995
1996         string token;
1997         lex >> token;
1998         if (!lex || token != name_)
1999                 return print_mailer_error("InsetTabularMailer", in, 1,
2000                                           name_);
2001
2002         // This is part of the inset proper that is usually swallowed
2003         // by Buffer::readInset
2004         lex >> token;
2005         if (!lex || token != "Tabular")
2006                 return print_mailer_error("InsetTabularMailer", in, 2,
2007                                           "Tabular");
2008
2009         Buffer const & buffer = inset.buffer();
2010         inset.read(buffer, lex);
2011 }
2012
2013
2014 string const InsetTabularMailer::params2string(InsetTabular const & inset)
2015 {
2016         ostringstream data;
2017         data << name_ << ' ';
2018         inset.write(inset.buffer(), data);
2019         data << "\\end_inset\n";
2020         return data.str();
2021 }