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