]> git.lyx.org Git - lyx.git/blob - src/insets/insettabular.C
some consolidation of 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::getCursorPos(CursorSlice const & sl, int & x, int & y) const
1088 {
1089         cell(sl.idx())->getCursorPos(sl, x, y);
1090
1091         // y offset     correction
1092         int const row = tabular.row_of_cell(sl.idx());
1093         for (int i = 0; i <= row; ++i) {
1094                 if (i != 0) {
1095                         y += tabular.getAscentOfRow(i);
1096                         y += tabular.getAdditionalHeight(i);
1097                 }
1098                 if (i != row)
1099                         y += tabular.getDescentOfRow(i);
1100         }
1101
1102         // x offset correction
1103         int const col = tabular.column_of_cell(sl.idx());
1104         int idx = tabular.getCellNumber(row, 0);
1105         for (int j = 0; j < col; ++j) {
1106                 if (tabular.isPartOfMultiColumn(row, j))
1107                         continue;
1108                 x += tabular.getWidthOfColumn(idx);
1109                 ++idx;
1110         }
1111         x += tabular.getBeginningOfTextInCell(idx);
1112         x += ADD_TO_TABULAR_WIDTH;
1113         x += scroll();
1114 }
1115
1116
1117 int InsetTabular::dist(idx_type const cell, int x, int y) const
1118 {
1119         int xx = 0;
1120         int yy = 0;
1121         InsetBase const & inset = *tabular.getCellInset(cell);
1122         Point o = theCoords.getInsets().xy(&inset);
1123         int const xbeg = o.x_ - tabular.getBeginningOfTextInCell(cell);
1124         int const xend = xbeg + tabular.getWidthOfColumn(cell);
1125         int const ybeg = o.y_ - inset.ascent();
1126         row_type const row = tabular.row_of_cell(cell);
1127         int const rowheight = tabular.getAscentOfRow(row)
1128                         + tabular.getDescentOfRow(row)
1129                         + tabular.getAdditionalHeight(row);
1130         int const yend = ybeg + rowheight;
1131
1132         if (x < xbeg)
1133                 xx = xbeg - x;
1134         else if (x > xend)
1135                 xx = x - xend;
1136
1137         if (y < ybeg) 
1138                 yy = ybeg - y;
1139         else if (y > yend) 
1140                 yy = y - yend;
1141
1142         //lyxerr << " xbeg=" << xbeg << "  xend=" << xend
1143         //       << " ybeg=" << ybeg << " yend=" << yend
1144         //       << " xx=" << xx << " yy=" << yy
1145         //       << " dist=" << xx + yy << endl;
1146         return xx + yy;
1147 }
1148
1149
1150 InsetBase * InsetTabular::editXY(LCursor & cur, int x, int y)
1151 {
1152         //lyxerr << "InsetTabular::editXY: " << this << endl;
1153         cur.selection() = false;
1154         cur.push(*this);
1155         cur.idx() = getNearestCell(x, y);
1156         resetPos(cur);
1157         return cell(cur.idx())->text_.editXY(cur, x, y);
1158         //int xx = cursorx_ - xo() + tabular.getBeginningOfTextInCell(cur.idx());
1159 }
1160
1161
1162 void InsetTabular::setCursorFromCoordinates(LCursor & cur, int x, int y) const
1163 {
1164         //lyxerr << "# InsetTabular::setCursorFromCoordinates()\n" << cur << endl;
1165         cur.idx() = getNearestCell(x, y);
1166         resetPos(cur);
1167         return cell(cur.idx())->text_.setCursorFromCoordinates(cur, x, y);
1168 }
1169
1170
1171 InsetTabular::idx_type InsetTabular::getNearestCell(int x, int y) const
1172 {
1173         //lyxerr << "# InsetTabular::getNearestCell()  x=" << x << " y=" << y << endl;
1174         idx_type idx_min = 0;
1175         int dist_min = std::numeric_limits<int>::max();
1176         for (idx_type i = 0; i < nargs(); ++i) {
1177                 if (theCoords.getInsets().has(tabular.getCellInset(i).get())) {
1178                         int d = dist(i, x, y);
1179                         if (d < dist_min) {
1180                                 dist_min = d;
1181                                 idx_min = i;
1182                         }
1183                 }
1184         }
1185         return idx_min;
1186 }
1187
1188
1189 int InsetTabular::getCellXPos(idx_type const cell) const
1190 {
1191         idx_type c = cell;
1192
1193         for (; !tabular.isFirstCellInRow(c); --c)
1194                 ;
1195         int lx = tabular.getWidthOfColumn(cell);
1196         for (; c < cell; ++c)
1197                 lx += tabular.getWidthOfColumn(c);
1198
1199         return lx - tabular.getWidthOfColumn(cell);
1200 }
1201
1202
1203 void InsetTabular::resetPos(LCursor & cur) const
1204 {
1205         BufferView & bv = cur.bv();
1206         int const maxwidth = bv.workWidth();
1207 //      col_type const actcol = tabular.column_of_cell(cur.idx());
1208 //      int const offset = ADD_TO_TABULAR_WIDTH + 2;
1209 //      int const new_x = getCellXPos(cur.idx()) + offset;
1210 //      int const old_x = cursorx_;
1211 //      int const col_width = tabular.getWidthOfColumn(cur.idx());
1212 //      cursorx_ = new_x;
1213 //    cursor.x(getCellXPos(cur.idx()) + offset);
1214 //      if (actcol < tabular.columns() - 1 && scroll(false) &&
1215 //              tabular.getWidthOfTabular() < maxwidth - 20)
1216 //      {
1217 //              scx = 0;
1218 //      } else if (cursorx_ - offset > 20 &&
1219 //                 cursorx_ - offset + col_width > maxwidth - 20) {
1220 //              setScroll(maxwidth, - col_width - 20);
1221 //      } else if (cursorx_ - offset < 20) {
1222 //              setScroll(maxwidth, 20 - cursorx_ + offset);
1223 //      } else if (scroll() && xo() > 20 &&
1224 //                 xo() + tabular.getWidthOfTabular() > maxwidth - 20) {
1225 //              setScroll(maxwidth, old_x - cursorx_);
1226 //      }
1227
1228         if (&cur.inset() != this) {
1229                 scx = 0;
1230         } else {
1231                 int const X1 = 0;
1232                 int const X2 = maxwidth;
1233                 int const offset = ADD_TO_TABULAR_WIDTH + 2;
1234                 int const x1 = xo() + scroll() + getCellXPos(cur.idx()) + offset;
1235                 int const x2 = x1 + tabular.getWidthOfColumn(cur.idx());
1236
1237                 if (x1 < X1)
1238                         setScroll(maxwidth, X1 + 20 - x1);
1239                 else if (x2 > X2)
1240                         setScroll(maxwidth, X2 - 20 - x2);
1241         }
1242
1243         cur.needsUpdate();
1244
1245         InsetTabularMailer(*this).updateDialog(&bv);
1246 }
1247
1248
1249 void InsetTabular::moveNextCell(LCursor & cur)
1250 {
1251         if (isRightToLeft(cur)) {
1252                 if (tabular.isFirstCellInRow(cur.idx())) {
1253                         row_type const row = tabular.row_of_cell(cur.idx());
1254                         if (row == tabular.rows() - 1)
1255                                 return;
1256                         cur.idx() = tabular.getCellBelow(tabular.getLastCellInRow(row));
1257                 } else {
1258                         if (cur.idx() == 0)
1259                                 return;
1260                         --cur.idx();
1261                 }
1262         } else {
1263                 if (tabular.isLastCell(cur.idx()))
1264                         return;
1265                 ++cur.idx();
1266         }
1267         cur.pit() = 0;
1268         cur.pos() = 0;
1269         resetPos(cur);
1270 }
1271
1272
1273 void InsetTabular::movePrevCell(LCursor & cur)
1274 {
1275         if (isRightToLeft(cur)) {
1276                 if (tabular.isLastCellInRow(cur.idx())) {
1277                         row_type const row = tabular.row_of_cell(cur.idx());
1278                         if (row == 0)
1279                                 return;
1280                         cur.idx() = tabular.getFirstCellInRow(row);
1281                         cur.idx() = tabular.getCellAbove(cur.idx());
1282                 } else {
1283                         if (tabular.isLastCell(cur.idx()))
1284                                 return;
1285                         ++cur.idx();
1286                 }
1287         } else {
1288                 if (cur.idx() == 0) // first cell
1289                         return;
1290                 --cur.idx();
1291         }
1292         cur.pit() = cur.lastpit();
1293         cur.pos() = cur.lastpos();
1294         resetPos(cur);
1295 }
1296
1297
1298 bool InsetTabular::tabularFeatures(LCursor & cur, string const & what)
1299 {
1300         LyXTabular::Feature action = LyXTabular::LAST_ACTION;
1301
1302         int i = 0;
1303         for (; tabularFeature[i].action != LyXTabular::LAST_ACTION; ++i) {
1304                 string const tmp = tabularFeature[i].feature;
1305
1306                 if (tmp == what.substr(0, tmp.length())) {
1307                         //if (!compare(tabularFeatures[i].feature.c_str(), what.c_str(),
1308                         //tabularFeatures[i].feature.length())) {
1309                         action = tabularFeature[i].action;
1310                         break;
1311                 }
1312         }
1313         if (action == LyXTabular::LAST_ACTION)
1314                 return false;
1315
1316         string const val =
1317                 ltrim(what.substr(tabularFeature[i].feature.length()));
1318         tabularFeatures(cur, action, val);
1319         return true;
1320 }
1321
1322
1323 namespace {
1324
1325 void checkLongtableSpecial(LyXTabular::ltType & ltt,
1326                           string const & special, bool & flag)
1327 {
1328         if (special == "dl_above") {
1329                 ltt.topDL = flag;
1330                 ltt.set = false;
1331         } else if (special == "dl_below") {
1332                 ltt.bottomDL = flag;
1333                 ltt.set = false;
1334         } else if (special == "empty") {
1335                 ltt.empty = flag;
1336                 ltt.set = false;
1337         } else if (flag) {
1338                 ltt.empty = false;
1339                 ltt.set = true;
1340         }
1341 }
1342
1343 } // anon namespace
1344
1345
1346 void InsetTabular::tabularFeatures(LCursor & cur,
1347         LyXTabular::Feature feature, string const & value)
1348 {
1349         BufferView & bv = cur.bv();
1350         col_type sel_col_start;
1351         col_type sel_col_end;
1352         row_type sel_row_start;
1353         row_type sel_row_end;
1354         bool setLines = false;
1355         LyXAlignment setAlign = LYX_ALIGN_LEFT;
1356         LyXTabular::VAlignment setVAlign = LyXTabular::LYX_VALIGN_TOP;
1357
1358         switch (feature) {
1359
1360         case LyXTabular::M_ALIGN_LEFT:
1361         case LyXTabular::ALIGN_LEFT:
1362                 setAlign = LYX_ALIGN_LEFT;
1363                 break;
1364
1365         case LyXTabular::M_ALIGN_RIGHT:
1366         case LyXTabular::ALIGN_RIGHT:
1367                 setAlign = LYX_ALIGN_RIGHT;
1368                 break;
1369
1370         case LyXTabular::M_ALIGN_CENTER:
1371         case LyXTabular::ALIGN_CENTER:
1372                 setAlign = LYX_ALIGN_CENTER;
1373                 break;
1374
1375         case LyXTabular::ALIGN_BLOCK:
1376                 setAlign = LYX_ALIGN_BLOCK;
1377                 break;
1378
1379         case LyXTabular::M_VALIGN_TOP:
1380         case LyXTabular::VALIGN_TOP:
1381                 setVAlign = LyXTabular::LYX_VALIGN_TOP;
1382                 break;
1383
1384         case LyXTabular::M_VALIGN_BOTTOM:
1385         case LyXTabular::VALIGN_BOTTOM:
1386                 setVAlign = LyXTabular::LYX_VALIGN_BOTTOM;
1387                 break;
1388
1389         case LyXTabular::M_VALIGN_MIDDLE:
1390         case LyXTabular::VALIGN_MIDDLE:
1391                 setVAlign = LyXTabular::LYX_VALIGN_MIDDLE;
1392                 break;
1393
1394         default:
1395                 break;
1396         }
1397
1398         recordUndo(cur, Undo::ATOMIC);
1399
1400         getSelection(cur, sel_row_start, sel_row_end, sel_col_start, sel_col_end);
1401         row_type const row = tabular.row_of_cell(cur.idx());
1402         col_type const column = tabular.column_of_cell(cur.idx());
1403         bool flag = true;
1404         LyXTabular::ltType ltt;
1405
1406         switch (feature) {
1407
1408         case LyXTabular::SET_PWIDTH: {
1409                 LyXLength const len(value);
1410                 tabular.setColumnPWidth(cur.idx(), len);
1411                 if (len.zero()
1412                     && tabular.getAlignment(cur.idx(), true) == LYX_ALIGN_BLOCK)
1413                         tabularFeatures(cur, LyXTabular::ALIGN_CENTER, string());
1414                 else if (!len.zero()
1415                          && tabular.getAlignment(cur.idx(), true) != LYX_ALIGN_BLOCK)
1416                         tabularFeatures(cur, LyXTabular::ALIGN_BLOCK, string());
1417                 break;
1418         }
1419
1420         case LyXTabular::SET_MPWIDTH:
1421                 tabular.setMColumnPWidth(cur.idx(), LyXLength(value));
1422                 break;
1423
1424         case LyXTabular::SET_SPECIAL_COLUMN:
1425         case LyXTabular::SET_SPECIAL_MULTI:
1426                 tabular.setAlignSpecial(cur.idx(),value,feature);
1427                 break;
1428
1429         case LyXTabular::APPEND_ROW:
1430                 // append the row into the tabular
1431                 tabular.appendRow(bv.buffer()->params(), cur.idx());
1432                 break;
1433
1434         case LyXTabular::APPEND_COLUMN:
1435                 // append the column into the tabular
1436                 tabular.appendColumn(bv.buffer()->params(), cur.idx());
1437                 cur.idx() = tabular.getCellNumber(row, column);
1438                 break;
1439
1440         case LyXTabular::DELETE_ROW:
1441                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1442                         tabular.deleteRow(sel_row_start);
1443                 if (sel_row_start >= tabular.rows())
1444                         --sel_row_start;
1445                 cur.idx() = tabular.getCellNumber(sel_row_start, column);
1446                 cur.pit() = 0;
1447                 cur.pos() = 0;
1448                 cur.selection() = false;
1449                 break;
1450
1451         case LyXTabular::DELETE_COLUMN:
1452                 for (col_type i = sel_col_start; i <= sel_col_end; ++i)
1453                         tabular.deleteColumn(sel_col_start);
1454                 if (sel_col_start >= tabular.columns())
1455                         --sel_col_start;
1456                 cur.idx() = tabular.getCellNumber(row, sel_col_start);
1457                 cur.pit() = 0;
1458                 cur.pos() = 0;
1459                 cur.selection() = false;
1460                 break;
1461
1462         case LyXTabular::M_TOGGLE_LINE_TOP:
1463                 flag = false;
1464         case LyXTabular::TOGGLE_LINE_TOP: {
1465                 bool lineSet = !tabular.topLine(cur.idx(), flag);
1466                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1467                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1468                                 tabular.setTopLine(
1469                                         tabular.getCellNumber(i, j),
1470                                         lineSet, flag);
1471                 break;
1472         }
1473
1474         case LyXTabular::M_TOGGLE_LINE_BOTTOM:
1475                 flag = false;
1476         case LyXTabular::TOGGLE_LINE_BOTTOM: {
1477                 bool lineSet = !tabular.bottomLine(cur.idx(), flag);
1478                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1479                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1480                                 tabular.setBottomLine(
1481                                         tabular.getCellNumber(i, j),
1482                                         lineSet,
1483                                         flag);
1484                 break;
1485         }
1486
1487         case LyXTabular::M_TOGGLE_LINE_LEFT:
1488                 flag = false;
1489         case LyXTabular::TOGGLE_LINE_LEFT: {
1490                 bool lineSet = !tabular.leftLine(cur.idx(), flag);
1491                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1492                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1493                                 tabular.setLeftLine(
1494                                         tabular.getCellNumber(i,j),
1495                                         lineSet,
1496                                         flag);
1497                 break;
1498         }
1499
1500         case LyXTabular::M_TOGGLE_LINE_RIGHT:
1501                 flag = false;
1502         case LyXTabular::TOGGLE_LINE_RIGHT: {
1503                 bool lineSet = !tabular.rightLine(cur.idx(), flag);
1504                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1505                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1506                                 tabular.setRightLine(
1507                                         tabular.getCellNumber(i,j),
1508                                         lineSet,
1509                                         flag);
1510                 break;
1511         }
1512
1513         case LyXTabular::M_ALIGN_LEFT:
1514         case LyXTabular::M_ALIGN_RIGHT:
1515         case LyXTabular::M_ALIGN_CENTER:
1516                 flag = false;
1517         case LyXTabular::ALIGN_LEFT:
1518         case LyXTabular::ALIGN_RIGHT:
1519         case LyXTabular::ALIGN_CENTER:
1520         case LyXTabular::ALIGN_BLOCK:
1521                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1522                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1523                                 tabular.setAlignment(
1524                                         tabular.getCellNumber(i, j),
1525                                         setAlign,
1526                                         flag);
1527                 break;
1528
1529         case LyXTabular::M_VALIGN_TOP:
1530         case LyXTabular::M_VALIGN_BOTTOM:
1531         case LyXTabular::M_VALIGN_MIDDLE:
1532                 flag = false;
1533         case LyXTabular::VALIGN_TOP:
1534         case LyXTabular::VALIGN_BOTTOM:
1535         case LyXTabular::VALIGN_MIDDLE:
1536                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1537                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1538                                 tabular.setVAlignment(
1539                                         tabular.getCellNumber(i, j),
1540                                         setVAlign, flag);
1541                 break;
1542
1543         case LyXTabular::MULTICOLUMN: {
1544                 if (sel_row_start != sel_row_end) {
1545 #ifdef WITH_WARNINGS
1546 #warning Need I say it ? This is horrible.
1547 #endif
1548                         Alert::error(_("Error setting multicolumn"),
1549                                    _("You cannot set multicolumn vertically."));
1550                         return;
1551                 }
1552                 if (!cur.selection()) {
1553                         // just multicol for one single cell
1554                         // check whether we are completely in a multicol
1555                         if (tabular.isMultiColumn(cur.idx()))
1556                                 tabular.unsetMultiColumn(cur.idx());
1557                         else
1558                                 tabular.setMultiColumn(bv.buffer(), cur.idx(), 1);
1559                         break;
1560                 }
1561                 // we have a selection so this means we just add all this
1562                 // cells to form a multicolumn cell
1563                 idx_type const s_start = cur.selBegin().idx();
1564                 idx_type const s_end = cur.selEnd().idx();
1565                 tabular.setMultiColumn(bv.buffer(), s_start, s_end - s_start + 1);
1566                 cur.idx() = s_start;
1567                 cur.pit() = 0;
1568                 cur.pos() = 0;
1569                 cur.selection() = false;
1570                 break;
1571         }
1572
1573         case LyXTabular::SET_ALL_LINES:
1574                 setLines = true;
1575         case LyXTabular::UNSET_ALL_LINES:
1576                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1577                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1578                                 tabular.setAllLines(
1579                                         tabular.getCellNumber(i,j), setLines);
1580                 break;
1581
1582         case LyXTabular::SET_LONGTABULAR:
1583                 tabular.setLongTabular(true);
1584                 break;
1585
1586         case LyXTabular::UNSET_LONGTABULAR:
1587                 tabular.setLongTabular(false);
1588                 break;
1589
1590         case LyXTabular::SET_ROTATE_TABULAR:
1591                 tabular.setRotateTabular(true);
1592                 break;
1593
1594         case LyXTabular::UNSET_ROTATE_TABULAR:
1595                 tabular.setRotateTabular(false);
1596                 break;
1597
1598         case LyXTabular::SET_ROTATE_CELL:
1599                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1600                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1601                                 tabular.setRotateCell(
1602                                         tabular.getCellNumber(i, j), true);
1603                 break;
1604
1605         case LyXTabular::UNSET_ROTATE_CELL:
1606                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1607                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1608                                 tabular.setRotateCell(
1609                                         tabular.getCellNumber(i, j), false);
1610                 break;
1611
1612         case LyXTabular::SET_USEBOX: {
1613                 LyXTabular::BoxType val = LyXTabular::BoxType(convert<int>(value));
1614                 if (val == tabular.getUsebox(cur.idx()))
1615                         val = LyXTabular::BOX_NONE;
1616                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
1617                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
1618                                 tabular.setUsebox(tabular.getCellNumber(i, j), val);
1619                 break;
1620         }
1621
1622         case LyXTabular::UNSET_LTFIRSTHEAD:
1623                 flag = false;
1624         case LyXTabular::SET_LTFIRSTHEAD:
1625                 tabular.getRowOfLTFirstHead(row, ltt);
1626                 checkLongtableSpecial(ltt, value, flag);
1627                 tabular.setLTHead(row, flag, ltt, true);
1628                 break;
1629
1630         case LyXTabular::UNSET_LTHEAD:
1631                 flag = false;
1632         case LyXTabular::SET_LTHEAD:
1633                 tabular.getRowOfLTHead(row, ltt);
1634                 checkLongtableSpecial(ltt, value, flag);
1635                 tabular.setLTHead(row, flag, ltt, false);
1636                 break;
1637
1638         case LyXTabular::UNSET_LTFOOT:
1639                 flag = false;
1640         case LyXTabular::SET_LTFOOT:
1641                 tabular.getRowOfLTFoot(row, ltt);
1642                 checkLongtableSpecial(ltt, value, flag);
1643                 tabular.setLTFoot(row, flag, ltt, false);
1644                 break;
1645
1646         case LyXTabular::UNSET_LTLASTFOOT:
1647                 flag = false;
1648         case LyXTabular::SET_LTLASTFOOT:
1649                 tabular.getRowOfLTLastFoot(row, ltt);
1650                 checkLongtableSpecial(ltt, value, flag);
1651                 tabular.setLTFoot(row, flag, ltt, true);
1652                 break;
1653
1654         case LyXTabular::SET_LTNEWPAGE:
1655                 tabular.setLTNewPage(row, !tabular.getLTNewPage(row));
1656                 break;
1657
1658         // dummy stuff just to avoid warnings
1659         case LyXTabular::LAST_ACTION:
1660                 break;
1661         }
1662
1663         InsetTabularMailer(*this).updateDialog(&bv);
1664 }
1665
1666
1667 bool InsetTabular::showInsetDialog(BufferView * bv) const
1668 {
1669         InsetTabularMailer(*this).showDialog(bv);
1670         return true;
1671 }
1672
1673
1674 void InsetTabular::openLayoutDialog(BufferView * bv) const
1675 {
1676         InsetTabularMailer(*this).showDialog(bv);
1677 }
1678
1679
1680 void InsetTabular::getLabelList(Buffer const & buffer,
1681                                 vector<string> & list) const
1682 {
1683         tabular.getLabelList(buffer, list);
1684 }
1685
1686
1687 bool InsetTabular::copySelection(LCursor & cur)
1688 {
1689         if (!cur.selection())
1690                 return false;
1691
1692         row_type rs, re;
1693         col_type cs, ce;
1694         getSelection(cur, rs, re, cs, ce);
1695
1696         paste_tabular.reset(new LyXTabular(tabular));
1697
1698         for (row_type i = 0; i < rs; ++i)
1699                 paste_tabular->deleteRow(0);
1700
1701         row_type const rows = re - rs + 1;
1702         while (paste_tabular->rows() > rows)
1703                 paste_tabular->deleteRow(rows);
1704
1705         paste_tabular->setTopLine(0, true, true);
1706         paste_tabular->setBottomLine(paste_tabular->getFirstCellInRow(rows - 1),
1707                                      true, true);
1708
1709         for (col_type i = 0; i < cs; ++i)
1710                 paste_tabular->deleteColumn(0);
1711
1712         col_type const columns = ce - cs + 1;
1713         while (paste_tabular->columns() > columns)
1714                 paste_tabular->deleteColumn(columns);
1715
1716         paste_tabular->setLeftLine(0, true, true);
1717         paste_tabular->setRightLine(paste_tabular->getLastCellInRow(0),
1718                                     true, true);
1719
1720         ostringstream os;
1721         OutputParams const runparams;
1722         paste_tabular->plaintext(cur.buffer(), os, runparams, 0, true, '\t');
1723         cur.bv().stuffClipboard(os.str());
1724         return true;
1725 }
1726
1727
1728 bool InsetTabular::pasteSelection(LCursor & cur)
1729 {
1730         if (!paste_tabular)
1731                 return false;
1732         col_type const actcol = tabular.column_of_cell(cur.idx());
1733         row_type const actrow = tabular.row_of_cell(cur.idx());
1734         for (row_type r1 = 0, r2 = actrow;
1735              r1 < paste_tabular->rows() && r2 < tabular.rows();
1736              ++r1, ++r2) {
1737                 for (col_type c1 = 0, c2 = actcol;
1738                     c1 < paste_tabular->columns() && c2 < tabular.columns();
1739                     ++c1, ++c2) {
1740                         if (paste_tabular->isPartOfMultiColumn(r1, c1) &&
1741                             tabular.isPartOfMultiColumn(r2, c2))
1742                                 continue;
1743                         if (paste_tabular->isPartOfMultiColumn(r1, c1)) {
1744                                 --c2;
1745                                 continue;
1746                         }
1747                         if (tabular.isPartOfMultiColumn(r2, c2)) {
1748                                 --c1;
1749                                 continue;
1750                         }
1751                         shared_ptr<InsetText> inset(
1752                                 new InsetText(*paste_tabular->getCellInset(r1, c1)));
1753                         tabular.setCellInset(r2, c2, inset);
1754                         inset->markNew();
1755                         cur.pos() = 0;
1756                 }
1757         }
1758         return true;
1759 }
1760
1761
1762 void InsetTabular::cutSelection(LCursor & cur)
1763 {
1764         if (!cur.selection())
1765                 return;
1766
1767         bool const track = cur.buffer().params().tracking_changes;
1768         row_type rs, re;
1769         col_type cs, ce;
1770         getSelection(cur, rs, re, cs, ce);
1771         for (row_type i = rs; i <= re; ++i)
1772                 for (col_type j = cs; j <= ce; ++j)
1773                         cell(tabular.getCellNumber(i, j))->clear(track);
1774
1775         // cursor position might be invalid now
1776         cur.pos() = cur.lastpos();
1777         cur.clearSelection();
1778 }
1779
1780
1781 bool InsetTabular::isRightToLeft(LCursor & cur) const
1782 {
1783         BOOST_ASSERT(cur.depth() > 1);
1784         Paragraph const & parentpar = cur[cur.depth() - 2].paragraph();
1785         LCursor::pos_type const parentpos = cur[cur.depth() - 2].pos();
1786         return parentpar.getFontSettings(cur.bv().buffer()->params(),
1787                                          parentpos).language()->RightToLeft();
1788 }
1789
1790
1791 void InsetTabular::getSelection(LCursor & cur,
1792         row_type & rs, row_type & re, col_type & cs, col_type & ce) const
1793 {
1794         CursorSlice const & beg = cur.selBegin();
1795         CursorSlice const & end = cur.selEnd();
1796         cs = tabular.column_of_cell(beg.idx());
1797         ce = tabular.column_of_cell(end.idx());
1798         if (cs > ce) {
1799                 ce = cs;
1800                 cs = tabular.column_of_cell(end.idx());
1801         } else {
1802                 ce = tabular.right_column_of_cell(end.idx());
1803         }
1804
1805         rs = tabular.row_of_cell(beg.idx());
1806         re = tabular.row_of_cell(end.idx());
1807         if (rs > re)
1808                 swap(rs, re);
1809 }
1810
1811
1812 size_t InsetTabular::nargs() const
1813 {
1814         return tabular.getNumberOfCells();
1815 }
1816
1817
1818 LyXText * InsetTabular::getText(int idx) const
1819 {
1820         return size_t(idx) < nargs() ? cell(idx)->getText(0) : 0;
1821 }
1822
1823
1824 void InsetTabular::markErased()
1825 {
1826         for (idx_type idx = 0; idx < nargs(); ++idx)
1827                 cell(idx)->markErased();
1828 }
1829
1830
1831 bool InsetTabular::forceDefaultParagraphs(InsetBase const *) const
1832 {
1833 #if 0
1834         idx_type const cell = tabular.getCellFromInset(in);
1835         // FIXME: getCellFromInset() returns now always a valid cell, so
1836         // the stuff below can be deleted, and instead we have:
1837         return tabular.getPWidth(cell).zero();
1838
1839         if (cell != npos)
1840                 return tabular.getPWidth(cell).zero();
1841
1842         // this is a workaround for a crash (New, Insert->Tabular,
1843         // Insert->FootNote)
1844         if (!owner())
1845                 return false;
1846
1847         // well we didn't obviously find it so maybe our owner knows more
1848         BOOST_ASSERT(owner());
1849         return owner()->forceDefaultParagraphs(in);
1850 #endif
1851         return false;
1852 }
1853
1854
1855 bool InsetTabular::insertAsciiString(BufferView & bv, string const & buf,
1856                                      bool usePaste)
1857 {
1858         if (buf.length() <= 0)
1859                 return true;
1860
1861         col_type cols = 1;
1862         row_type rows = 1;
1863         col_type maxCols = 1;
1864         string::size_type const len = buf.length();
1865         string::size_type p = 0;
1866
1867         while (p < len && (p = buf.find_first_of("\t\n", p)) != string::npos) {
1868                 switch (buf[p]) {
1869                 case '\t':
1870                         ++cols;
1871                         break;
1872                 case '\n':
1873                         if (p + 1 < len)
1874                                 ++rows;
1875                         maxCols = max(cols, maxCols);
1876                         cols = 1;
1877                         break;
1878                 }
1879                 ++p;
1880         }
1881         maxCols = max(cols, maxCols);
1882         LyXTabular * loctab;
1883         idx_type cell = 0;
1884         col_type ocol = 0;
1885         row_type row = 0;
1886         if (usePaste) {
1887                 paste_tabular.reset(
1888                         new LyXTabular(bv.buffer()->params(), rows, maxCols));
1889                 loctab = paste_tabular.get();
1890                 cols = 0;
1891         } else {
1892                 loctab = &tabular;
1893                 cell = bv.cursor().idx();
1894                 ocol = tabular.column_of_cell(cell);
1895                 row = tabular.row_of_cell(cell);
1896         }
1897
1898         string::size_type op = 0;
1899         idx_type const cells = loctab->getNumberOfCells();
1900         p = 0;
1901         cols = ocol;
1902         rows = loctab->rows();
1903         col_type const columns = loctab->columns();
1904
1905         while (cell < cells && p < len && row < rows &&
1906                (p = buf.find_first_of("\t\n", p)) != string::npos)
1907         {
1908                 if (p >= len)
1909                         break;
1910                 switch (buf[p]) {
1911                 case '\t':
1912                         // we can only set this if we are not too far right
1913                         if (cols < columns) {
1914                                 shared_ptr<InsetText> inset = loctab->getCellInset(cell);
1915                                 Paragraph & par = inset->text_.getPar(0);
1916                                 LyXFont const font = inset->text_.getFont(par, 0);
1917                                 inset->setText(buf.substr(op, p - op), font);
1918                                 ++cols;
1919                                 ++cell;
1920                         }
1921                         break;
1922                 case '\n':
1923                         // we can only set this if we are not too far right
1924                         if (cols < columns) {
1925                                 shared_ptr<InsetText> inset = tabular.getCellInset(cell);
1926                                 Paragraph & par = inset->text_.getPar(0);
1927                                 LyXFont const font = inset->text_.getFont(par, 0);
1928                                 inset->setText(buf.substr(op, p - op), font);
1929                         }
1930                         cols = ocol;
1931                         ++row;
1932                         if (row < rows)
1933                                 cell = loctab->getCellNumber(row, cols);
1934                         break;
1935                 }
1936                 ++p;
1937                 op = p;
1938         }
1939         // check for the last cell if there is no trailing '\n'
1940         if (cell < cells && op < len) {
1941                 shared_ptr<InsetText> inset = loctab->getCellInset(cell);
1942                 Paragraph & par = inset->text_.getPar(0);
1943                 LyXFont const font = inset->text_.getFont(par, 0);
1944                 inset->setText(buf.substr(op, len - op), font);
1945         }
1946         return true;
1947 }
1948
1949
1950 void InsetTabular::addPreview(PreviewLoader & loader) const
1951 {
1952         row_type const rows = tabular.rows();
1953         col_type const columns = tabular.columns();
1954         for (row_type i = 0; i < rows; ++i) {
1955                 for (col_type j = 0; j < columns; ++j)
1956                         tabular.getCellInset(i, j)->addPreview(loader);
1957         }
1958 }
1959
1960
1961 bool InsetTabular::tablemode(LCursor & cur) const
1962 {
1963         return cur.selection() && cur.selBegin().idx() != cur.selEnd().idx();
1964 }
1965
1966
1967
1968
1969
1970 string const InsetTabularMailer::name_("tabular");
1971
1972 InsetTabularMailer::InsetTabularMailer(InsetTabular const & inset)
1973         : inset_(const_cast<InsetTabular &>(inset))
1974 {}
1975
1976
1977 string const InsetTabularMailer::inset2string(Buffer const &) const
1978 {
1979         return params2string(inset_);
1980 }
1981
1982
1983 void InsetTabularMailer::string2params(string const & in, InsetTabular & inset)
1984 {
1985         istringstream data(in);
1986         LyXLex lex(0,0);
1987         lex.setStream(data);
1988
1989         if (in.empty())
1990                 return;
1991
1992         string token;
1993         lex >> token;
1994         if (!lex || token != name_)
1995                 return print_mailer_error("InsetTabularMailer", in, 1,
1996                                           name_);
1997
1998         // This is part of the inset proper that is usually swallowed
1999         // by Buffer::readInset
2000         lex >> token;
2001         if (!lex || token != "Tabular")
2002                 return print_mailer_error("InsetTabularMailer", in, 2,
2003                                           "Tabular");
2004
2005         Buffer const & buffer = inset.buffer();
2006         inset.read(buffer, lex);
2007 }
2008
2009
2010 string const InsetTabularMailer::params2string(InsetTabular const & inset)
2011 {
2012         ostringstream data;
2013         data << name_ << ' ';
2014         inset.write(inset.buffer(), data);
2015         data << "\\end_inset\n";
2016         return data.str();
2017 }