]> git.lyx.org Git - features.git/blob - src/insets/InsetTabular.cpp
Fix caption counter in longtables (see #8993).
[features.git] / src / insets / InsetTabular.cpp
1 /**
2  * \file InsetTabular.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Matthias Ettrich
8  * \author José Matos
9  * \author Jean-Marc Lasgouttes
10  * \author Angus Leeming
11  * \author John Levon
12  * \author André Pönitz
13  * \author Jürgen Vigna
14  * \author Uwe Stöhr
15  * \author Edwin Leuven
16  * \author Scott Kostyshak
17  *
18  * Full author contact details are available in file CREDITS.
19  */
20
21 #include <config.h>
22
23 #include "InsetTabular.h"
24
25 #include "buffer_funcs.h"
26 #include "Buffer.h"
27 #include "BufferParams.h"
28 #include "BufferView.h"
29 #include "CoordCache.h"
30 #include "Counters.h"
31 #include "Cursor.h"
32 #include "CutAndPaste.h"
33 #include "DispatchResult.h"
34 #include "FuncRequest.h"
35 #include "FuncStatus.h"
36 #include "InsetList.h"
37 #include "Language.h"
38 #include "LaTeXFeatures.h"
39 #include "Lexer.h"
40 #include "LyX.h"
41 #include "LyXRC.h"
42 #include "MetricsInfo.h"
43 #include "OutputParams.h"
44 #include "output_xhtml.h"
45 #include "Paragraph.h"
46 #include "ParagraphParameters.h"
47 #include "ParIterator.h"
48 #include "TextClass.h"
49 #include "TextMetrics.h"
50
51 #include "frontends/Application.h"
52 #include "frontends/alert.h"
53 #include "frontends/Clipboard.h"
54 #include "frontends/Painter.h"
55 #include "frontends/Selection.h"
56
57 #include "support/convert.h"
58 #include "support/debug.h"
59 #include "support/docstream.h"
60 #include "support/FileName.h"
61 #include "support/gettext.h"
62 #include "support/lassert.h"
63 #include "support/lstrings.h"
64
65 #include <boost/scoped_ptr.hpp>
66
67 #include <cstring>
68 #include <iostream>
69 #include <limits>
70 #include <sstream>
71
72 using namespace std;
73 using namespace lyx::support;
74
75
76
77 namespace lyx {
78
79 using cap::dirtyTabularStack;
80 using cap::tabularStackDirty;
81
82 using graphics::PreviewLoader;
83
84 using frontend::Painter;
85 using frontend::Clipboard;
86
87 namespace Alert = frontend::Alert;
88
89
90 namespace {
91
92 int const ADD_TO_HEIGHT = 2; // in cell
93 int const ADD_TO_TABULAR_WIDTH = 6; // horizontal space before and after the table
94 int const default_line_space = 10; // ?
95 int const WIDTH_OF_LINE = 5; // space between double lines
96
97
98 ///
99 boost::scoped_ptr<Tabular> paste_tabular;
100
101
102 struct TabularFeature {
103         Tabular::Feature action;
104         string feature;
105         bool need_value;
106 };
107
108
109 TabularFeature tabularFeature[] =
110 {
111         // the SET/UNSET actions are used by the table dialog,
112         // the TOGGLE actions by the table toolbar buttons
113         { Tabular::APPEND_ROW, "append-row", false },
114         { Tabular::APPEND_COLUMN, "append-column", false },
115         { Tabular::DELETE_ROW, "delete-row", false },
116         { Tabular::DELETE_COLUMN, "delete-column", false },
117         { Tabular::COPY_ROW, "copy-row", false },
118         { Tabular::COPY_COLUMN, "copy-column", false },
119         { Tabular::MOVE_COLUMN_RIGHT, "move-column-right", false },
120         { Tabular::MOVE_COLUMN_LEFT, "move-column-left", false },
121         { Tabular::MOVE_ROW_DOWN, "move-row-down", false },
122         { Tabular::MOVE_ROW_UP, "move-row-up", false },
123         { Tabular::SET_LINE_TOP, "set-line-top", true },
124         { Tabular::SET_LINE_BOTTOM, "set-line-bottom", true },
125         { Tabular::SET_LINE_LEFT, "set-line-left", true },
126         { Tabular::SET_LINE_RIGHT, "set-line-right", true },
127         { Tabular::TOGGLE_LINE_TOP, "toggle-line-top", false },
128         { Tabular::TOGGLE_LINE_BOTTOM, "toggle-line-bottom", false },
129         { Tabular::TOGGLE_LINE_LEFT, "toggle-line-left", false },
130         { Tabular::TOGGLE_LINE_RIGHT, "toggle-line-right", false },
131         { Tabular::ALIGN_LEFT, "align-left", false },
132         { Tabular::ALIGN_RIGHT, "align-right", false },
133         { Tabular::ALIGN_CENTER, "align-center", false },
134         { Tabular::ALIGN_BLOCK, "align-block", false },
135         { Tabular::ALIGN_DECIMAL, "align-decimal", false },
136         { Tabular::VALIGN_TOP, "valign-top", false },
137         { Tabular::VALIGN_BOTTOM, "valign-bottom", false },
138         { Tabular::VALIGN_MIDDLE, "valign-middle", false },
139         { Tabular::M_ALIGN_LEFT, "m-align-left", false },
140         { Tabular::M_ALIGN_RIGHT, "m-align-right", false },
141         { Tabular::M_ALIGN_CENTER, "m-align-center", false },
142         { Tabular::M_VALIGN_TOP, "m-valign-top", false },
143         { Tabular::M_VALIGN_BOTTOM, "m-valign-bottom", false },
144         { Tabular::M_VALIGN_MIDDLE, "m-valign-middle", false },
145         { Tabular::MULTICOLUMN, "multicolumn", false },
146         { Tabular::SET_MULTICOLUMN, "set-multicolumn", false },
147         { Tabular::UNSET_MULTICOLUMN, "unset-multicolumn", false },
148         { Tabular::MULTIROW, "multirow", false },
149         { Tabular::SET_MULTIROW, "set-multirow", false },
150         { Tabular::UNSET_MULTIROW, "unset-multirow", false },
151         { Tabular::SET_MROFFSET, "set-mroffset", true },
152         { Tabular::SET_ALL_LINES, "set-all-lines", false },
153         { Tabular::UNSET_ALL_LINES, "unset-all-lines", false },
154         { Tabular::SET_LONGTABULAR, "set-longtabular", false },
155         { Tabular::UNSET_LONGTABULAR, "unset-longtabular", false },
156         { Tabular::SET_PWIDTH, "set-pwidth", true },
157         { Tabular::SET_MPWIDTH, "set-mpwidth", true },
158         { Tabular::SET_ROTATE_TABULAR, "set-rotate-tabular", true },
159         { Tabular::UNSET_ROTATE_TABULAR, "unset-rotate-tabular", true },
160         { Tabular::TOGGLE_ROTATE_TABULAR, "toggle-rotate-tabular", true },
161         { Tabular::SET_ROTATE_CELL, "set-rotate-cell", true },
162         { Tabular::UNSET_ROTATE_CELL, "unset-rotate-cell", true },
163         { Tabular::TOGGLE_ROTATE_CELL, "toggle-rotate-cell", true },
164         { Tabular::SET_USEBOX, "set-usebox", true },
165         { Tabular::SET_LTHEAD, "set-lthead", true },
166         { Tabular::UNSET_LTHEAD, "unset-lthead", true },
167         { Tabular::SET_LTFIRSTHEAD, "set-ltfirsthead", true },
168         { Tabular::UNSET_LTFIRSTHEAD, "unset-ltfirsthead", true },
169         { Tabular::SET_LTFOOT, "set-ltfoot", true },
170         { Tabular::UNSET_LTFOOT, "unset-ltfoot", true },
171         { Tabular::SET_LTLASTFOOT, "set-ltlastfoot", true },
172         { Tabular::UNSET_LTLASTFOOT, "unset-ltlastfoot", true },
173         { Tabular::SET_LTNEWPAGE, "set-ltnewpage", false },
174         { Tabular::UNSET_LTNEWPAGE, "unset-ltnewpage", false },
175         { Tabular::TOGGLE_LTCAPTION, "toggle-ltcaption", false },
176         { Tabular::SET_LTCAPTION, "set-ltcaption", false },
177         { Tabular::UNSET_LTCAPTION, "unset-ltcaption", false },
178         { Tabular::SET_SPECIAL_COLUMN, "set-special-column", true },
179         { Tabular::SET_SPECIAL_MULTICOLUMN, "set-special-multicolumn", true },
180         { Tabular::SET_BOOKTABS, "set-booktabs", false },
181         { Tabular::UNSET_BOOKTABS, "unset-booktabs", false },
182         { Tabular::SET_TOP_SPACE, "set-top-space", true },
183         { Tabular::SET_BOTTOM_SPACE, "set-bottom-space", true },
184         { Tabular::SET_INTERLINE_SPACE, "set-interline-space", true },
185         { Tabular::SET_BORDER_LINES, "set-border-lines", false },
186         { Tabular::TABULAR_VALIGN_TOP, "tabular-valign-top", false},
187         { Tabular::TABULAR_VALIGN_MIDDLE, "tabular-valign-middle", false},
188         { Tabular::TABULAR_VALIGN_BOTTOM, "tabular-valign-bottom", false},
189         { Tabular::LONGTABULAR_ALIGN_LEFT, "longtabular-align-left", false },
190         { Tabular::LONGTABULAR_ALIGN_CENTER, "longtabular-align-center", false },
191         { Tabular::LONGTABULAR_ALIGN_RIGHT, "longtabular-align-right", false },
192         { Tabular::SET_DECIMAL_POINT, "set-decimal-point", true },
193         { Tabular::SET_TABULAR_WIDTH, "set-tabular-width", true },
194         { Tabular::LAST_ACTION, "", false }
195 };
196
197
198 string const tostr(LyXAlignment const & num)
199 {
200         switch (num) {
201         case LYX_ALIGN_NONE:
202                 return "none";
203         case LYX_ALIGN_BLOCK:
204                 return "block";
205         case LYX_ALIGN_LEFT:
206                 return "left";
207         case LYX_ALIGN_CENTER:
208                 return "center";
209         case LYX_ALIGN_RIGHT:
210                 return "right";
211         case LYX_ALIGN_LAYOUT:
212                 return "layout";
213         case LYX_ALIGN_SPECIAL:
214                 return "special";
215         case LYX_ALIGN_DECIMAL:
216                 return "decimal";
217         }
218         return string();
219 }
220
221
222 string const tostr(Tabular::HAlignment const & num)
223 {
224         switch (num) {
225         case Tabular::LYX_LONGTABULAR_ALIGN_LEFT:
226                 return "left";
227         case Tabular::LYX_LONGTABULAR_ALIGN_CENTER:
228                 return "center";
229         case Tabular::LYX_LONGTABULAR_ALIGN_RIGHT:
230                 return "right";
231         }
232         return string();
233 }
234
235
236 string const tostr(Tabular::VAlignment const & num)
237 {
238         switch (num) {
239         case Tabular::LYX_VALIGN_TOP:
240                 return "top";
241         case Tabular::LYX_VALIGN_MIDDLE:
242                 return "middle";
243         case Tabular::LYX_VALIGN_BOTTOM:
244                 return "bottom";
245         }
246         return string();
247 }
248
249
250 string const tostr(Tabular::BoxType const & num)
251 {
252         switch (num) {
253         case Tabular::BOX_NONE:
254                 return "none";
255         case Tabular::BOX_PARBOX:
256                 return "parbox";
257         case Tabular::BOX_MINIPAGE:
258                 return "minipage";
259         }
260         return string();
261 }
262
263
264 // I would have liked a fromstr template a lot better. (Lgb)
265 bool string2type(string const str, LyXAlignment & num)
266 {
267         if (str == "none")
268                 num = LYX_ALIGN_NONE;
269         else if (str == "block")
270                 num = LYX_ALIGN_BLOCK;
271         else if (str == "left")
272                 num = LYX_ALIGN_LEFT;
273         else if (str == "center")
274                 num = LYX_ALIGN_CENTER;
275         else if (str == "right")
276                 num = LYX_ALIGN_RIGHT;
277         else if (str == "decimal")
278                 num = LYX_ALIGN_DECIMAL;
279         else
280                 return false;
281         return true;
282 }
283
284
285 bool string2type(string const str, Tabular::HAlignment & num)
286 {
287         if (str == "left")
288                 num = Tabular::LYX_LONGTABULAR_ALIGN_LEFT;
289         else if (str == "center" )
290                 num = Tabular::LYX_LONGTABULAR_ALIGN_CENTER;
291         else if (str == "right")
292                 num = Tabular::LYX_LONGTABULAR_ALIGN_RIGHT;
293         else
294                 return false;
295         return true;
296 }
297
298
299 bool string2type(string const str, Tabular::VAlignment & num)
300 {
301         if (str == "top")
302                 num = Tabular::LYX_VALIGN_TOP;
303         else if (str == "middle" )
304                 num = Tabular::LYX_VALIGN_MIDDLE;
305         else if (str == "bottom")
306                 num = Tabular::LYX_VALIGN_BOTTOM;
307         else
308                 return false;
309         return true;
310 }
311
312
313 bool string2type(string const str, Tabular::BoxType & num)
314 {
315         if (str == "none")
316                 num = Tabular::BOX_NONE;
317         else if (str == "parbox")
318                 num = Tabular::BOX_PARBOX;
319         else if (str == "minipage")
320                 num = Tabular::BOX_MINIPAGE;
321         else
322                 return false;
323         return true;
324 }
325
326
327 bool string2type(string const str, bool & num)
328 {
329         if (str == "true")
330                 num = true;
331         else if (str == "false")
332                 num = false;
333         else
334                 return false;
335         return true;
336 }
337
338
339 bool getTokenValue(string const & str, char const * token, string & ret)
340 {
341         ret.erase();
342         size_t token_length = strlen(token);
343         size_t pos = str.find(token);
344
345         if (pos == string::npos || pos + token_length + 1 >= str.length()
346                 || str[pos + token_length] != '=')
347                 return false;
348         pos += token_length + 1;
349         char ch = str[pos];
350         if (ch != '"' && ch != '\'') { // only read till next space
351                 ret += ch;
352                 ch = ' ';
353         }
354         while (pos < str.length() - 1 && str[++pos] != ch)
355                 ret += str[pos];
356
357         return true;
358 }
359
360
361 bool getTokenValue(string const & str, char const * token, docstring & ret)
362 {
363         string tmp;
364         bool const success = getTokenValue(str, token, tmp);
365         ret = from_utf8(tmp);
366         return success;
367 }
368
369
370 bool getTokenValue(string const & str, char const * token, int & num)
371 {
372         string tmp;
373         num = 0;
374         if (!getTokenValue(str, token, tmp))
375                 return false;
376         num = convert<int>(tmp);
377         return true;
378 }
379
380
381 bool getTokenValue(string const & str, char const * token, LyXAlignment & num)
382 {
383         string tmp;
384         return getTokenValue(str, token, tmp) && string2type(tmp, num);
385 }
386
387
388 bool getTokenValue(string const & str, char const * token,
389                                    Tabular::HAlignment & num)
390 {
391         string tmp;
392         return getTokenValue(str, token, tmp) && string2type(tmp, num);
393 }
394
395
396 bool getTokenValue(string const & str, char const * token,
397                                    Tabular::VAlignment & num)
398 {
399         string tmp;
400         return getTokenValue(str, token, tmp) && string2type(tmp, num);
401 }
402
403
404 bool getTokenValue(string const & str, char const * token,
405                                    Tabular::BoxType & num)
406 {
407         string tmp;
408         return getTokenValue(str, token, tmp) && string2type(tmp, num);
409 }
410
411
412 bool getTokenValue(string const & str, char const * token, bool & flag)
413 {
414         // set the flag always to false as this should be the default for bools
415         // not in the file-format.
416         flag = false;
417         string tmp;
418         return getTokenValue(str, token, tmp) && string2type(tmp, flag);
419 }
420
421
422 bool getTokenValue(string const & str, char const * token, Length & len)
423 {
424         // set the length to be zero() as default as this it should be if not
425         // in the file format.
426         len = Length();
427         string tmp;
428         return getTokenValue(str, token, tmp) && isValidLength(tmp, &len);
429 }
430
431
432 bool getTokenValue(string const & str, char const * token, Length & len, bool & flag)
433 {
434         len = Length();
435         flag = false;
436         string tmp;
437         if (!getTokenValue(str, token, tmp))
438                 return false;
439         if (tmp == "default") {
440                 flag = true;
441                 return  true;
442         }
443         return isValidLength(tmp, &len);
444 }
445
446
447 void l_getline(istream & is, string & str)
448 {
449         str.erase();
450         while (str.empty()) {
451                 getline(is, str);
452                 if (!str.empty() && str[str.length() - 1] == '\r')
453                         str.erase(str.length() - 1);
454         }
455 }
456
457 template <class T>
458 string const write_attribute(string const & name, T const & t)
459 {
460         string const s = tostr(t);
461         return s.empty() ? s : " " + name + "=\"" + s + "\"";
462 }
463
464 template <>
465 string const write_attribute(string const & name, string const & t)
466 {
467         return t.empty() ? t : " " + name + "=\"" + t + "\"";
468 }
469
470
471 template <>
472 string const write_attribute(string const & name, docstring const & t)
473 {
474         return t.empty() ? string() : " " + name + "=\"" + to_utf8(t) + "\"";
475 }
476
477
478 template <>
479 string const write_attribute(string const & name, bool const & b)
480 {
481         // we write only true attribute values so we remove a bit of the
482         // file format bloat for tabulars.
483         return b ? write_attribute(name, convert<string>(b)) : string();
484 }
485
486
487 template <>
488 string const write_attribute(string const & name, int const & i)
489 {
490         // we write only true attribute values so we remove a bit of the
491         // file format bloat for tabulars.
492         return i ? write_attribute(name, convert<string>(i)) : string();
493 }
494
495
496 template <>
497 string const write_attribute(string const & name, Tabular::idx_type const & i)
498 {
499         // we write only true attribute values so we remove a bit of the
500         // file format bloat for tabulars.
501         return i ? write_attribute(name, convert<string>(i)) : string();
502 }
503
504
505 template <>
506 string const write_attribute(string const & name, Length const & value)
507 {
508         // we write only the value if we really have one same reson as above.
509         return value.zero() ? string() : write_attribute(name, value.asString());
510 }
511
512 } // namespace
513
514
515 string const featureAsString(Tabular::Feature action)
516 {
517         for (size_t i = 0; i != Tabular::LAST_ACTION; ++i) {
518                 if (tabularFeature[i].action == action)
519                         return tabularFeature[i].feature;
520         }
521         return string();
522 }
523
524
525 DocIterator separatorPos(InsetTableCell * cell, docstring const & align_d)
526 {
527         DocIterator dit = doc_iterator_begin(&(cell->buffer()), cell);
528         for (; dit; dit.forwardChar())
529                 if (dit.inTexted() && dit.depth() == 1
530                         && dit.paragraph().find(align_d, false, false, dit.pos()))
531                         break;
532
533         return dit;
534 }
535
536
537 InsetTableCell splitCell(InsetTableCell & head, docstring const align_d, bool & hassep)
538 {
539         InsetTableCell tail = InsetTableCell(head);
540         DocIterator const dit = separatorPos(&head, align_d);
541         hassep = dit;
542         if (hassep) {
543                 pit_type const psize = head.paragraphs().front().size();
544                 head.paragraphs().front().eraseChars(dit.pos(), psize, false);
545                 tail.paragraphs().front().eraseChars(0, 
546                         dit.pos() < psize ? dit.pos() + 1 : psize, false);
547         }
548
549         return tail;
550 }
551
552
553 /////////////////////////////////////////////////////////////////////
554 //
555 // Tabular
556 //
557 /////////////////////////////////////////////////////////////////////
558
559
560 Tabular::CellData::CellData(Buffer * buf)
561         : cellno(0),
562           width(0),
563           multicolumn(Tabular::CELL_NORMAL),
564           multirow(Tabular::CELL_NORMAL),
565           alignment(LYX_ALIGN_CENTER),
566           valignment(LYX_VALIGN_TOP),
567           decimal_hoffset(0),
568           decimal_width(0),
569           voffset(0),
570           top_line(false),
571           bottom_line(false),
572           left_line(false),
573           right_line(false),
574           usebox(BOX_NONE),
575           rotate(0),
576           inset(new InsetTableCell(buf))
577 {
578         inset->setBuffer(*buf);
579 }
580
581
582 Tabular::CellData::CellData(CellData const & cs)
583         : cellno(cs.cellno),
584           width(cs.width),
585           multicolumn(cs.multicolumn),
586           multirow(cs.multirow),
587           mroffset(cs.mroffset),
588           alignment(cs.alignment),
589           valignment(cs.valignment),
590           decimal_hoffset(cs.decimal_hoffset),
591           decimal_width(cs.decimal_width),
592           voffset(cs.voffset),
593           top_line(cs.top_line),
594           bottom_line(cs.bottom_line),
595           left_line(cs.left_line),
596           right_line(cs.right_line),
597           usebox(cs.usebox),
598           rotate(cs.rotate),
599           align_special(cs.align_special),
600           p_width(cs.p_width),
601           inset(static_cast<InsetTableCell *>(cs.inset->clone()))
602 {
603 }
604
605 Tabular::CellData & Tabular::CellData::operator=(CellData cs)
606 {
607         swap(cs);
608         return *this;
609 }
610
611 void Tabular::CellData::swap(CellData & rhs)
612 {
613         std::swap(cellno, rhs.cellno);
614         std::swap(width, rhs.width);
615         std::swap(multicolumn, rhs.multicolumn);
616         std::swap(multirow, rhs.multirow);
617         std::swap(mroffset, rhs.mroffset);
618         std::swap(alignment, rhs.alignment);
619         std::swap(valignment, rhs.valignment);
620         std::swap(decimal_hoffset, rhs.decimal_hoffset);
621         std::swap(decimal_width, rhs.decimal_width);
622         std::swap(voffset, rhs.voffset);
623         std::swap(top_line, rhs.top_line);
624         std::swap(bottom_line, rhs.bottom_line);
625         std::swap(left_line, rhs.left_line);
626         std::swap(right_line, rhs.right_line);
627         std::swap(usebox, rhs.usebox);
628         std::swap(rotate, rhs.rotate);
629         std::swap(align_special, rhs.align_special);
630         p_width.swap(rhs.p_width);
631         inset.swap(rhs.inset);
632 }
633
634
635 Tabular::RowData::RowData()
636         : ascent(0),
637           descent(0),
638           top_space_default(false),
639           bottom_space_default(false),
640           interline_space_default(false),
641           endhead(false),
642           endfirsthead(false),
643           endfoot(false),
644           endlastfoot(false),
645           newpage(false),
646           caption(false)
647 {}
648
649
650 Tabular::ColumnData::ColumnData()
651         : alignment(LYX_ALIGN_CENTER),
652           valignment(LYX_VALIGN_TOP),
653           width(0)
654 {
655 }
656
657
658 Tabular::ltType::ltType()
659         : topDL(false),
660           bottomDL(false),
661           empty(false)
662 {}
663
664
665 Tabular::Tabular(Buffer * buffer, row_type rows_arg, col_type columns_arg)
666 {
667         init(buffer, rows_arg, columns_arg);
668 }
669
670
671 void Tabular::setBuffer(Buffer & buffer)
672 {
673         buffer_ = &buffer;
674         for (row_type i = 0; i < nrows(); ++i)
675                 for (col_type j = 0; j < ncols(); ++j)
676                         cell_info[i][j].inset->setBuffer(*buffer_);
677 }
678
679
680 // activates all lines and sets all widths to 0
681 void Tabular::init(Buffer * buf, row_type rows_arg,
682                       col_type columns_arg)
683 {
684         buffer_ = buf;
685         row_info = row_vector(rows_arg);
686         column_info = column_vector(columns_arg);
687         cell_info = cell_vvector(rows_arg, cell_vector(columns_arg, CellData(buf)));
688         row_info.reserve(10);
689         column_info.reserve(10);
690         cell_info.reserve(100);
691         updateIndexes();
692         is_long_tabular = false;
693         tabular_valignment = LYX_VALIGN_MIDDLE;
694         tabular_width = Length();
695         longtabular_alignment = LYX_LONGTABULAR_ALIGN_CENTER;
696         rotate = 0;
697         use_booktabs = false;
698         // set silly default lines
699         for (row_type r = 0; r < nrows(); ++r)
700                 for (col_type c = 0; c < ncols(); ++c) {
701                         cell_info[r][c].inset->setBuffer(*buffer_);
702                         cell_info[r][c].top_line = true;
703                         cell_info[r][c].left_line = true;
704                         cell_info[r][c].bottom_line = r == 0 || r == nrows() - 1;
705                         cell_info[r][c].right_line = c == ncols() - 1;
706                 }
707 }
708
709
710 void Tabular::deleteRow(row_type const row)
711 {
712         // Not allowed to delete last row
713         if (nrows() == 1)
714                 return;
715
716         for (col_type c = 0; c < ncols(); ++c) {
717                 // Care about multirow cells
718                 if (row + 1 < nrows() &&
719                     cell_info[row][c].multirow == CELL_BEGIN_OF_MULTIROW &&
720                     cell_info[row + 1][c].multirow == CELL_PART_OF_MULTIROW) {
721                                 cell_info[row + 1][c].multirow = CELL_BEGIN_OF_MULTIROW;
722                 }
723         }
724         row_info.erase(row_info.begin() + row);
725         cell_info.erase(cell_info.begin() + row);
726         updateIndexes();
727 }
728
729
730 void Tabular::copyRow(row_type const row)
731 {
732         insertRow(row, true);
733 }
734
735
736 void Tabular::appendRow(row_type row)
737 {
738         insertRow(row, false);
739 }
740
741
742 void Tabular::insertRow(row_type const row, bool copy)
743 {
744         row_info.insert(row_info.begin() + row + 1, RowData(row_info[row]));
745         cell_info.insert(cell_info.begin() + row + 1, 
746                 cell_vector(0, CellData(buffer_)));
747         
748         for (col_type c = 0; c < ncols(); ++c) {
749                 cell_info[row + 1].insert(cell_info[row + 1].begin() + c,
750                         copy ? CellData(cell_info[row][c]) : CellData(buffer_));
751                 if (buffer().params().trackChanges)
752                         cell_info[row + 1][c].inset->setChange(Change(Change::INSERTED));
753                 if (cell_info[row][c].multirow == CELL_BEGIN_OF_MULTIROW)
754                         cell_info[row + 1][c].multirow = CELL_PART_OF_MULTIROW;
755         }
756         
757         updateIndexes();
758         for (col_type c = 0; c < ncols(); ++c) {
759                 if (isPartOfMultiRow(row, c))
760                         continue;
761                 // inherit line settings
762                 idx_type const i = cellIndex(row + 1, c);
763                 idx_type const j = cellIndex(row, c);
764                 setLeftLine(i, leftLine(j));
765                 setRightLine(i, rightLine(j));
766                 setTopLine(i, topLine(j));
767                 if (topLine(j) && bottomLine(j)) {
768                         setBottomLine(i, true);
769                         setBottomLine(j, false);
770                 }
771                 // mark track changes
772                 if (buffer().params().trackChanges)
773                         cellInfo(i).inset->setChange(Change(Change::INSERTED));
774         }
775 }
776
777
778 void Tabular::moveColumn(col_type col, ColDirection direction)
779 {
780         if (direction == Tabular::LEFT)
781                 col = col - 1;
782
783         std::swap(column_info[col], column_info[col + 1]);
784
785         for (row_type r = 0; r < nrows(); ++r) {
786                 std::swap(cell_info[r][col], cell_info[r][col + 1]);
787                 std::swap(cell_info[r][col].left_line, cell_info[r][col + 1].left_line);
788                 std::swap(cell_info[r][col].right_line, cell_info[r][col + 1].right_line);
789
790                 // FIXME track changes is broken for tabular features (#8469)
791                 idx_type const i = cellIndex(r, col);
792                 idx_type const j = cellIndex(r, col + 1);
793                 if (buffer().params().trackChanges) {
794                         cellInfo(i).inset->setChange(Change(Change::INSERTED));
795                         cellInfo(j).inset->setChange(Change(Change::INSERTED));
796                 }
797         }
798         updateIndexes();
799 }
800
801
802 void Tabular::moveRow(row_type row, RowDirection direction)
803 {
804         if (direction == Tabular::UP)
805                 row = row - 1;
806
807         std::swap(row_info[row], row_info[row + 1]);
808
809         for (col_type c = 0; c < ncols(); ++c) {
810                 std::swap(cell_info[row][c], cell_info[row + 1][c]);
811                 std::swap(cell_info[row][c].top_line, cell_info[row + 1][c].top_line);
812                 std::swap(cell_info[row][c].bottom_line, cell_info[row + 1][c].bottom_line);
813
814                 // FIXME track changes is broken for tabular features (#8469)
815                 idx_type const i = cellIndex(row, c);
816                 idx_type const j = cellIndex(row + 1, c);
817                 if (buffer().params().trackChanges) {
818                         cellInfo(i).inset->setChange(Change(Change::INSERTED));
819                         cellInfo(j).inset->setChange(Change(Change::INSERTED));
820                 }
821         }
822         updateIndexes();
823 }
824
825
826 void Tabular::deleteColumn(col_type const col)
827 {
828         // Not allowed to delete last column
829         if (ncols() == 1)
830                 return;
831
832         for (row_type r = 0; r < nrows(); ++r) {
833                 // Care about multicolumn cells
834                 if (col + 1 < ncols() &&
835                     cell_info[r][col].multicolumn == CELL_BEGIN_OF_MULTICOLUMN &&
836                     cell_info[r][col + 1].multicolumn == CELL_PART_OF_MULTICOLUMN) {
837                                 cell_info[r][col + 1].multicolumn = CELL_BEGIN_OF_MULTICOLUMN;
838                 }
839                 cell_info[r].erase(cell_info[r].begin() + col);
840         }
841         column_info.erase(column_info.begin() + col);
842         updateIndexes();
843 }
844
845
846 void Tabular::copyColumn(col_type const col)
847 {
848         insertColumn(col, true);
849 }
850
851
852 void Tabular::appendColumn(col_type col)
853 {       
854         insertColumn(col, false);
855 }
856
857
858 void Tabular::insertColumn(col_type const col, bool copy)
859 {
860         BufferParams const & bp = buffer().params();
861         column_info.insert(column_info.begin() + col + 1, ColumnData(column_info[col]));
862
863         for (row_type r = 0; r < nrows(); ++r) {
864                 cell_info[r].insert(cell_info[r].begin() + col + 1,
865                         copy ? CellData(cell_info[r][col]) : CellData(buffer_));
866                 if (bp.trackChanges)
867                         cell_info[r][col + 1].inset->setChange(Change(Change::INSERTED));
868                 if (cell_info[r][col].multicolumn == CELL_BEGIN_OF_MULTICOLUMN)
869                         cell_info[r][col + 1].multicolumn = CELL_PART_OF_MULTICOLUMN;
870         }
871         updateIndexes();
872         for (row_type r = 0; r < nrows(); ++r) {
873                 // inherit line settings
874                 idx_type const i = cellIndex(r, col + 1);
875                 idx_type const j = cellIndex(r, col);
876                 setBottomLine(i, bottomLine(j));
877                 setTopLine(i, topLine(j));
878                 setLeftLine(i, leftLine(j));
879                 if (rightLine(j) && rightLine(j)) {
880                         setRightLine(i, true);
881                         setRightLine(j, false);
882                 }
883                 if (buffer().params().trackChanges)
884                         cellInfo(i).inset->setChange(Change(Change::INSERTED));
885         }
886 }
887
888
889 void Tabular::updateIndexes()
890 {
891         setBuffer(buffer());
892         numberofcells = 0;
893         // reset cell number
894         for (row_type row = 0; row < nrows(); ++row)
895                 for (col_type column = 0; column < ncols(); ++column) {
896                         if (!isPartOfMultiColumn(row, column)
897                                 && !isPartOfMultiRow(row, column))
898                                 ++numberofcells;
899                         if (isPartOfMultiRow(row, column))
900                                 cell_info[row][column].cellno = cell_info[row - 1][column].cellno;
901                         else
902                                 cell_info[row][column].cellno = numberofcells - 1;
903                 }
904
905         rowofcell.resize(numberofcells);
906         columnofcell.resize(numberofcells);
907         idx_type i = 0;
908         // reset column and row of cells and update their width and alignment
909         for (row_type row = 0; row < nrows(); ++row)
910                 for (col_type column = 0; column < ncols(); ++column) {
911                         if (isPartOfMultiColumn(row, column))
912                                 continue;
913                         // columnofcell needs to be called before setting width and aligment
914                         // multirow cells inherit the width from the column width
915                         if (!isPartOfMultiRow(row, column)) {
916                                 columnofcell[i] = column;
917                                 rowofcell[i] = row;
918                         }
919                         setFixedWidth(row, column);
920                         if (isPartOfMultiRow(row, column))
921                                 continue;
922                         cell_info[row][column].inset->setContentAlignment(
923                                 getAlignment(cellIndex(row, column)));
924                         ++i;
925                 }
926 }
927
928
929 Tabular::idx_type Tabular::numberOfCellsInRow(row_type const row) const
930 {
931         idx_type result = 0;
932         for (col_type c = 0; c < ncols(); ++c)
933                 if (cell_info[row][c].multicolumn != Tabular::CELL_PART_OF_MULTICOLUMN)
934                         ++result;
935         return result;
936 }
937
938
939 bool Tabular::topLine(idx_type const cell) const
940 {
941         return cellInfo(cell).top_line;
942 }
943
944
945 bool Tabular::bottomLine(idx_type const cell) const
946 {
947         return cellInfo(cell).bottom_line;
948 }
949
950
951 bool Tabular::leftLine(idx_type cell) const
952 {
953         if (use_booktabs)
954                 return false;
955         return cellInfo(cell).left_line;
956 }
957
958
959 bool Tabular::rightLine(idx_type cell) const
960 {
961         if (use_booktabs)
962                 return false;
963         return cellInfo(cell).right_line;
964 }
965
966
967 int Tabular::interRowSpace(row_type row) const
968 {
969         if (!row || row >= nrows())
970                 return 0;
971
972         int const interline_space = row_info[row - 1].interline_space_default ?
973                 default_line_space :
974                 row_info[row - 1].interline_space.inPixels(width());
975         if (rowTopLine(row) && rowBottomLine(row - 1))
976                 return interline_space + WIDTH_OF_LINE;
977         return interline_space;
978 }
979
980
981 int Tabular::interColumnSpace(idx_type cell) const
982 {
983         col_type const nextcol = cellColumn(cell) + columnSpan(cell);
984         if (rightLine(cell) && nextcol < ncols()
985                 && leftLine(cellIndex(cellRow(cell), nextcol)))
986                 return WIDTH_OF_LINE;
987         return 0;
988 }
989
990
991 int Tabular::cellWidth(idx_type cell) const
992 {
993         int w = 0;
994         col_type const span = columnSpan(cell);
995         col_type const col = cellColumn(cell);
996         for(col_type c = col; c < col + span ; ++c)
997                 w += column_info[c].width;
998         return w;
999 }
1000
1001
1002 int Tabular::cellHeight(idx_type cell) const
1003 {
1004         row_type const span = rowSpan(cell);
1005         row_type const row = cellRow(cell);
1006         int h = 0;
1007         for(row_type r = row; r < row + span ; ++r) {
1008                 h += rowAscent(r) + rowDescent(r);
1009                 if (r != row + span - 1)
1010                         h += interRowSpace(r + 1);
1011         }
1012
1013         return h;
1014 }
1015
1016
1017 bool Tabular::updateColumnWidths()
1018 {
1019         vector<int> max_dwidth(ncols(), 0);
1020         for(col_type c = 0; c < ncols(); ++c)
1021                 for(row_type r = 0; r < nrows(); ++r) {
1022                         idx_type const i = cellIndex(r, c);
1023                         if (getAlignment(i) == LYX_ALIGN_DECIMAL)
1024                                 max_dwidth[c] = max(max_dwidth[c], cell_info[r][c].decimal_width);
1025                 }
1026
1027         bool update = false;
1028         // for each col get max of single col cells
1029         for(col_type c = 0; c < ncols(); ++c) {
1030                 int new_width = 0;
1031                 for(row_type r = 0; r < nrows(); ++r) {
1032                         idx_type const i = cellIndex(r, c);
1033                         if (columnSpan(i) == 1) {
1034                                 if (getAlignment(i) == LYX_ALIGN_DECIMAL
1035                                         && cell_info[r][c].decimal_width!=0)
1036                                         new_width = max(new_width, cellInfo(i).width 
1037                                                 + max_dwidth[c] - cellInfo(i).decimal_width);
1038                                 else
1039                                         new_width = max(new_width, cellInfo(i).width);
1040                         }
1041                 }
1042
1043                 if (column_info[c].width != new_width) {
1044                         column_info[c].width = new_width;
1045                         update = true;
1046                 }
1047         }
1048         // update col widths to fit merged cells
1049         for(col_type c = 0; c < ncols(); ++c)
1050                 for(row_type r = 0; r < nrows(); ++r) {
1051                         idx_type const i = cellIndex(r, c);
1052                         int const span = columnSpan(i);
1053                         if (span == 1 || c > cellColumn(i))
1054                                 continue;
1055
1056                         int old_width = 0;
1057                         for(col_type j = c; j < c + span ; ++j)
1058                                 old_width += column_info[j].width;
1059
1060                         if (cellInfo(i).width > old_width) {
1061                                 column_info[c + span - 1].width += cellInfo(i).width - old_width;
1062                                 update = true;
1063                         }
1064                 }
1065
1066         return update;
1067 }
1068
1069
1070 int Tabular::width() const
1071 {
1072         int width = 0;
1073         for (col_type c = 0; c < ncols(); ++c)
1074                 width += column_info[c].width;
1075         return width;
1076 }
1077
1078
1079 void Tabular::setAlignment(idx_type cell, LyXAlignment align,
1080                               bool has_width)
1081 {
1082         col_type const col = cellColumn(cell);
1083         // set alignment for the whole row if we are not in a multicolumn cell,
1084         // exclude possible multicolumn cells in the row
1085         if (!isMultiColumn(cell)) {
1086                 for (row_type r = 0; r < nrows(); ++r) {
1087                         // only if the column has no width the multirow inherits the
1088                         // alignment of the column, otherwise it is left aligned
1089                         if (!(isMultiRow(cellIndex(r, col)) && has_width)
1090                                 && !isMultiColumn(cellIndex(r, col))) {
1091                                 cell_info[r][col].alignment = align;
1092                                 cell_info[r][col].inset->setContentAlignment(align);
1093                         }
1094                         if ((isMultiRow(cellIndex(r, col)) && has_width)
1095                                 && !isMultiColumn(cellIndex(r, col))) {
1096                                 cell_info[r][col].alignment = LYX_ALIGN_LEFT;
1097                                 cell_info[r][col].inset->setContentAlignment(LYX_ALIGN_LEFT);
1098                         }
1099                 }
1100                 column_info[col].alignment = align;
1101                 docstring & dpoint = column_info[col].decimal_point;
1102                 if (align == LYX_ALIGN_DECIMAL && dpoint.empty())
1103                         dpoint = from_utf8(lyxrc.default_decimal_point);
1104         } else {
1105                 cellInfo(cell).alignment = align; 
1106                 cellInset(cell).get()->setContentAlignment(align); 
1107         }
1108 }
1109
1110
1111 void Tabular::setVAlignment(idx_type cell, VAlignment align,
1112                                bool onlycolumn)
1113 {
1114         if (!isMultiColumn(cell) || onlycolumn)
1115                 column_info[cellColumn(cell)].valignment = align;
1116         if (!onlycolumn)
1117                 cellInfo(cell).valignment = align;
1118 }
1119
1120
1121 namespace {
1122
1123 /**
1124  * Allow line and paragraph breaks for fixed width cells or disallow them,
1125  * merge cell paragraphs and reset layout to standard for variable width
1126  * cells.
1127  */
1128 void toggleFixedWidth(Cursor & cur, InsetTableCell * inset, bool fixedWidth)
1129 {
1130         inset->setAutoBreakRows(fixedWidth);
1131         inset->toggleFixedWidth(fixedWidth);
1132         if (fixedWidth)
1133                 return;
1134
1135         // merge all paragraphs to one
1136         BufferParams const & bp = cur.bv().buffer().params();
1137         while (inset->paragraphs().size() > 1)
1138                 mergeParagraph(bp, inset->paragraphs(), 0);
1139
1140         // reset layout
1141         cur.push(*inset);
1142         // undo information has already been recorded
1143         inset->getText(0)->setLayout(0, cur.lastpit() + 1,
1144                         bp.documentClass().plainLayoutName());
1145         cur.pop();
1146 }
1147
1148 }
1149
1150
1151 void Tabular::setColumnPWidth(Cursor & cur, idx_type cell,
1152                 Length const & width)
1153 {
1154         col_type const c = cellColumn(cell);
1155
1156         column_info[c].p_width = width;
1157         // reset the vertical alignment to top if the fixed with
1158         // is removed or zero because only fixed width columns can
1159         // have a vertical alignment
1160         if (column_info[c].p_width.zero())
1161                 column_info[c].valignment = LYX_VALIGN_TOP;
1162         for (row_type r = 0; r < nrows(); ++r) {
1163                 idx_type const cell = cellIndex(r, c);
1164                 // because of multicolumns
1165                 toggleFixedWidth(cur, cellInset(cell).get(),
1166                                  !getPWidth(cell).zero());
1167         }
1168         // cur paragraph can become invalid after paragraphs were merged
1169         if (cur.pit() > cur.lastpit())
1170                 cur.pit() = cur.lastpit();
1171         // cur position can become invalid after newlines were removed
1172         if (cur.pos() > cur.lastpos())
1173                 cur.pos() = cur.lastpos();
1174 }
1175
1176
1177 bool Tabular::setFixedWidth(row_type r, col_type c)
1178 {
1179         bool const multicol = cell_info[r][c].multicolumn != CELL_NORMAL;
1180         bool const fixed_width = (!column_info[c].p_width.zero() && !multicol)
1181               || (multicol && !cell_info[r][c].p_width.zero());
1182         cell_info[r][c].inset->toggleFixedWidth(fixed_width);
1183         return fixed_width;
1184 }
1185
1186
1187 bool Tabular::setMColumnPWidth(Cursor & cur, idx_type cell,
1188                 Length const & width)
1189 {
1190         if (!isMultiColumn(cell))
1191                 return false;
1192
1193         cellInfo(cell).p_width = width;
1194         toggleFixedWidth(cur, cellInset(cell).get(), !width.zero());
1195         // cur paragraph can become invalid after paragraphs were merged
1196         if (cur.pit() > cur.lastpit())
1197                 cur.pit() = cur.lastpit();
1198         // cur position can become invalid after newlines were removed
1199         if (cur.pos() > cur.lastpos())
1200                 cur.pos() = cur.lastpos();
1201         return true;
1202 }
1203
1204
1205 bool Tabular::setMROffset(Cursor &, idx_type cell, Length const & mroffset)
1206 {
1207         cellInfo(cell).mroffset = mroffset;
1208         return true;
1209 }
1210
1211
1212 void Tabular::setAlignSpecial(idx_type cell, docstring const & special,
1213                                  Tabular::Feature what)
1214 {
1215         if (what == SET_SPECIAL_MULTICOLUMN)
1216                 cellInfo(cell).align_special = special;
1217         else
1218                 column_info[cellColumn(cell)].align_special = special;
1219 }
1220
1221
1222 void Tabular::setTopLine(idx_type i, bool line)
1223 {
1224         cellInfo(i).top_line = line;
1225 }
1226
1227
1228 void Tabular::setBottomLine(idx_type i, bool line)
1229 {
1230         cellInfo(i).bottom_line = line;
1231 }
1232
1233
1234 void Tabular::setLeftLine(idx_type cell, bool line)
1235 {
1236         cellInfo(cell).left_line = line;
1237 }
1238
1239
1240 void Tabular::setRightLine(idx_type cell, bool line)
1241 {
1242         cellInfo(cell).right_line = line;
1243 }
1244
1245 bool Tabular::rowTopLine(row_type r) const
1246 {
1247         bool all_rows_set = true;
1248         for (col_type c = 0; all_rows_set && c < ncols(); ++c)
1249                 all_rows_set = cellInfo(cellIndex(r, c)).top_line;
1250         return all_rows_set;
1251 }
1252
1253
1254 bool Tabular::rowBottomLine(row_type r) const
1255 {
1256         bool all_rows_set = true;
1257         for (col_type c = 0; all_rows_set && c < ncols(); ++c)
1258                 all_rows_set = cellInfo(cellIndex(r, c)).bottom_line;
1259         return all_rows_set;
1260 }
1261
1262
1263 bool Tabular::columnLeftLine(col_type c) const
1264 {
1265         if (use_booktabs)
1266                 return false;
1267
1268         int nrows_left = 0;
1269         int total = 0;
1270         for (row_type r = 0; r < nrows(); ++r) {
1271                 idx_type const i = cellIndex(r, c);
1272                 if (c == cellColumn(i)) {
1273                         ++total;
1274                         bool right = c > 0 && cellInfo(cellIndex(r, c - 1)).right_line;
1275                         if (cellInfo(i).left_line || right)
1276                                 ++nrows_left;
1277                 }
1278         }
1279         return 2 * nrows_left >= total;
1280 }
1281
1282
1283 bool Tabular::columnRightLine(col_type c) const
1284 {
1285         if (use_booktabs)
1286                 return false;
1287
1288         int nrows_right = 0;
1289         int total = 0;
1290         for (row_type r = 0; r < nrows(); ++r) {
1291                 idx_type i = cellIndex(r, c);
1292                 if (c == cellColumn(i) + columnSpan(i) - 1) {
1293                         ++total;
1294                         bool left = (c + 1 < ncols() 
1295                                 && cellInfo(cellIndex(r, c + 1)).left_line)
1296                                 || c + 1 == ncols();
1297                         if (cellInfo(i).right_line && left)
1298                                 ++nrows_right;
1299                 }
1300         }
1301         return 2 * nrows_right >= total;
1302 }
1303
1304
1305 LyXAlignment Tabular::getAlignment(idx_type cell, bool onlycolumn) const
1306 {
1307         if (!onlycolumn && (isMultiColumn(cell) || isMultiRow(cell)))
1308                 return cellInfo(cell).alignment;
1309         
1310         return column_info[cellColumn(cell)].alignment;
1311 }
1312
1313
1314 Tabular::VAlignment
1315 Tabular::getVAlignment(idx_type cell, bool onlycolumn) const
1316 {
1317         if (!onlycolumn && (isMultiColumn(cell) || isMultiRow(cell)))
1318                 return cellInfo(cell).valignment;
1319         return column_info[cellColumn(cell)].valignment;
1320 }
1321
1322
1323 Length const Tabular::getPWidth(idx_type cell) const
1324 {
1325         if (isMultiColumn(cell))
1326                 return cellInfo(cell).p_width;
1327         return column_info[cellColumn(cell)].p_width;
1328 }
1329
1330
1331 Length const Tabular::getMROffset(idx_type cell) const
1332 {
1333         return cellInfo(cell).mroffset;
1334 }
1335
1336
1337 int Tabular::textHOffset(idx_type cell) const
1338 {
1339         // the LaTeX Way :-(
1340         int x = WIDTH_OF_LINE;
1341
1342         int const w = cellWidth(cell) - cellInfo(cell).width;
1343
1344         switch (getAlignment(cell)) {
1345         case LYX_ALIGN_CENTER:
1346                 x += w / 2;
1347                 break;
1348         case LYX_ALIGN_RIGHT:
1349                 x += w;
1350                 break;
1351         case LYX_ALIGN_DECIMAL: {
1352                 // we center when no decimal point
1353                 if (cellInfo(cell).decimal_width == 0) {
1354                         x += w / 2;
1355                         break;
1356                 }
1357                 col_type const c = cellColumn(cell);
1358                 int max_dhoffset = 0;
1359                 for(row_type r = 0; r < row_info.size() ; ++r) {
1360                         idx_type const i = cellIndex(r, c);
1361                         if (getAlignment(i) == LYX_ALIGN_DECIMAL
1362                                 && cellInfo(i).decimal_width != 0)
1363                                 max_dhoffset = max(max_dhoffset, cellInfo(i).decimal_hoffset);
1364                 }
1365                 x += max_dhoffset - cellInfo(cell).decimal_hoffset;
1366         }
1367         default:
1368                 // LYX_ALIGN_LEFT: nothing :-)
1369                 break;
1370         }
1371
1372         return x;
1373 }
1374
1375
1376 int Tabular::textVOffset(idx_type cell) const
1377 {
1378         int voffset = cellInfo(cell).voffset;
1379         if (isMultiRow(cell)) {
1380                 row_type const row = cellRow(cell);
1381                 voffset += (cellHeight(cell) - rowAscent(row) - rowDescent(row))/2; 
1382         }
1383         return voffset;
1384 }
1385
1386
1387 Tabular::idx_type Tabular::getFirstCellInRow(row_type row) const
1388 {
1389         col_type c = 0;
1390         idx_type const numcells = numberOfCellsInRow(row);
1391         // we check against numcells to make sure we do not crash if all the
1392         // cells are multirow (bug #7535), but in that case our return value
1393         // is really invalid, i.e., it is NOT the first cell in the row. but
1394         // i do not know what to do here. (rgh)
1395         while (c < numcells - 1
1396                && cell_info[row][c].multirow == CELL_PART_OF_MULTIROW)
1397                 ++c;
1398         return cell_info[row][c].cellno;
1399 }
1400
1401
1402 Tabular::idx_type Tabular::getLastCellInRow(row_type row) const
1403 {
1404         col_type c = ncols() - 1;
1405         // of course we check against 0 so we don't crash. but we have the same
1406         // problem as in the previous routine: if all the cells are part of a
1407         // multirow or part of a multi column, then our return value is invalid.
1408         while (c > 0
1409                && (cell_info[row][c].multirow == CELL_PART_OF_MULTIROW
1410                    || cell_info[row][c].multicolumn == CELL_PART_OF_MULTICOLUMN))
1411                 --c;
1412         return cell_info[row][c].cellno;
1413 }
1414
1415
1416 Tabular::row_type Tabular::cellRow(idx_type cell) const
1417 {
1418         if (cell >= numberofcells)
1419                 return nrows() - 1;
1420         if (cell == npos)
1421                 return 0;
1422         return rowofcell[cell];
1423 }
1424
1425
1426 Tabular::col_type Tabular::cellColumn(idx_type cell) const
1427 {
1428         if (cell >= numberofcells)
1429                 return ncols() - 1;
1430         if (cell == npos)
1431                 return 0;
1432         return columnofcell[cell];
1433 }
1434
1435
1436 void Tabular::write(ostream & os) const
1437 {
1438         // header line
1439         os << "<lyxtabular"
1440            << write_attribute("version", 3)
1441            << write_attribute("rows", nrows())
1442            << write_attribute("columns", ncols())
1443            << ">\n";
1444         // global longtable options
1445         os << "<features"
1446            << write_attribute("rotate", convert<string>(rotate))
1447            << write_attribute("booktabs", use_booktabs)
1448            << write_attribute("islongtable", is_long_tabular)
1449            << write_attribute("firstHeadTopDL", endfirsthead.topDL)
1450            << write_attribute("firstHeadBottomDL", endfirsthead.bottomDL)
1451            << write_attribute("firstHeadEmpty", endfirsthead.empty)
1452            << write_attribute("headTopDL", endhead.topDL)
1453            << write_attribute("headBottomDL", endhead.bottomDL)
1454            << write_attribute("footTopDL", endfoot.topDL)
1455            << write_attribute("footBottomDL", endfoot.bottomDL)
1456            << write_attribute("lastFootTopDL", endlastfoot.topDL)
1457            << write_attribute("lastFootBottomDL", endlastfoot.bottomDL)
1458            << write_attribute("lastFootEmpty", endlastfoot.empty);
1459         // longtables cannot be aligned vertically
1460         if (!is_long_tabular) {
1461            os << write_attribute("tabularvalignment", tabular_valignment);
1462            os << write_attribute("tabularwidth", tabular_width);
1463         }
1464         if (is_long_tabular)
1465            os << write_attribute("longtabularalignment",
1466                                  longtabular_alignment);
1467         os << ">\n";
1468         for (col_type c = 0; c < ncols(); ++c) {
1469                 os << "<column"
1470                    << write_attribute("alignment", column_info[c].alignment);
1471                 if (column_info[c].alignment == LYX_ALIGN_DECIMAL)
1472                    os << write_attribute("decimal_point", column_info[c].decimal_point);
1473                 os << write_attribute("valignment", column_info[c].valignment)
1474                    << write_attribute("width", column_info[c].p_width.asString())
1475                    << write_attribute("special", column_info[c].align_special)
1476                    << ">\n";
1477         }
1478         for (row_type r = 0; r < nrows(); ++r) {
1479                 static const string def("default");
1480                 os << "<row";
1481                 if (row_info[r].top_space_default)
1482                         os << write_attribute("topspace", def);
1483                 else
1484                         os << write_attribute("topspace", row_info[r].top_space);
1485                 if (row_info[r].bottom_space_default)
1486                         os << write_attribute("bottomspace", def);
1487                 else
1488                         os << write_attribute("bottomspace", row_info[r].bottom_space);
1489                 if (row_info[r].interline_space_default)
1490                         os << write_attribute("interlinespace", def);
1491                 else
1492                         os << write_attribute("interlinespace", row_info[r].interline_space);
1493                 os << write_attribute("endhead", row_info[r].endhead)
1494                    << write_attribute("endfirsthead", row_info[r].endfirsthead)
1495                    << write_attribute("endfoot", row_info[r].endfoot)
1496                    << write_attribute("endlastfoot", row_info[r].endlastfoot)
1497                    << write_attribute("newpage", row_info[r].newpage)
1498                    << write_attribute("caption", row_info[r].caption)
1499                    << ">\n";
1500                 for (col_type c = 0; c < ncols(); ++c) {
1501                         os << "<cell"
1502                            << write_attribute("multicolumn", cell_info[r][c].multicolumn)
1503                            << write_attribute("multirow", cell_info[r][c].multirow)
1504                            << write_attribute("mroffset", cell_info[r][c].mroffset)
1505                            << write_attribute("alignment", cell_info[r][c].alignment)
1506                            << write_attribute("valignment", cell_info[r][c].valignment)
1507                            << write_attribute("topline", cell_info[r][c].top_line)
1508                            << write_attribute("bottomline", cell_info[r][c].bottom_line)
1509                            << write_attribute("leftline", cell_info[r][c].left_line)
1510                            << write_attribute("rightline", cell_info[r][c].right_line)
1511                            << write_attribute("rotate", cell_info[r][c].rotate)
1512                            << write_attribute("usebox", cell_info[r][c].usebox)
1513                            << write_attribute("width", cell_info[r][c].p_width)
1514                            << write_attribute("special", cell_info[r][c].align_special)
1515                            << ">\n";
1516                         os << "\\begin_inset ";
1517                         cell_info[r][c].inset->write(os);
1518                         os << "\n\\end_inset\n"
1519                            << "</cell>\n";
1520                 }
1521                 os << "</row>\n";
1522         }
1523         os << "</lyxtabular>\n";
1524 }
1525
1526
1527 void Tabular::read(Lexer & lex)
1528 {
1529         string line;
1530         istream & is = lex.getStream();
1531
1532         l_getline(is, line);
1533         if (!prefixIs(line, "<lyxtabular ") && !prefixIs(line, "<Tabular ")) {
1534                 LASSERT(false, return);
1535         }
1536
1537         int version;
1538         if (!getTokenValue(line, "version", version))
1539                 return;
1540         LATTEST(version >= 2);
1541
1542         int rows_arg;
1543         if (!getTokenValue(line, "rows", rows_arg))
1544                 return;
1545         int columns_arg;
1546         if (!getTokenValue(line, "columns", columns_arg))
1547                 return;
1548         init(buffer_, rows_arg, columns_arg);
1549         l_getline(is, line);
1550         if (!prefixIs(line, "<features")) {
1551                 lyxerr << "Wrong tabular format (expected <features ...> got"
1552                        << line << ')' << endl;
1553                 return;
1554         }
1555         getTokenValue(line, "rotate", rotate);
1556         getTokenValue(line, "booktabs", use_booktabs);
1557         getTokenValue(line, "islongtable", is_long_tabular);
1558         getTokenValue(line, "tabularvalignment", tabular_valignment);
1559         getTokenValue(line, "tabularwidth", tabular_width);
1560         getTokenValue(line, "longtabularalignment", longtabular_alignment);
1561         getTokenValue(line, "firstHeadTopDL", endfirsthead.topDL);
1562         getTokenValue(line, "firstHeadBottomDL", endfirsthead.bottomDL);
1563         getTokenValue(line, "firstHeadEmpty", endfirsthead.empty);
1564         getTokenValue(line, "headTopDL", endhead.topDL);
1565         getTokenValue(line, "headBottomDL", endhead.bottomDL);
1566         getTokenValue(line, "footTopDL", endfoot.topDL);
1567         getTokenValue(line, "footBottomDL", endfoot.bottomDL);
1568         getTokenValue(line, "lastFootTopDL", endlastfoot.topDL);
1569         getTokenValue(line, "lastFootBottomDL", endlastfoot.bottomDL);
1570         getTokenValue(line, "lastFootEmpty", endlastfoot.empty);
1571
1572         for (col_type c = 0; c < ncols(); ++c) {
1573                 l_getline(is,line);
1574                 if (!prefixIs(line,"<column")) {
1575                         lyxerr << "Wrong tabular format (expected <column ...> got"
1576                                << line << ')' << endl;
1577                         return;
1578                 }
1579                 getTokenValue(line, "alignment", column_info[c].alignment);
1580                 getTokenValue(line, "decimal_point", column_info[c].decimal_point);
1581                 getTokenValue(line, "valignment", column_info[c].valignment);
1582                 getTokenValue(line, "width", column_info[c].p_width);
1583                 getTokenValue(line, "special", column_info[c].align_special);
1584         }
1585
1586         for (row_type i = 0; i < nrows(); ++i) {
1587                 l_getline(is, line);
1588                 if (!prefixIs(line, "<row")) {
1589                         lyxerr << "Wrong tabular format (expected <row ...> got"
1590                                << line << ')' << endl;
1591                         return;
1592                 }
1593                 getTokenValue(line, "topspace", row_info[i].top_space,
1594                               row_info[i].top_space_default);
1595                 getTokenValue(line, "bottomspace", row_info[i].bottom_space,
1596                               row_info[i].bottom_space_default);
1597                 getTokenValue(line, "interlinespace", row_info[i].interline_space,
1598                               row_info[i].interline_space_default);
1599                 getTokenValue(line, "endfirsthead", row_info[i].endfirsthead);
1600                 getTokenValue(line, "endhead", row_info[i].endhead);
1601                 getTokenValue(line, "endfoot", row_info[i].endfoot);
1602                 getTokenValue(line, "endlastfoot", row_info[i].endlastfoot);
1603                 getTokenValue(line, "newpage", row_info[i].newpage);
1604                 getTokenValue(line, "caption", row_info[i].caption);
1605                 for (col_type j = 0; j < ncols(); ++j) {
1606                         l_getline(is, line);
1607                         if (!prefixIs(line, "<cell")) {
1608                                 lyxerr << "Wrong tabular format (expected <cell ...> got"
1609                                        << line << ')' << endl;
1610                                 return;
1611                         }
1612                         getTokenValue(line, "multicolumn", cell_info[i][j].multicolumn);
1613                         getTokenValue(line, "multirow", cell_info[i][j].multirow);
1614                         getTokenValue(line, "mroffset", cell_info[i][j].mroffset);
1615                         getTokenValue(line, "alignment", cell_info[i][j].alignment);
1616                         getTokenValue(line, "valignment", cell_info[i][j].valignment);
1617                         getTokenValue(line, "topline", cell_info[i][j].top_line);
1618                         getTokenValue(line, "bottomline", cell_info[i][j].bottom_line);
1619                         getTokenValue(line, "leftline", cell_info[i][j].left_line);
1620                         getTokenValue(line, "rightline", cell_info[i][j].right_line);
1621                         getTokenValue(line, "rotate", cell_info[i][j].rotate);
1622                         getTokenValue(line, "usebox", cell_info[i][j].usebox);
1623                         getTokenValue(line, "width", cell_info[i][j].p_width);
1624                         setFixedWidth(i,j);
1625                         getTokenValue(line, "special", cell_info[i][j].align_special);
1626                         l_getline(is, line);
1627                         if (prefixIs(line, "\\begin_inset")) {
1628                                 cell_info[i][j].inset->setBuffer(*buffer_);
1629                                 cell_info[i][j].inset->read(lex);
1630                                 l_getline(is, line);
1631                         }
1632                         if (!prefixIs(line, "</cell>")) {
1633                                 lyxerr << "Wrong tabular format (expected </cell> got"
1634                                        << line << ')' << endl;
1635                                 return;
1636                         }
1637                 }
1638                 l_getline(is, line);
1639                 if (!prefixIs(line, "</row>")) {
1640                         lyxerr << "Wrong tabular format (expected </row> got"
1641                                << line << ')' << endl;
1642                         return;
1643                 }
1644         }
1645         while (!prefixIs(line, "</lyxtabular>")) {
1646                 l_getline(is, line);
1647         }
1648         updateIndexes();
1649 }
1650
1651
1652 bool Tabular::isMultiColumn(idx_type cell) const
1653 {
1654         return (cellInfo(cell).multicolumn == CELL_BEGIN_OF_MULTICOLUMN 
1655                 || cellInfo(cell).multicolumn == CELL_PART_OF_MULTICOLUMN);
1656 }
1657
1658
1659 bool Tabular::hasMultiColumn(col_type c) const
1660 {
1661         for (row_type r = 0; r < nrows(); ++r) {
1662                 if (isMultiColumn(cellIndex(r, c)))
1663                         return true;
1664         }
1665         return false;
1666 }
1667
1668
1669 Tabular::CellData & Tabular::cellInfo(idx_type cell) const
1670 {
1671         return cell_info[cellRow(cell)][cellColumn(cell)];
1672 }
1673
1674
1675 Tabular::idx_type Tabular::setMultiColumn(idx_type cell, idx_type number,
1676                                           bool const right_border)
1677 {
1678         idx_type const col = cellColumn(cell);
1679         idx_type const row = cellRow(cell);
1680         for (idx_type i = 0; i < number; ++i)
1681                 unsetMultiRow(cellIndex(row, col + i));
1682
1683         // unsetting of multirow may have invalidated cell index
1684         cell = cellIndex(row, col);
1685         CellData & cs = cellInfo(cell);
1686         cs.multicolumn = CELL_BEGIN_OF_MULTICOLUMN;
1687         if (column_info[col].alignment != LYX_ALIGN_DECIMAL)
1688                 cs.alignment = column_info[col].alignment;
1689         setRightLine(cell, right_border);
1690
1691         for (idx_type i = 1; i < number; ++i) {
1692                 CellData & cs1 = cellInfo(cell + i);
1693                 cs1.multicolumn = CELL_PART_OF_MULTICOLUMN;
1694                 cs.inset->appendParagraphs(cs1.inset->paragraphs());
1695                 cs1.inset->clear();
1696         }
1697         updateIndexes();
1698         return cell;
1699 }
1700
1701
1702 bool Tabular::isMultiRow(idx_type cell) const
1703 {
1704         return (cellInfo(cell).multirow == CELL_BEGIN_OF_MULTIROW
1705                 || cellInfo(cell).multirow == CELL_PART_OF_MULTIROW);
1706 }
1707
1708 bool Tabular::hasMultiRow(row_type r) const
1709 {
1710         for (col_type c = 0; c < ncols(); ++c) {
1711                 if (isMultiRow(cellIndex(r, c)))
1712                         return true;
1713         }
1714         return false;
1715 }
1716
1717 Tabular::idx_type Tabular::setMultiRow(idx_type cell, idx_type number,
1718                                        bool const bottom_border)
1719 {
1720         idx_type const col = cellColumn(cell);
1721         idx_type const row = cellRow(cell);
1722         for (idx_type i = 0; i < number; ++i)
1723                 unsetMultiColumn(cellIndex(row + i, col));
1724
1725         // unsetting of multirow may have invalidated cell index
1726         cell = cellIndex(row, col);
1727         CellData & cs = cellInfo(cell);
1728         cs.multirow = CELL_BEGIN_OF_MULTIROW;
1729         cs.valignment = LYX_VALIGN_MIDDLE;
1730         // the horizontal alignment of multirow cells can only
1731         // be changed for the whole table row,
1732         // support changing this only for the multirow cell can be done via
1733         // \multirowsetup
1734         // this feature would be a fileformat change
1735         // until LyX supports this, use the deault alignment of multirow
1736         // cells: left
1737         cs.alignment = LYX_ALIGN_LEFT;
1738
1739         // set the bottom line of the last selected cell
1740         setBottomLine(cell, bottom_border);
1741
1742         for (idx_type i = 1; i < number; ++i) {
1743                 CellData & cs1 = cell_info[row + i][col];
1744                 cs1.multirow = CELL_PART_OF_MULTIROW;
1745                 cs.inset->appendParagraphs(cs1.inset->paragraphs());
1746                 cs1.inset->clear();
1747         }
1748         updateIndexes();
1749         return cell;
1750 }
1751
1752
1753 Tabular::idx_type Tabular::columnSpan(idx_type cell) const
1754 {
1755         row_type const row = cellRow(cell);
1756         col_type const col = cellColumn(cell);
1757         int span = 1;
1758         while (col + span < ncols() && isPartOfMultiColumn(row, col + span))
1759                 ++span;
1760
1761         return span;
1762 }
1763
1764
1765 Tabular::idx_type Tabular::rowSpan(idx_type cell) const
1766 {
1767         col_type const column = cellColumn(cell);
1768         col_type row = cellRow(cell) + 1;
1769         while (row < nrows() && isPartOfMultiRow(row, column))
1770                 ++row;
1771         
1772         return row - cellRow(cell);
1773 }
1774
1775
1776 void Tabular::unsetMultiColumn(idx_type cell)
1777 {
1778         if (!isMultiColumn(cell))
1779                 return;
1780
1781         row_type const row = cellRow(cell);
1782         col_type const col = cellColumn(cell);
1783         row_type const span = columnSpan(cell);
1784         for (col_type c = 0; c < span; ++c) {
1785                 // in the table dialog the lines are set in every case
1786                 // when unsetting a multicolumn this leads to an additional right
1787                 // line for every cell that was part of the former multicolumn cell,
1788                 // except if the cell is in the last column
1789                 // therefore remove this line
1790                 if (cell_info[row][col + c].multicolumn == CELL_BEGIN_OF_MULTICOLUMN
1791                         && (col + c) < (col + span - 1))
1792                         cell_info[row][col + c].right_line = false;
1793                 cell_info[row][col + c].multicolumn = CELL_NORMAL;
1794         }
1795         updateIndexes();
1796 }
1797
1798
1799 void Tabular::unsetMultiRow(idx_type cell)
1800 {
1801         if (!isMultiRow(cell))
1802                 return;
1803
1804         cellInfo(cell).valignment = LYX_VALIGN_TOP;
1805         cellInfo(cell).alignment = LYX_ALIGN_CENTER;
1806         row_type const row = cellRow(cell);
1807         col_type const col = cellColumn(cell);
1808         row_type const span = rowSpan(cell);
1809         for (row_type r = 0; r < span; ++r)
1810                 cell_info[row + r][col].multirow = CELL_NORMAL;
1811         updateIndexes();
1812 }
1813
1814
1815 void Tabular::setRotateCell(idx_type cell, int value)
1816 {
1817         cellInfo(cell).rotate = value;
1818 }
1819
1820
1821 int Tabular::getRotateCell(idx_type cell) const
1822 {
1823         return cellInfo(cell).rotate;
1824 }
1825
1826
1827 bool Tabular::needRotating() const
1828 {
1829         if (rotate)
1830                 return true;
1831         for (row_type r = 0; r < nrows(); ++r)
1832                 for (col_type c = 0; c < ncols(); ++c)
1833                         if (cell_info[r][c].rotate != 0)
1834                                 return true;
1835         return false;
1836 }
1837
1838
1839 bool Tabular::isLastCell(idx_type cell) const
1840 {
1841         if (cell + 1 < numberofcells)
1842                 return false;
1843         return true;
1844 }
1845
1846
1847 Tabular::idx_type Tabular::cellAbove(idx_type cell) const
1848 {
1849         if (cellRow(cell) == 0)
1850                 return cell;
1851         
1852         col_type const col = cellColumn(cell);
1853         row_type r = cellRow(cell) - 1;
1854         while (r > 0 && cell_info[r][col].multirow == CELL_PART_OF_MULTIROW)
1855                 --r;
1856
1857         return cell_info[r][col].cellno;
1858 }
1859
1860
1861 Tabular::idx_type Tabular::cellBelow(idx_type cell) const
1862 {
1863         row_type const nextrow = cellRow(cell) + rowSpan(cell);
1864         if (nextrow < nrows())
1865                 return cell_info[nextrow][cellColumn(cell)].cellno;
1866         return cell;
1867 }
1868
1869
1870 Tabular::idx_type Tabular::cellIndex(row_type row, col_type column) const
1871 {
1872         LASSERT(column != npos && column < ncols(), column = 0);
1873         LASSERT(row != npos && row < nrows(), row = 0);
1874         return cell_info[row][column].cellno;
1875 }
1876
1877
1878 void Tabular::setUsebox(idx_type cell, BoxType type)
1879 {
1880         cellInfo(cell).usebox = type;
1881 }
1882
1883
1884 // FIXME: Remove this routine because we cannot insert \parboxes when the user
1885 // adds line breaks, see bug 4886.
1886 Tabular::BoxType Tabular::getUsebox(idx_type cell) const
1887 {
1888         if ((!column_info[cellColumn(cell)].p_width.zero() && !isMultiColumn(cell)) ||
1889                 (isMultiColumn(cell) && !cellInfo(cell).p_width.zero()))
1890                 return BOX_NONE;
1891         if (cellInfo(cell).usebox > 1)
1892                 return cellInfo(cell).usebox;
1893         return useParbox(cell);
1894 }
1895
1896
1897 ///
1898 //  This are functions used for the longtable support
1899 ///
1900 void Tabular::setLTHead(row_type row, bool flag, ltType const & hd,
1901                            bool first)
1902 {
1903         if (first) {
1904                 endfirsthead = hd;
1905                 if (hd.set)
1906                         row_info[row].endfirsthead = flag;
1907         } else {
1908                 endhead = hd;
1909                 if (hd.set)
1910                         row_info[row].endhead = flag;
1911         }
1912 }
1913
1914
1915 bool Tabular::getRowOfLTHead(row_type row, ltType & hd) const
1916 {
1917         hd = endhead;
1918         hd.set = haveLTHead();
1919         return row_info[row].endhead;
1920 }
1921
1922
1923 bool Tabular::getRowOfLTFirstHead(row_type row, ltType & hd) const
1924 {
1925         hd = endfirsthead;
1926         hd.set = haveLTFirstHead();
1927         return row_info[row].endfirsthead;
1928 }
1929
1930
1931 void Tabular::setLTFoot(row_type row, bool flag, ltType const & fd,
1932                            bool last)
1933 {
1934         if (last) {
1935                 endlastfoot = fd;
1936                 if (fd.set)
1937                         row_info[row].endlastfoot = flag;
1938         } else {
1939                 endfoot = fd;
1940                 if (fd.set)
1941                         row_info[row].endfoot = flag;
1942         }
1943 }
1944
1945
1946 bool Tabular::getRowOfLTFoot(row_type row, ltType & fd) const
1947 {
1948         fd = endfoot;
1949         fd.set = haveLTFoot();
1950         return row_info[row].endfoot;
1951 }
1952
1953
1954 bool Tabular::getRowOfLTLastFoot(row_type row, ltType & fd) const
1955 {
1956         fd = endlastfoot;
1957         fd.set = haveLTLastFoot();
1958         return row_info[row].endlastfoot;
1959 }
1960
1961
1962 void Tabular::setLTNewPage(row_type row, bool what)
1963 {
1964         row_info[row].newpage = what;
1965 }
1966
1967
1968 bool Tabular::getLTNewPage(row_type row) const
1969 {
1970         return row_info[row].newpage;
1971 }
1972
1973
1974 bool Tabular::haveLTHead(bool withcaptions) const
1975 {
1976         if (!is_long_tabular)
1977                 return false;
1978         for (row_type i = 0; i < nrows(); ++i)
1979                 if (row_info[i].endhead &&
1980                     (withcaptions || !row_info[i].caption))
1981                         return true;
1982         return false;
1983 }
1984
1985
1986 bool Tabular::haveLTFirstHead(bool withcaptions) const
1987 {
1988         if (!is_long_tabular || endfirsthead.empty)
1989                 return false;
1990         for (row_type r = 0; r < nrows(); ++r)
1991                 if (row_info[r].endfirsthead &&
1992                     (withcaptions || !row_info[r].caption))
1993                         return true;
1994         return false;
1995 }
1996
1997
1998 bool Tabular::haveLTFoot(bool withcaptions) const
1999 {
2000         if (!is_long_tabular)
2001                 return false;
2002         for (row_type r = 0; r < nrows(); ++r)
2003                 if (row_info[r].endfoot &&
2004                     (withcaptions || !row_info[r].caption))
2005                         return true;
2006         return false;
2007 }
2008
2009
2010 bool Tabular::haveLTLastFoot(bool withcaptions) const
2011 {
2012         if (!is_long_tabular || endlastfoot.empty)
2013                 return false;
2014         for (row_type r = 0; r < nrows(); ++r)
2015                 if (row_info[r].endlastfoot &&
2016                     (withcaptions || !row_info[r].caption))
2017                         return true;
2018         return false;
2019 }
2020
2021
2022 Tabular::idx_type Tabular::setLTCaption(row_type row, bool what)
2023 {
2024         idx_type i = getFirstCellInRow(row);
2025         if (what) {
2026                 setMultiColumn(i, numberOfCellsInRow(row), false);
2027                 setTopLine(i, false);
2028                 setBottomLine(i, false);
2029                 setLeftLine(i, false);
2030                 setRightLine(i, false);
2031                 if (!row_info[row].endfirsthead && !row_info[row].endhead &&
2032                     !row_info[row].endfoot && !row_info[row].endlastfoot) {
2033                         setLTHead(row, true, endfirsthead, true);
2034                         row_info[row].endfirsthead = true;
2035                 }
2036         } else {
2037                 unsetMultiColumn(i);
2038                 // When unsetting a caption row, also all existing
2039                 // captions in this row must be dissolved.
2040         }
2041         row_info[row].caption = what;
2042         return i;
2043 }
2044
2045
2046 bool Tabular::ltCaption(row_type row) const
2047 {
2048         return row_info[row].caption;
2049 }
2050
2051
2052 bool Tabular::haveLTCaption(CaptionType captiontype) const
2053 {
2054         if (!is_long_tabular)
2055                 return false;
2056         for (row_type r = 0; r < nrows(); ++r) {
2057                 if (row_info[r].caption) {
2058                         switch (captiontype) {
2059                         case CAPTION_FIRSTHEAD:
2060                                 if (row_info[r].endfirsthead)
2061                                         return true;
2062                                 break;
2063                         case CAPTION_HEAD:
2064                                 if (row_info[r].endhead)
2065                                         return true;
2066                                 break;
2067                         case CAPTION_FOOT:
2068                                 if (row_info[r].endfoot)
2069                                         return true;
2070                                 break;
2071                         case CAPTION_LASTFOOT:
2072                                 if (row_info[r].endlastfoot)
2073                                         return true;
2074                                 break;
2075                         case CAPTION_ANY:
2076                                 return true;
2077                         }
2078                 }
2079         }
2080         return false;
2081 }
2082
2083
2084 // end longtable support functions
2085
2086 void Tabular::setRowAscent(row_type row, int height)
2087 {
2088         if (row >= nrows() || row_info[row].ascent == height)
2089                 return;
2090         row_info[row].ascent = height;
2091 }
2092
2093
2094 void Tabular::setRowDescent(row_type row, int height)
2095 {
2096         if (row >= nrows() || row_info[row].descent == height)
2097                 return;
2098         row_info[row].descent = height;
2099 }
2100
2101
2102 int Tabular::rowAscent(row_type row) const
2103 {
2104         LASSERT(row < nrows(), row = 0);
2105         return row_info[row].ascent;
2106 }
2107
2108
2109 int Tabular::rowDescent(row_type row) const
2110 {
2111         LASSERT(row < nrows(), row = 0);
2112         return row_info[row].descent;
2113 }
2114
2115
2116 int Tabular::height() const
2117 {
2118         int height = 0;
2119         for (row_type row = 0; row < nrows(); ++row)
2120                 height += rowAscent(row) + rowDescent(row) +
2121                         interRowSpace(row);
2122         return height;
2123 }
2124
2125
2126 bool Tabular::isPartOfMultiColumn(row_type row, col_type column) const
2127 {
2128         LASSERT(row < nrows(), return false);
2129         LASSERT(column < ncols(), return false);
2130         return cell_info[row][column].multicolumn == CELL_PART_OF_MULTICOLUMN;
2131 }
2132
2133
2134 bool Tabular::isPartOfMultiRow(row_type row, col_type column) const
2135 {
2136         LASSERT(row < nrows(), return false);
2137         LASSERT(column < ncols(), return false);
2138         return cell_info[row][column].multirow == CELL_PART_OF_MULTIROW;
2139 }
2140
2141
2142 void Tabular::TeXTopHLine(otexstream & os, row_type row, string const lang) const
2143 {
2144         // we only output complete row lines and the 1st row here, the rest
2145         // is done in Tabular::TeXBottomHLine(...)
2146
2147         // get for each column the topline (if any)
2148         vector<bool> topline;
2149         col_type nset = 0;
2150         for (col_type c = 0; c < ncols(); ++c) {
2151                 topline.push_back(topLine(cellIndex(row, c)));
2152                 // If cell is part of a multirow and not the first cell of the
2153                 // multirow, no line must be drawn.
2154                 if (row != 0)
2155                         if (isMultiRow(cellIndex(row, c))
2156                             && cell_info[row][c].multirow != CELL_BEGIN_OF_MULTIROW)
2157                                 topline[c] = false;
2158                 if (topline[c])
2159                         ++nset;
2160         }
2161
2162         // do nothing if empty first row, or incomplete row line after
2163         if ((row == 0 && nset == 0) || (row > 0 && nset != ncols()))
2164                 return;
2165
2166         // only output complete row lines and the 1st row's clines
2167         if (nset == ncols()) {
2168                 if (use_booktabs) {
2169                         os << (row == 0 ? "\\toprule " : "\\midrule ");
2170                 } else {
2171                         os << "\\hline ";
2172                 }
2173         } else if (row == 0) {
2174                 for (col_type c = 0; c < ncols(); ++c) {
2175                         if (topline[c]) {
2176                                 col_type offset = 0;
2177                                 for (col_type j = 0 ; j < c; ++j)
2178                                         if (column_info[j].alignment == LYX_ALIGN_DECIMAL)
2179                                                 ++offset;
2180                                 
2181                                 //babel makes the "-" character an active one, so we have to suppress this here
2182                                 //see http://groups.google.com/group/comp.text.tex/browse_thread/thread/af769424a4a0f289#
2183                                 if (lang == "slovak" || lang == "czech")
2184                                         os << "\\expandafter" << (use_booktabs ? "\\cmidrule" : "\\cline") 
2185                                         << "\\expandafter{\\expandafter" << c + 1 + offset << "\\string-";
2186                                 else
2187                                         os << (use_booktabs ? "\\cmidrule{" : "\\cline{") << c + 1 + offset << '-';
2188                                 
2189                                 col_type cstart = c;
2190                                 for ( ; c < ncols() && topline[c]; ++c) {}
2191                                 
2192                                 for (col_type j = cstart ; j < c ; ++j)
2193                                         if (column_info[j].alignment == LYX_ALIGN_DECIMAL)
2194                                                 ++offset;
2195                                 
2196                                 os << c + offset << "} ";
2197                         }
2198                 }
2199         }
2200         os << "\n";
2201 }
2202
2203
2204 void Tabular::TeXBottomHLine(otexstream & os, row_type row, string const lang) const
2205 {
2206         // we output bottomlines of row r and the toplines of row r+1
2207         // if the latter do not span the whole tabular
2208
2209         // get the bottomlines of row r, and toplines in next row
2210         bool lastrow = row == nrows() - 1;
2211         vector<bool> bottomline, topline;
2212         bool nextrowset = true;
2213         for (col_type c = 0; c < ncols(); ++c) {
2214                 bottomline.push_back(bottomLine(cellIndex(row, c)));
2215                 topline.push_back(!lastrow && topLine(cellIndex(row + 1, c)));
2216                 // If cell is part of a multirow and not the last cell of the
2217                 // multirow, no line must be drawn.
2218                 if (!lastrow)
2219                         if (isMultiRow(cellIndex(row, c))
2220                             && isMultiRow(cellIndex(row + 1, c))
2221                             && cell_info[row + 1][c].multirow != CELL_BEGIN_OF_MULTIROW) {
2222                                 bottomline[c] = false;
2223                                 topline[c] = false;
2224                                 }
2225                 nextrowset &= topline[c];
2226         }
2227
2228         // combine this row's bottom lines and next row's toplines if necessary
2229         col_type nset = 0;
2230         for (col_type c = 0; c < ncols(); ++c) {
2231                 if (!nextrowset)
2232                         bottomline[c] = bottomline[c] || topline[c];
2233                 if (bottomline[c])
2234                         ++nset;
2235         }
2236
2237         // do nothing if empty, OR incomplete row line with a topline in next row
2238         if (nset == 0 || (nextrowset && nset != ncols()))
2239                 return;
2240
2241         if (nset == ncols()) {
2242                 if (use_booktabs)
2243                         os << (lastrow ? "\\bottomrule" : "\\midrule");
2244                 else
2245                         os << "\\hline ";
2246         } else {
2247                 for (col_type c = 0; c < ncols(); ++c) {
2248                         if (bottomline[c]) {
2249                                 col_type offset = 0;
2250                                 for (col_type j = 0 ; j < c; ++j)
2251                                         if (column_info[j].alignment == LYX_ALIGN_DECIMAL)
2252                                                 ++offset;
2253                                 
2254                                 //babel makes the "-" character an active one, so we have to suppress this here
2255                                 //see http://groups.google.com/group/comp.text.tex/browse_thread/thread/af769424a4a0f289#
2256                                 if (lang == "slovak" || lang == "czech")
2257                                         os << "\\expandafter" << (use_booktabs ? "\\cmidrule" : "\\cline")
2258                                         << "\\expandafter{\\expandafter" << c + 1 + offset << "\\string-";
2259                                 else
2260                                         os << (use_booktabs ? "\\cmidrule{" : "\\cline{") << c + 1 + offset << '-';
2261                                 
2262                                 col_type cstart = c;
2263                                 for ( ; c < ncols() && bottomline[c]; ++c) {}
2264                                 
2265                                 for (col_type j = cstart ; j < c ; ++j)
2266                                         if (column_info[j].alignment == LYX_ALIGN_DECIMAL)
2267                                                 ++offset;
2268                                 
2269                                 os << c + offset << "} ";
2270                         }
2271                 }
2272         }
2273         os << "\n";
2274 }
2275
2276
2277 void Tabular::TeXCellPreamble(otexstream & os, idx_type cell,
2278                               bool & ismulticol, bool & ismultirow) const
2279 {
2280         row_type const r = cellRow(cell);
2281         if (is_long_tabular && row_info[r].caption)
2282                 return;
2283
2284         Tabular::VAlignment valign =  getVAlignment(cell, !isMultiColumn(cell));
2285         LyXAlignment align = getAlignment(cell, !isMultiColumn(cell));
2286         // figure out how to set the lines
2287         // we always set double lines to the right of the cell
2288         col_type const c = cellColumn(cell);
2289         col_type const nextcol = c + columnSpan(cell);
2290         bool colright = columnRightLine(c);
2291         bool colleft = columnLeftLine(c);
2292         bool nextcolleft = nextcol < ncols() && columnLeftLine(nextcol);
2293         bool nextcellleft = nextcol < ncols() 
2294                 && leftLine(cellIndex(r, nextcol));
2295         bool coldouble = colright && nextcolleft;
2296         bool celldouble = rightLine(cell) && nextcellleft;
2297
2298         ismulticol = isMultiColumn(cell)
2299                 || (c == 0 && colleft != leftLine(cell))
2300                 || ((colright || nextcolleft) && !rightLine(cell) && !nextcellleft)
2301                 || (!colright && !nextcolleft && (rightLine(cell) || nextcellleft))
2302                 || (coldouble != celldouble);
2303
2304         // we center in multicol when no decimal point
2305         if (column_info[c].alignment == LYX_ALIGN_DECIMAL) {
2306                 docstring const align_d = column_info[c].decimal_point;
2307                 DocIterator const dit = separatorPos(cellInset(cell).get(), align_d);
2308                 ismulticol |= !dit;
2309         }
2310
2311         // up counter by 1 for each decimally aligned col since they use 2 latex cols
2312         int latexcolspan = columnSpan(cell);
2313         for(col_type col = c; col < c + columnSpan(cell); ++col)
2314                 if (column_info[col].alignment == LYX_ALIGN_DECIMAL)
2315                         ++latexcolspan;
2316
2317         if (ismulticol) {
2318                 os << "\\multicolumn{" << latexcolspan << "}{";
2319                 if (c ==0 && leftLine(cell))
2320                         os << '|';
2321                 if (!cellInfo(cell).align_special.empty()) {
2322                         os << cellInfo(cell).align_special;
2323                 } else {
2324                         if (!getPWidth(cell).zero()) {
2325                                 switch (align) {
2326                                 case LYX_ALIGN_LEFT:
2327                                         os << ">{\\raggedright}";
2328                                         break;
2329                                 case LYX_ALIGN_RIGHT:
2330                                         os << ">{\\raggedleft}";
2331                                         break;
2332                                 case LYX_ALIGN_CENTER:
2333                                         os << ">{\\centering}";
2334                                         break;
2335                                 default:
2336                                         break;
2337                                 }
2338                                 switch (valign) {
2339                                 case LYX_VALIGN_TOP:
2340                                         os << 'p';
2341                                         break;
2342                                 case LYX_VALIGN_MIDDLE:
2343                                         os << 'm';
2344                                         break;
2345                                 case LYX_VALIGN_BOTTOM:
2346                                         os << 'b';
2347                                         break;
2348                                 }
2349                                 os << '{'
2350                                    << from_ascii(getPWidth(cell).asLatexString())
2351                                    << '}';
2352                         } else {
2353                                 switch (align) {
2354                                 case LYX_ALIGN_LEFT:
2355                                         os << 'l';
2356                                         break;
2357                                 case LYX_ALIGN_RIGHT:
2358                                         os << 'r';
2359                                         break;
2360                                 default:
2361                                         os << 'c';
2362                                         break;
2363                                 }
2364                         } // end if else !getPWidth
2365                 } // end if else !cellinfo_of_cell
2366                 if (rightLine(cell) || nextcellleft)
2367                         os << '|';
2368                 if (celldouble)
2369                         // add extra vertical line if we want a double one
2370                         os << '|';
2371                 os << "}{";
2372         } // end if ismulticol
2373
2374         // we only need code for the first multirow cell
2375         ismultirow = isMultiRow(cell);
2376         if (ismultirow) {
2377                 os << "\\multirow{" << rowSpan(cell) << "}{";
2378                 if (!getPWidth(cell).zero())
2379                         os << from_ascii(getPWidth(cell).asLatexString());
2380                 else
2381                         // we need to set a default value
2382                         os << "*";
2383                 os << "}";
2384                 if (!getMROffset(cell).zero())
2385                         os << "[" << from_ascii(getMROffset(cell).asLatexString()) << "]";
2386                 os << "{";
2387         } // end if ismultirow
2388
2389         if (getRotateCell(cell) != 0)
2390                 os << "\\begin{turn}{" << convert<string>(getRotateCell(cell)) << "}\n";
2391
2392         if (getUsebox(cell) == BOX_PARBOX) {
2393                 os << "\\parbox[";
2394                 switch (valign) {
2395                 case LYX_VALIGN_TOP:
2396                         os << 't';
2397                         break;
2398                 case LYX_VALIGN_MIDDLE:
2399                         os << 'c';
2400                         break;
2401                 case LYX_VALIGN_BOTTOM:
2402                         os << 'b';
2403                         break;
2404                 }
2405                 os << "]{" << from_ascii(getPWidth(cell).asLatexString())
2406                    << "}{";
2407         } else if (getUsebox(cell) == BOX_MINIPAGE) {
2408                 os << "\\begin{minipage}[";
2409                 switch (valign) {
2410                 case LYX_VALIGN_TOP:
2411                         os << 't';
2412                         break;
2413                 case LYX_VALIGN_MIDDLE:
2414                         os << 'm';
2415                         break;
2416                 case LYX_VALIGN_BOTTOM:
2417                         os << 'b';
2418                         break;
2419                 }
2420                 os << "]{" << from_ascii(getPWidth(cell).asLatexString())
2421                    << "}\n";
2422         }
2423 }
2424
2425
2426 void Tabular::TeXCellPostamble(otexstream & os, idx_type cell,
2427                                bool ismulticol, bool ismultirow) const
2428 {
2429         row_type const r = cellRow(cell);
2430         if (is_long_tabular && row_info[r].caption)
2431                 return;
2432
2433         // usual cells
2434         if (getUsebox(cell) == BOX_PARBOX)
2435                 os << '}';
2436         else if (getUsebox(cell) == BOX_MINIPAGE)
2437                 os << breakln << "\\end{minipage}";
2438         if (getRotateCell(cell) != 0)
2439                 os << breakln << "\\end{turn}";
2440         if (ismultirow)
2441                 os << '}';
2442         if (ismulticol)
2443                 os << '}';
2444 }
2445
2446
2447 void Tabular::TeXLongtableHeaderFooter(otexstream & os,
2448                                         OutputParams const & runparams) const
2449 {
2450         if (!is_long_tabular)
2451                 return;
2452
2453         // caption handling
2454         // output caption which is in no header or footer
2455         if (haveLTCaption()) {
2456                 for (row_type r = 0; r < nrows(); ++r) {
2457                         if (row_info[r].caption &&
2458                             !row_info[r].endfirsthead && !row_info[r].endhead &&
2459                             !row_info[r].endfoot && !row_info[r].endlastfoot)
2460                                 TeXRow(os, r, runparams);
2461                 }
2462         }
2463         // output first header info
2464         if (haveLTFirstHead()) {
2465                 if (endfirsthead.topDL)
2466                         os << "\\hline\n";
2467                 for (row_type r = 0; r < nrows(); ++r) {
2468                         if (row_info[r].endfirsthead)
2469                                 TeXRow(os, r, runparams);
2470                 }
2471                 if (endfirsthead.bottomDL)
2472                         os << "\\hline\n";
2473                 os << "\\endfirsthead\n";
2474         }
2475         // output header info
2476         if (haveLTHead()) {
2477                 if (endfirsthead.empty && !haveLTFirstHead())
2478                         os << "\\endfirsthead\n";
2479                 if (endhead.topDL)
2480                         os << "\\hline\n";
2481                 for (row_type r = 0; r < nrows(); ++r) {
2482                         if (row_info[r].endhead)
2483                                 TeXRow(os, r, runparams);
2484                 }
2485                 if (endhead.bottomDL)
2486                         os << "\\hline\n";
2487                 os << "\\endhead\n";
2488         }
2489         // output footer info
2490         if (haveLTFoot()) {
2491                 if (endfoot.topDL)
2492                         os << "\\hline\n";
2493                 for (row_type r = 0; r < nrows(); ++r) {
2494                         if (row_info[r].endfoot)
2495                                 TeXRow(os, r, runparams);
2496                 }
2497                 if (endfoot.bottomDL)
2498                         os << "\\hline\n";
2499                 os << "\\endfoot\n";
2500                 if (endlastfoot.empty && !haveLTLastFoot())
2501                         os << "\\endlastfoot\n";
2502         }
2503         // output lastfooter info
2504         if (haveLTLastFoot()) {
2505                 if (endlastfoot.topDL)
2506                         os << "\\hline\n";
2507                 for (row_type r = 0; r < nrows(); ++r) {
2508                         if (row_info[r].endlastfoot)
2509                                 TeXRow(os, r, runparams);
2510                 }
2511                 if (endlastfoot.bottomDL)
2512                         os << "\\hline\n";
2513                 os << "\\endlastfoot\n";
2514         }
2515 }
2516
2517
2518 bool Tabular::isValidRow(row_type row) const
2519 {
2520         if (!is_long_tabular)
2521                 return true;
2522         return !row_info[row].endhead && !row_info[row].endfirsthead
2523                 && !row_info[row].endfoot && !row_info[row].endlastfoot
2524                 && !row_info[row].caption;
2525 }
2526
2527
2528 void Tabular::TeXRow(otexstream & os, row_type row,
2529                      OutputParams const & runparams) const
2530 {
2531         idx_type cell = cellIndex(row, 0);
2532         shared_ptr<InsetTableCell> inset = cellInset(cell);
2533         Paragraph const & par = inset->paragraphs().front();
2534         string const lang = par.getParLanguage(buffer().params())->lang();
2535
2536         //output the top line
2537         TeXTopHLine(os, row, lang);
2538
2539         if (row_info[row].top_space_default) {
2540                 if (use_booktabs)
2541                         os << "\\addlinespace\n";
2542                 else
2543                         os << "\\noalign{\\vskip\\doublerulesep}\n";
2544         } else if(!row_info[row].top_space.zero()) {
2545                 if (use_booktabs)
2546                         os << "\\addlinespace["
2547                            << from_ascii(row_info[row].top_space.asLatexString())
2548                            << "]\n";
2549                 else {
2550                         os << "\\noalign{\\vskip"
2551                            << from_ascii(row_info[row].top_space.asLatexString())
2552                            << "}\n";
2553                 }
2554         }
2555         bool ismulticol = false;
2556         bool ismultirow = false;
2557         for (col_type c = 0; c < ncols(); ++c) {
2558                 if (isPartOfMultiColumn(row, c))
2559                         continue;
2560
2561                 cell = cellIndex(row, c);
2562
2563                 if (isPartOfMultiRow(row, c)
2564                     && column_info[c].alignment != LYX_ALIGN_DECIMAL) {
2565                         if (cell != getLastCellInRow(row))
2566                                 os << " & "; 
2567                         continue;
2568                 }
2569
2570                 TeXCellPreamble(os, cell, ismulticol, ismultirow);
2571                 shared_ptr<InsetTableCell> inset = cellInset(cell);
2572
2573                 Paragraph const & par = inset->paragraphs().front();
2574                 bool rtl = par.isRTL(buffer().params())
2575                         && !par.empty()
2576                         && getPWidth(cell).zero()
2577                         && !runparams.use_polyglossia;
2578
2579                 if (rtl) {
2580                         string const lang =
2581                                 par.getParLanguage(buffer().params())->lang();
2582                         if (lang == "farsi")
2583                                 os << "\\textFR{";
2584                         else if (lang == "arabic_arabi")
2585                                 os << "\\textAR{";
2586                         // currently, remaining RTL languages are
2587                         // arabic_arabtex and hebrew
2588                         else
2589                                 os << "\\R{";
2590                 }
2591                 // pass to the OutputParams that we are in a cell and
2592                 // which alignment we have set.
2593                 // InsetNewline needs this context information.
2594                 OutputParams newrp(runparams);
2595                 newrp.inTableCell = (getAlignment(cell) == LYX_ALIGN_BLOCK)
2596                                     ? OutputParams::PLAIN
2597                                     : OutputParams::ALIGNED;
2598
2599                 if (getAlignment(cell) == LYX_ALIGN_DECIMAL) {
2600                         // copy cell and split in 2
2601                         InsetTableCell head = InsetTableCell(*cellInset(cell).get());
2602                         head.setBuffer(buffer());
2603                         DocIterator dit = cellInset(cell)->getText(0)->macrocontextPosition();
2604                         dit.pop_back();
2605                         dit.push_back(CursorSlice(head));
2606                         head.setMacrocontextPositionRecursive(dit);
2607                         bool hassep = false;
2608                         InsetTableCell tail = splitCell(head, column_info[c].decimal_point, hassep);
2609                         head.latex(os, newrp);
2610                         if (hassep) {
2611                                 os << '&';
2612                                 tail.setBuffer(head.buffer());
2613                                 dit.pop_back();
2614                                 dit.push_back(CursorSlice(tail));
2615                                 tail.setMacrocontextPositionRecursive(dit);
2616                                 tail.latex(os, newrp);
2617                         }
2618                 } else if (!isPartOfMultiRow(row, c)) {
2619                         if (!runparams.nice)
2620                                 os.texrow().start(par.id(), 0);
2621                         inset->latex(os, newrp);
2622                 }
2623
2624                 runparams.encoding = newrp.encoding;
2625                 if (rtl)
2626                         os << '}';
2627
2628                 TeXCellPostamble(os, cell, ismulticol, ismultirow);
2629                 if (cell != getLastCellInRow(row)) { // not last cell in row
2630                         if (runparams.nice)
2631                                 os << " & ";
2632                         else
2633                                 os << " &\n";
2634                 }
2635         }
2636         os << "\\tabularnewline";
2637         if (row_info[row].bottom_space_default) {
2638                 if (use_booktabs)
2639                         os << "\\addlinespace";
2640                 else
2641                         os << "[\\doublerulesep]";
2642         } else if (!row_info[row].bottom_space.zero()) {
2643                 if (use_booktabs)
2644                         os << "\\addlinespace";
2645                 os << '['
2646                    << from_ascii(row_info[row].bottom_space.asLatexString())
2647                    << ']';
2648         }
2649         os << '\n';
2650
2651         //output the bottom line
2652         TeXBottomHLine(os, row, lang);
2653
2654         if (row_info[row].interline_space_default) {
2655                 if (use_booktabs)
2656                         os << "\\addlinespace\n";
2657                 else
2658                         os << "\\noalign{\\vskip\\doublerulesep}\n";
2659         } else if (!row_info[row].interline_space.zero()) {
2660                 if (use_booktabs)
2661                         os << "\\addlinespace["
2662                            << from_ascii(row_info[row].interline_space.asLatexString())
2663                            << "]\n";
2664                 else
2665                         os << "\\noalign{\\vskip"
2666                            << from_ascii(row_info[row].interline_space.asLatexString())
2667                            << "}\n";
2668         }
2669 }
2670
2671
2672 void Tabular::latex(otexstream & os, OutputParams const & runparams) const
2673 {
2674         bool const is_tabular_star = !tabular_width.zero();
2675
2676         //+---------------------------------------------------------------------
2677         //+                      first the opening preamble                    +
2678         //+---------------------------------------------------------------------
2679
2680         os << safebreakln;
2681         if (runparams.lastid != -1)
2682                 os.texrow().start(runparams.lastid, runparams.lastpos);
2683
2684         if (rotate != 0)
2685                 os << "\\begin{turn}{" << convert<string>(rotate) << "}\n";
2686
2687         if (is_long_tabular) {
2688                 os << "\\begin{longtable}";
2689                 switch (longtabular_alignment) {
2690                 case LYX_LONGTABULAR_ALIGN_LEFT:
2691                         os << "[l]";
2692                         break;
2693                 case LYX_LONGTABULAR_ALIGN_CENTER:
2694                         break;
2695                 case LYX_LONGTABULAR_ALIGN_RIGHT:
2696                         os << "[r]";
2697                         break;
2698                 }
2699         } else {
2700                 if (is_tabular_star)
2701                         os << "\\begin{tabular*}{" << from_ascii(tabular_width.asLatexString()) << "}";
2702                 else
2703                         os << "\\begin{tabular}";
2704                 switch (tabular_valignment) {
2705                 case LYX_VALIGN_TOP:
2706                         os << "[t]";
2707                         break;
2708                 case LYX_VALIGN_MIDDLE:
2709                         break;
2710                 case LYX_VALIGN_BOTTOM:
2711                         os << "[b]";
2712                         break;
2713                 }
2714         }
2715         
2716         os << "{";
2717
2718         if (is_tabular_star)
2719                 os << "@{\\extracolsep{\\fill}}";
2720
2721         for (col_type c = 0; c < ncols(); ++c) {
2722                 if (columnLeftLine(c))
2723                         os << '|';
2724                 if (!column_info[c].align_special.empty()) {
2725                         os << column_info[c].align_special;
2726                 } else {
2727                         if (!column_info[c].p_width.zero()) {
2728                                 switch (column_info[c].alignment) {
2729                                 case LYX_ALIGN_LEFT:
2730                                         os << ">{\\raggedright}";
2731                                         break;
2732                                 case LYX_ALIGN_RIGHT:
2733                                         os << ">{\\raggedleft}";
2734                                         break;
2735                                 case LYX_ALIGN_CENTER:
2736                                         os << ">{\\centering}";
2737                                         break;
2738                                 case LYX_ALIGN_NONE:
2739                                 case LYX_ALIGN_BLOCK:
2740                                 case LYX_ALIGN_LAYOUT:
2741                                 case LYX_ALIGN_SPECIAL:
2742                                 case LYX_ALIGN_DECIMAL:
2743                                         break;
2744                                 }
2745
2746                                 switch (column_info[c].valignment) {
2747                                 case LYX_VALIGN_TOP:
2748                                         os << 'p';
2749                                         break;
2750                                 case LYX_VALIGN_MIDDLE:
2751                                         os << 'm';
2752                                         break;
2753                                 case LYX_VALIGN_BOTTOM:
2754                                         os << 'b';
2755                                         break;
2756                         }
2757                                 os << '{'
2758                                    << from_ascii(column_info[c].p_width.asLatexString())
2759                                    << '}';
2760                         } else {
2761                                 switch (column_info[c].alignment) {
2762                                 case LYX_ALIGN_LEFT:
2763                                         os << 'l';
2764                                         break;
2765                                 case LYX_ALIGN_RIGHT:
2766                                         os << 'r';
2767                                         break;
2768                                 case LYX_ALIGN_DECIMAL:
2769                                         os << "r@{\\extracolsep{0pt}" << column_info[c].decimal_point << "}l";
2770                                         break;
2771                                 default:
2772                                         os << 'c';
2773                                         break;
2774                                 }
2775                         } // end if else !column_info[i].p_width
2776                 } // end if else !column_info[i].align_special
2777                 if (columnRightLine(c))
2778                         os << '|';
2779         }
2780         os << "}\n";
2781
2782         TeXLongtableHeaderFooter(os, runparams);
2783
2784         //+---------------------------------------------------------------------
2785         //+                      the single row and columns (cells)            +
2786         //+---------------------------------------------------------------------
2787
2788         for (row_type r = 0; r < nrows(); ++r) {
2789                 if (isValidRow(r)) {
2790                         TeXRow(os, r, runparams);
2791                         if (is_long_tabular && row_info[r].newpage)
2792                                 os << "\\newpage\n";
2793                 }
2794         }
2795
2796         //+---------------------------------------------------------------------
2797         //+                      the closing of the tabular                    +
2798         //+---------------------------------------------------------------------
2799
2800         if (is_long_tabular)
2801                 os << "\\end{longtable}";
2802         else {
2803                 if (is_tabular_star)
2804                         os << "\\end{tabular*}";
2805                 else
2806                         os << "\\end{tabular}";
2807         }
2808
2809         if (rotate != 0)
2810                 os << breakln << "\\end{turn}";
2811 }
2812
2813
2814 int Tabular::docbookRow(odocstream & os, row_type row,
2815                            OutputParams const & runparams) const
2816 {
2817         int ret = 0;
2818         idx_type cell = getFirstCellInRow(row);
2819
2820         os << "<row>\n";
2821         for (col_type c = 0; c < ncols(); ++c) {
2822                 if (isPartOfMultiColumn(row, c))
2823                         continue;
2824
2825                 os << "<entry align=\"";
2826                 switch (getAlignment(cell)) {
2827                 case LYX_ALIGN_LEFT:
2828                         os << "left";
2829                         break;
2830                 case LYX_ALIGN_RIGHT:
2831                         os << "right";
2832                         break;
2833                 default:
2834                         os << "center";
2835                         break;
2836                 }
2837
2838                 os << "\" valign=\"";
2839                 switch (getVAlignment(cell)) {
2840                 case LYX_VALIGN_TOP:
2841                         os << "top";
2842                         break;
2843                 case LYX_VALIGN_BOTTOM:
2844                         os << "bottom";
2845                         break;
2846                 case LYX_VALIGN_MIDDLE:
2847                         os << "middle";
2848                 }
2849                 os << '"';
2850
2851                 if (isMultiColumn(cell)) {
2852                         os << " namest=\"col" << c << "\" ";
2853                         os << "nameend=\"col" << c + columnSpan(cell) - 1 << '"';
2854                 }
2855
2856                 os << '>';
2857                 ret += cellInset(cell)->docbook(os, runparams);
2858                 os << "</entry>\n";
2859                 ++cell;
2860         }
2861         os << "</row>\n";
2862         return ret;
2863 }
2864
2865
2866 int Tabular::docbook(odocstream & os, OutputParams const & runparams) const
2867 {
2868         int ret = 0;
2869
2870         //+---------------------------------------------------------------------
2871         //+                      first the opening preamble                    +
2872         //+---------------------------------------------------------------------
2873
2874         os << "<tgroup cols=\"" << ncols()
2875            << "\" colsep=\"1\" rowsep=\"1\">\n";
2876
2877         for (col_type c = 0; c < ncols(); ++c) {
2878                 os << "<colspec colname=\"col" << c << "\" align=\"";
2879                 switch (column_info[c].alignment) {
2880                 case LYX_ALIGN_LEFT:
2881                         os << "left";
2882                         break;
2883                 case LYX_ALIGN_RIGHT:
2884                         os << "right";
2885                         break;
2886                 default:
2887                         os << "center";
2888                         break;
2889                 }
2890                 os << '"';
2891                 if (runparams.flavor == OutputParams::XML)
2892                         os << '/';
2893                 os << ">\n";
2894                 ++ret;
2895         }
2896
2897         //+---------------------------------------------------------------------
2898         //+                      Long Tabular case                             +
2899         //+---------------------------------------------------------------------
2900
2901         // output caption info
2902         // The caption flag wins over head/foot
2903         if (haveLTCaption()) {
2904                 os << "<caption>\n";
2905                 ++ret;
2906                 for (row_type r = 0; r < nrows(); ++r) {
2907                         if (row_info[r].caption) {
2908                                 ret += docbookRow(os, r, runparams);
2909                         }
2910                 }
2911                 os << "</caption>\n";
2912                 ++ret;
2913         }
2914         // output header info
2915         if (haveLTHead(false) || haveLTFirstHead(false)) {
2916                 os << "<thead>\n";
2917                 ++ret;
2918                 for (row_type r = 0; r < nrows(); ++r) {
2919                         if ((row_info[r].endhead || row_info[r].endfirsthead) &&
2920                             !row_info[r].caption) {
2921                                 ret += docbookRow(os, r, runparams);
2922                         }
2923                 }
2924                 os << "</thead>\n";
2925                 ++ret;
2926         }
2927         // output footer info
2928         if (haveLTFoot(false) || haveLTLastFoot(false)) {
2929                 os << "<tfoot>\n";
2930                 ++ret;
2931                 for (row_type r = 0; r < nrows(); ++r) {
2932                         if ((row_info[r].endfoot || row_info[r].endlastfoot) &&
2933                             !row_info[r].caption) {
2934                                 ret += docbookRow(os, r, runparams);
2935                         }
2936                 }
2937                 os << "</tfoot>\n";
2938                 ++ret;
2939         }
2940
2941         //+---------------------------------------------------------------------
2942         //+                      the single row and columns (cells)            +
2943         //+---------------------------------------------------------------------
2944
2945         os << "<tbody>\n";
2946         ++ret;
2947         for (row_type r = 0; r < nrows(); ++r) {
2948                 if (isValidRow(r)) {
2949                         ret += docbookRow(os, r, runparams);
2950                 }
2951         }
2952         os << "</tbody>\n";
2953         ++ret;
2954         //+---------------------------------------------------------------------
2955         //+                      the closing of the tabular                    +
2956         //+---------------------------------------------------------------------
2957
2958         os << "</tgroup>";
2959         ++ret;
2960
2961         return ret;
2962 }
2963
2964
2965 docstring Tabular::xhtmlRow(XHTMLStream & xs, row_type row,
2966                            OutputParams const & runparams, bool header) const
2967 {
2968         docstring ret;
2969         string const celltag = header ? "th" : "td";
2970         idx_type cell = getFirstCellInRow(row);
2971
2972         xs << html::StartTag("tr");
2973         for (col_type c = 0; c < ncols(); ++c) {
2974                 if (isPartOfMultiColumn(row, c) || isPartOfMultiRow(row, c))
2975                         continue;
2976
2977                 stringstream attr;
2978                 attr << "align='";
2979                 switch (getAlignment(cell)) {
2980                 case LYX_ALIGN_LEFT:
2981                         attr << "left";
2982                         break;
2983                 case LYX_ALIGN_RIGHT:
2984                         attr << "right";
2985                         break;
2986                 default:
2987                         attr << "center";
2988                         break;
2989                 }
2990                 attr << "'";
2991                 attr << " valign='";
2992                 switch (getVAlignment(cell)) {
2993                 case LYX_VALIGN_TOP:
2994                         attr << "top";
2995                         break;
2996                 case LYX_VALIGN_BOTTOM:
2997                         attr << "bottom";
2998                         break;
2999                 case LYX_VALIGN_MIDDLE:
3000                         attr << "middle";
3001                 }
3002                 attr << "'";
3003
3004                 if (isMultiColumn(cell))
3005                         attr << " colspan='" << columnSpan(cell) << "'";
3006                 else if (isMultiRow(cell))
3007                         attr << " rowspan='" << rowSpan(cell) << "'";
3008
3009                 xs << html::StartTag(celltag, attr.str()) << html::CR();
3010                 ret += cellInset(cell)->xhtml(xs, runparams);
3011                 xs << html::EndTag(celltag) << html::CR();
3012                 ++cell;
3013         }
3014         xs << html::EndTag("tr");
3015         return ret;
3016 }
3017
3018
3019 docstring Tabular::xhtml(XHTMLStream & xs, OutputParams const & runparams) const
3020 {
3021         docstring ret;
3022
3023         if (is_long_tabular) {
3024                 // we'll wrap it in a div, so as to deal with alignment
3025                 string align;
3026                 switch (longtabular_alignment) {
3027                 case LYX_LONGTABULAR_ALIGN_LEFT:
3028                         align = "left";
3029                         break;
3030                 case LYX_LONGTABULAR_ALIGN_CENTER:
3031                         align = "center";
3032                         break;
3033                 case LYX_LONGTABULAR_ALIGN_RIGHT:
3034                         align = "right";
3035                         break;
3036                 }
3037                 xs << html::StartTag("div", "class='longtable' style='text-align: " + align + ";'")
3038                    << html::CR();
3039                 // The caption flag wins over head/foot
3040                 if (haveLTCaption()) {
3041                         xs << html::StartTag("div", "class='longtable-caption' style='text-align: " + align + ";'")
3042                            << html::CR();
3043                         for (row_type r = 0; r < nrows(); ++r)
3044                                 if (row_info[r].caption)
3045                                         ret += xhtmlRow(xs, r, runparams);
3046                         xs << html::EndTag("div") << html::CR();
3047                 }
3048         }
3049
3050         xs << html::StartTag("table") << html::CR();
3051
3052         // output header info
3053         bool const havefirsthead = haveLTFirstHead(false);
3054         // if we have a first head, then we are going to ignore the
3055         // headers for the additional pages, since there aren't any
3056         // in XHTML. this test accomplishes that.
3057         bool const havehead = !havefirsthead && haveLTHead(false);
3058         if (havehead || havefirsthead) {
3059                 xs << html::StartTag("thead") << html::CR();
3060                 for (row_type r = 0; r < nrows(); ++r) {
3061                         if (((havefirsthead && row_info[r].endfirsthead) ||
3062                              (havehead && row_info[r].endhead)) &&
3063                             !row_info[r].caption) {
3064                                 ret += xhtmlRow(xs, r, runparams, true);
3065                         }
3066                 }
3067                 xs << html::EndTag("thead") << html::CR();
3068         }
3069         // output footer info
3070         bool const havelastfoot = haveLTLastFoot(false);
3071         // as before.
3072         bool const havefoot = !havelastfoot && haveLTFoot(false);
3073         if (havefoot || havelastfoot) {
3074                 xs << html::StartTag("tfoot") << html::CR();
3075                 for (row_type r = 0; r < nrows(); ++r) {
3076                         if (((havelastfoot && row_info[r].endlastfoot) ||
3077                              (havefoot && row_info[r].endfoot)) &&
3078                             !row_info[r].caption) {
3079                                 ret += xhtmlRow(xs, r, runparams);
3080                         }
3081                 }
3082                 xs << html::EndTag("tfoot") << html::CR();
3083         }
3084
3085         xs << html::StartTag("tbody") << html::CR();
3086         for (row_type r = 0; r < nrows(); ++r) {
3087                 if (isValidRow(r)) {
3088                         ret += xhtmlRow(xs, r, runparams);
3089                 }
3090         }
3091         xs << html::EndTag("tbody")
3092            << html::CR()
3093            << html::EndTag("table")
3094            << html::CR();
3095         if (is_long_tabular)
3096                 xs << html::EndTag("div") << html::CR();
3097         return ret;
3098 }
3099
3100
3101 bool Tabular::plaintextTopHLine(odocstringstream & os, row_type row,
3102                                    vector<unsigned int> const & clen) const
3103 {
3104         idx_type const fcell = getFirstCellInRow(row);
3105         idx_type const n = numberOfCellsInRow(row) + fcell;
3106         idx_type tmp = 0;
3107
3108         for (idx_type i = fcell; i < n; ++i) {
3109                 if (topLine(i)) {
3110                         ++tmp;
3111                         break;
3112                 }
3113         }
3114         if (!tmp)
3115                 return false;
3116
3117         char_type ch;
3118         for (idx_type i = fcell; i < n; ++i) {
3119                 if (topLine(i)) {
3120                         if (leftLine(i))
3121                                 os << "+-";
3122                         else
3123                                 os << "--";
3124                         ch = '-';
3125                 } else {
3126                         os << "  ";
3127                         ch = ' ';
3128                 }
3129                 col_type column = cellColumn(i);
3130                 int len = clen[column];
3131                 while (column < ncols() - 1
3132                        && isPartOfMultiColumn(row, ++column))
3133                         len += clen[column] + 4;
3134                 os << docstring(len, ch);
3135                 if (topLine(i)) {
3136                         if (rightLine(i))
3137                                 os << "-+";
3138                         else
3139                                 os << "--";
3140                 } else {
3141                         os << "  ";
3142                 }
3143         }
3144         os << endl;
3145         return true;
3146 }
3147
3148
3149 bool Tabular::plaintextBottomHLine(odocstringstream & os, row_type row,
3150                                       vector<unsigned int> const & clen) const
3151 {
3152         idx_type const fcell = getFirstCellInRow(row);
3153         idx_type const n = numberOfCellsInRow(row) + fcell;
3154         idx_type tmp = 0;
3155
3156         for (idx_type i = fcell; i < n; ++i) {
3157                 if (bottomLine(i)) {
3158                         ++tmp;
3159                         break;
3160                 }
3161         }
3162         if (!tmp)
3163                 return false;
3164
3165         char_type ch;
3166         for (idx_type i = fcell; i < n; ++i) {
3167                 if (bottomLine(i)) {
3168                         if (leftLine(i))
3169                                 os << "+-";
3170                         else
3171                                 os << "--";
3172                         ch = '-';
3173                 } else {
3174                         os << "  ";
3175                         ch = ' ';
3176                 }
3177                 col_type column = cellColumn(i);
3178                 int len = clen[column];
3179                 while (column < ncols() - 1 && isPartOfMultiColumn(row, ++column))
3180                         len += clen[column] + 4;
3181                 os << docstring(len, ch);
3182                 if (bottomLine(i)) {
3183                         if (rightLine(i))
3184                                 os << "-+";
3185                         else
3186                                 os << "--";
3187                 } else {
3188                         os << "  ";
3189                 }
3190         }
3191         os << endl;
3192         return true;
3193 }
3194
3195
3196 void Tabular::plaintextPrintCell(odocstringstream & os,
3197                                OutputParams const & runparams,
3198                                idx_type cell, row_type row, col_type column,
3199                                vector<unsigned int> const & clen,
3200                                bool onlydata, size_t max_length) const
3201 {
3202         odocstringstream sstr;
3203         cellInset(cell)->plaintext(sstr, runparams, max_length);
3204
3205         if (onlydata) {
3206                 os << sstr.str();
3207                 return;
3208         }
3209
3210         if (leftLine(cell))
3211                 os << "| ";
3212         else
3213                 os << "  ";
3214
3215         unsigned int len1 = sstr.str().length();
3216         unsigned int len2 = clen[column];
3217         while (column < ncols() - 1 && isPartOfMultiColumn(row, ++column))
3218                 len2 += clen[column] + 4;
3219         len2 -= len1;
3220
3221         switch (getAlignment(cell)) {
3222         default:
3223         case LYX_ALIGN_LEFT:
3224                 len1 = 0;
3225                 break;
3226         case LYX_ALIGN_RIGHT:
3227                 len1 = len2;
3228                 len2 = 0;
3229                 break;
3230         case LYX_ALIGN_CENTER:
3231                 len1 = len2 / 2;
3232                 len2 -= len1;
3233                 break;
3234         }
3235
3236         os << docstring(len1, ' ') << sstr.str()
3237            << docstring(len2, ' ');
3238
3239         if (rightLine(cell))
3240                 os << " |";
3241         else
3242                 os << "  ";
3243 }
3244
3245
3246 void Tabular::plaintext(odocstringstream & os,
3247                            OutputParams const & runparams, int const depth,
3248                            bool onlydata, char_type delim, size_t max_length) const
3249 {
3250         // first calculate the width of the single columns
3251         vector<unsigned int> clen(ncols());
3252
3253         if (!onlydata) {
3254                 // first all non multicolumn cells!
3255                 for (col_type c = 0; c < ncols(); ++c) {
3256                         clen[c] = 0;
3257                         for (row_type r = 0; r < nrows(); ++r) {
3258                                 idx_type cell = cellIndex(r, c);
3259                                 if (isMultiColumn(cell))
3260                                         continue;
3261                                 odocstringstream sstr;
3262                                 cellInset(cell)->plaintext(sstr, runparams, max_length);
3263                                 if (clen[c] < sstr.str().length())
3264                                         clen[c] = sstr.str().length();
3265                         }
3266                 }
3267                 // then all multicolumn cells!
3268                 for (col_type c = 0; c < ncols(); ++c) {
3269                         for (row_type r = 0; r < nrows(); ++r) {
3270                                 idx_type cell = cellIndex(r, c);
3271                                 if (cell_info[r][c].multicolumn != CELL_BEGIN_OF_MULTICOLUMN)
3272                                         continue;
3273                                 odocstringstream sstr;
3274                                 cellInset(cell)->plaintext(sstr, runparams, max_length);
3275                                 int len = int(sstr.str().length());
3276                                 idx_type const n = columnSpan(cell);
3277                                 for (col_type k = c; len > 0 && k < c + n - 1; ++k)
3278                                         len -= clen[k];
3279                                 if (len > int(clen[c + n - 1]))
3280                                         clen[c + n - 1] = len;
3281                         }
3282                 }
3283         }
3284         idx_type cell = 0;
3285         for (row_type r = 0; r < nrows(); ++r) {
3286                 if (!onlydata && plaintextTopHLine(os, r, clen))
3287                         os << docstring(depth * 2, ' ');
3288                 for (col_type c = 0; c < ncols(); ++c) {
3289                         if (isPartOfMultiColumn(r, c) || isPartOfMultiRow(r,c))
3290                                 continue;
3291                         if (onlydata && c > 0)
3292                                 // we don't use operator<< for single UCS4 character.
3293                                 // see explanation in docstream.h
3294                                 os.put(delim);
3295                         plaintextPrintCell(os, runparams, cell, r, c, clen, onlydata, max_length);
3296                         ++cell;
3297                         if (os.str().size() > max_length)
3298                                 break;
3299                 }
3300                 os << endl;
3301                 if (!onlydata) {
3302                         os << docstring(depth * 2, ' ');
3303                         if (plaintextBottomHLine(os, r, clen))
3304                                 os << docstring(depth * 2, ' ');
3305                 }
3306                 if (os.str().size() > max_length)
3307                         break;
3308         }
3309 }
3310
3311
3312 shared_ptr<InsetTableCell> Tabular::cellInset(idx_type cell) const
3313 {
3314         return cell_info[cellRow(cell)][cellColumn(cell)].inset;
3315 }
3316
3317
3318 shared_ptr<InsetTableCell> Tabular::cellInset(row_type row,
3319                                                col_type column) const
3320 {
3321         return cell_info[row][column].inset;
3322 }
3323
3324
3325 void Tabular::setCellInset(row_type row, col_type column,
3326                               shared_ptr<InsetTableCell> ins) const
3327 {
3328         CellData & cd = cell_info[row][column];
3329         cd.inset = ins;
3330 }
3331
3332
3333 void Tabular::validate(LaTeXFeatures & features) const
3334 {
3335         features.require("NeedTabularnewline");
3336         if (use_booktabs)
3337                 features.require("booktabs");
3338         if (is_long_tabular)
3339                 features.require("longtable");
3340         if (needRotating())
3341                 features.require("rotating");
3342         for (idx_type cell = 0; cell < numberofcells; ++cell) {
3343                 if (isMultiRow(cell))
3344                         features.require("multirow");
3345                 if (getVAlignment(cell) != LYX_VALIGN_TOP
3346                     || !getPWidth(cell).zero())
3347                         features.require("array");
3348                 cellInset(cell)->validate(features);
3349         }
3350 }
3351
3352
3353 Tabular::BoxType Tabular::useParbox(idx_type cell) const
3354 {
3355         ParagraphList const & parlist = cellInset(cell)->paragraphs();
3356         ParagraphList::const_iterator cit = parlist.begin();
3357         ParagraphList::const_iterator end = parlist.end();
3358
3359         for (; cit != end; ++cit)
3360                 for (int i = 0; i < cit->size(); ++i)
3361                         if (cit->isNewline(i))
3362                                 return BOX_PARBOX;
3363
3364         return BOX_NONE;
3365 }
3366
3367
3368 /////////////////////////////////////////////////////////////////////
3369 //
3370 // InsetTableCell
3371 //
3372 /////////////////////////////////////////////////////////////////////
3373
3374 InsetTableCell::InsetTableCell(Buffer * buf)
3375         : InsetText(buf, InsetText::PlainLayout), isFixedWidth(false),
3376           contentAlign(LYX_ALIGN_CENTER)
3377 {}
3378
3379
3380 bool InsetTableCell::forcePlainLayout(idx_type) const
3381 {
3382         return !isFixedWidth;
3383 }
3384
3385
3386 bool InsetTableCell::allowParagraphCustomization(idx_type) const
3387 {
3388         return isFixedWidth;
3389 }
3390
3391
3392 bool InsetTableCell::getStatus(Cursor & cur, FuncRequest const & cmd,
3393         FuncStatus & status) const
3394 {
3395         bool enabled = true;
3396         switch (cmd.action()) {
3397         case LFUN_LAYOUT:
3398                 enabled = !forcePlainLayout();
3399                 break;
3400         case LFUN_LAYOUT_PARAGRAPH:
3401                 enabled = allowParagraphCustomization();
3402                 break;
3403
3404         case LFUN_MATH_DISPLAY:
3405                 if (!hasFixedWidth()) {
3406                         enabled = false;
3407                         break;
3408                 } //fall-through
3409         default:
3410                 return InsetText::getStatus(cur, cmd, status);
3411         }
3412         status.setEnabled(enabled);
3413         return true;
3414 }
3415
3416 docstring InsetTableCell::asString(bool intoInsets) 
3417 {
3418         docstring retval;
3419         if (paragraphs().empty())
3420                 return retval;
3421         ParagraphList::const_iterator it = paragraphs().begin();
3422         ParagraphList::const_iterator en = paragraphs().end();
3423         bool first = true;
3424         for (; it != en; ++it) {
3425                 if (!first)
3426                         retval += "\n";
3427                 else
3428                         first = false;
3429                 retval += it->asString(intoInsets ? AS_STR_INSETS : AS_STR_NONE);
3430         }
3431         return retval;
3432 }
3433
3434
3435 docstring InsetTableCell::xhtml(XHTMLStream & xs, OutputParams const & rp) const
3436 {
3437         if (!isFixedWidth)
3438                 return InsetText::insetAsXHTML(xs, rp, InsetText::JustText);
3439         return InsetText::xhtml(xs, rp);
3440 }
3441
3442
3443
3444 /////////////////////////////////////////////////////////////////////
3445 //
3446 // InsetTabular
3447 //
3448 /////////////////////////////////////////////////////////////////////
3449
3450 InsetTabular::InsetTabular(Buffer * buf, row_type rows,
3451                            col_type columns)
3452         : Inset(buf), tabular(buf, max(rows, row_type(1)), max(columns, col_type(1))), scx_(0), 
3453         rowselect_(false), colselect_(false)
3454 {
3455 }
3456
3457
3458 InsetTabular::InsetTabular(InsetTabular const & tab)
3459         : Inset(tab), tabular(tab.tabular),  scx_(0)
3460 {
3461 }
3462
3463
3464 InsetTabular::~InsetTabular()
3465 {
3466         hideDialogs("tabular", this);
3467 }
3468
3469
3470 void InsetTabular::setBuffer(Buffer & buf)
3471 {
3472         tabular.setBuffer(buf);
3473         Inset::setBuffer(buf);
3474 }
3475
3476
3477 bool InsetTabular::insetAllowed(InsetCode code) const
3478 {
3479         switch (code) {
3480         case FLOAT_CODE:
3481         case MARGIN_CODE:
3482         case MATHMACRO_CODE:
3483         case WRAP_CODE:
3484                 return false;
3485
3486         case CAPTION_CODE:
3487                 return tabular.is_long_tabular;
3488
3489         default:
3490                 return true;
3491         }
3492 }
3493
3494
3495 bool InsetTabular::allowsCaptionVariation(std::string const & newtype) const
3496 {
3497         return tabular.is_long_tabular &&
3498                 (newtype == "Standard" || newtype == "LongTableNoNumber");
3499 }
3500
3501
3502 void InsetTabular::write(ostream & os) const
3503 {
3504         os << "Tabular" << endl;
3505         tabular.write(os);
3506 }
3507
3508
3509 string InsetTabular::contextMenu(BufferView const &, int, int) const
3510 {
3511         // FIXME: depending on the selection state,
3512         // we could offer a different menu.
3513         return cell(0)->contextMenuName() + ";" + contextMenuName();
3514 }
3515
3516
3517 string InsetTabular::contextMenuName() const
3518 {
3519         return "context-tabular";
3520 }
3521
3522
3523 void InsetTabular::read(Lexer & lex)
3524 {
3525         //bool const old_format = (lex.getString() == "\\LyXTable");
3526
3527         tabular.read(lex);
3528
3529         //if (old_format)
3530         //      return;
3531
3532         lex.next();
3533         string token = lex.getString();
3534         while (lex && token != "\\end_inset") {
3535                 lex.next();
3536                 token = lex.getString();
3537         }
3538         if (!lex)
3539                 lex.printError("Missing \\end_inset at this point. ");
3540 }
3541
3542
3543 int InsetTabular::rowFromY(Cursor & cur, int y) const
3544 {
3545         // top y coordinate of tabular
3546         int h = yo(cur.bv()) - tabular.rowAscent(0) + offset_valign_;
3547         row_type r = 0;
3548         for (; r < tabular.nrows() && y > h; ++r)
3549                 h += tabular.rowAscent(r) + tabular.rowDescent(r)
3550                         + tabular.interRowSpace(r);
3551
3552         return r - 1;
3553 }
3554
3555
3556 int InsetTabular::columnFromX(Cursor & cur, int x) const
3557 {
3558         // left x coordinate of tabular
3559         int w = xo(cur.bv()) + ADD_TO_TABULAR_WIDTH;
3560         col_type c = 0;
3561         for (; c < tabular.ncols() && x > w; ++c)
3562                 w += tabular.cellWidth(c);
3563         return c - 1;
3564 }
3565
3566
3567 void InsetTabular::metrics(MetricsInfo & mi, Dimension & dim) const
3568 {
3569         //lyxerr << "InsetTabular::metrics: " << mi.base.bv << " width: " <<
3570         //      mi.base.textwidth << "\n";
3571         LBUFERR(mi.base.bv);
3572
3573         for (row_type r = 0; r < tabular.nrows(); ++r) {
3574                 int maxasc = 0;
3575                 int maxdes = 0;
3576                 for (col_type c = 0; c < tabular.ncols(); ++c) {
3577                         if (tabular.isPartOfMultiColumn(r, c)
3578                                 || tabular.isPartOfMultiRow(r, c))
3579                                 // multicolumn or multirow cell, but not first one
3580                                 continue;
3581                         idx_type const cell = tabular.cellIndex(r, c);
3582                         Dimension dim;
3583                         MetricsInfo m = mi;
3584                         Length const p_width = tabular.getPWidth(cell);
3585                         if (!p_width.zero())
3586                                 m.base.textwidth = p_width.inPixels(mi.base.textwidth);
3587                         tabular.cellInset(cell)->metrics(m, dim);
3588                         if (!p_width.zero())
3589                                 dim.wid = m.base.textwidth;
3590                         tabular.cellInfo(cell).width = dim.wid + 2 * WIDTH_OF_LINE 
3591                                 + tabular.interColumnSpace(cell);
3592
3593                         // FIXME(?): do we need a second metrics call?
3594                         TextMetrics const & tm = 
3595                                 mi.base.bv->textMetrics(tabular.cellInset(cell)->getText(0));
3596
3597                         // determine horizontal offset because of decimal align (if necessary)
3598                         int decimal_width = 0;
3599                         if (tabular.getAlignment(cell) == LYX_ALIGN_DECIMAL) {
3600                                 InsetTableCell tail = InsetTableCell(*tabular.cellInset(cell).get());
3601                                 tail.setBuffer(tabular.buffer());
3602                                 // we need to set macrocontext position everywhere
3603                                 // otherwise we crash with nested insets (e.g. footnotes)
3604                                 // after decimal point
3605                                 DocIterator dit = tabular.cellInset(cell)->getText(0)->macrocontextPosition();
3606                                 dit.pop_back();
3607                                 dit.push_back(CursorSlice(tail));
3608                                 tail.setMacrocontextPositionRecursive(dit);
3609
3610                                 // remove text leading decimal point
3611                                 docstring const align_d = tabular.column_info[c].decimal_point;
3612                                 dit = separatorPos(&tail, align_d);
3613
3614                                 pit_type const psize = tail.paragraphs().front().size();
3615                                 if (dit) {
3616                                         tail.paragraphs().front().eraseChars(0,
3617                                                 dit.pos() < psize ? dit.pos() + 1 : psize, false);
3618                                         Dimension dim1;
3619                                         tail.metrics(m, dim1);
3620                                         decimal_width = dim1.width();
3621                                 }
3622                         }
3623                         tabular.cell_info[r][c].decimal_hoffset = tm.width() - decimal_width;
3624                         tabular.cell_info[r][c].decimal_width = decimal_width;
3625
3626                         // with LYX_VALIGN_BOTTOM the descent is relative to the last par
3627                         // = descent of text in last par + TEXT_TO_INSET_OFFSET:
3628                         int const lastpardes = tm.last().second->descent()
3629                                 + TEXT_TO_INSET_OFFSET;
3630                         int offset = 0;
3631                         switch (tabular.getVAlignment(cell)) { 
3632                                 case Tabular::LYX_VALIGN_TOP:
3633                                         break; 
3634                                 case Tabular::LYX_VALIGN_MIDDLE:
3635                                         offset = -(dim.des - lastpardes)/2; 
3636                                         break; 
3637                                 case Tabular::LYX_VALIGN_BOTTOM:
3638                                         offset = -(dim.des - lastpardes); 
3639                                         break;
3640                         }
3641                         tabular.cell_info[r][c].voffset = offset;
3642                         maxasc = max(maxasc, dim.asc - offset);
3643                         maxdes = max(maxdes, dim.des + offset);
3644                 }
3645                 int const top_space = tabular.row_info[r].top_space_default ?
3646                         default_line_space :
3647                         tabular.row_info[r].top_space.inPixels(mi.base.textwidth);
3648                 tabular.setRowAscent(r, maxasc + ADD_TO_HEIGHT + top_space);
3649                 int const bottom_space = tabular.row_info[r].bottom_space_default ?
3650                         default_line_space :
3651                         tabular.row_info[r].bottom_space.inPixels(mi.base.textwidth);
3652                 tabular.setRowDescent(r, maxdes + ADD_TO_HEIGHT + bottom_space);
3653         }
3654
3655         // for top-alignment the first horizontal table line must be exactly at
3656         // the position of the base line of the surrounding text line
3657         // for bottom alignment, the same is for the last table line
3658         switch (tabular.tabular_valignment) {
3659         case Tabular::LYX_VALIGN_BOTTOM:
3660                 offset_valign_ = tabular.rowAscent(0) - tabular.height();
3661                 break;
3662         case Tabular::LYX_VALIGN_MIDDLE:
3663                 offset_valign_ = (- tabular.height()) / 2 + tabular.rowAscent(0);
3664                 break;
3665         case Tabular::LYX_VALIGN_TOP:
3666                 offset_valign_ = tabular.rowAscent(0);
3667                 break;
3668         }
3669
3670         tabular.updateColumnWidths();
3671         dim.asc = tabular.rowAscent(0) - offset_valign_;        
3672         dim.des = tabular.height() - dim.asc;
3673         dim.wid = tabular.width() + 2 * ADD_TO_TABULAR_WIDTH;
3674 }
3675
3676
3677 bool InsetTabular::isCellSelected(Cursor & cur, row_type row, col_type col) 
3678         const
3679 {
3680         if (&cur.inset() == this && cur.selection()) {
3681                 if (cur.selIsMultiCell()) {
3682                         row_type rs, re;
3683                         col_type cs, ce;
3684                         getSelection(cur, rs, re, cs, ce);
3685                         
3686                         idx_type const cell = tabular.cellIndex(row, col);
3687                         col_type const cspan = tabular.columnSpan(cell);
3688                         row_type const rspan = tabular.rowSpan(cell);
3689                         if (col + cspan - 1 >= cs && col <= ce 
3690                                 && row + rspan - 1 >= rs && row <= re)
3691                                 return true;
3692                 } else 
3693                         if (col == tabular.cellColumn(cur.idx()) 
3694                                 && row == tabular.cellRow(cur.idx())) {
3695                         CursorSlice const & beg = cur.selBegin();
3696                         CursorSlice const & end = cur.selEnd();
3697
3698                         if ((end.lastpos() > 0 || end.lastpit() > 0)
3699                                   && end.pos() == end.lastpos() && beg.pos() == 0
3700                                   && end.pit() == end.lastpit() && beg.pit() == 0)
3701                                 return true;
3702                 }
3703         }
3704         return false;
3705 }
3706
3707
3708 void InsetTabular::draw(PainterInfo & pi, int x, int y) const
3709 {
3710         x += scx_ + ADD_TO_TABULAR_WIDTH;
3711
3712         BufferView * bv = pi.base.bv;
3713         Cursor & cur = pi.base.bv->cursor();
3714         resetPos(cur);
3715
3716         // FIXME: As the full background is painted in drawBackground(),
3717         // we have no choice but to do a full repaint for the Text cells.
3718         pi.full_repaint = true;
3719
3720         bool const original_selection_state = pi.selected;
3721
3722         idx_type idx = 0;
3723         first_visible_cell = Tabular::npos;
3724
3725         int yy = y + offset_valign_;
3726         for (row_type r = 0; r < tabular.nrows(); ++r) {
3727                 int nx = x;
3728                 for (col_type c = 0; c < tabular.ncols(); ++c) {
3729                         if (tabular.isPartOfMultiColumn(r, c))
3730                                 continue;
3731                         
3732                         idx = tabular.cellIndex(r, c);
3733                         
3734                         if (tabular.isPartOfMultiRow(r, c)) {
3735                                 nx += tabular.cellWidth(idx);
3736                                 continue;
3737                         }
3738
3739                         if (first_visible_cell == Tabular::npos)
3740                                 first_visible_cell = idx;
3741
3742                         pi.selected |= isCellSelected(cur, r, c);
3743                         int const cx = nx + tabular.textHOffset(idx);
3744                         int const cy = yy + tabular.textVOffset(idx);
3745                         // Cache the Inset position.
3746                         bv->coordCache().insets().add(cell(idx).get(), cx, cy);
3747                         cell(idx)->draw(pi, cx, cy);
3748                         drawCellLines(pi, nx, yy, r, idx);
3749                         nx += tabular.cellWidth(idx);
3750                         pi.selected = original_selection_state;
3751                 }
3752
3753                 if (r + 1 < tabular.nrows())
3754                         yy += tabular.rowDescent(r) + tabular.rowAscent(r + 1) 
3755                                 + tabular.interRowSpace(r + 1);
3756         }
3757 }
3758
3759
3760 void InsetTabular::drawBackground(PainterInfo & pi, int x, int y) const
3761 {
3762         x += scx_ + ADD_TO_TABULAR_WIDTH;
3763         y += offset_valign_ - tabular.rowAscent(0);
3764         pi.pain.fillRectangle(x, y, tabular.width(), tabular.height(),
3765                 pi.backgroundColor(this));
3766 }
3767
3768
3769 void InsetTabular::drawSelection(PainterInfo & pi, int x, int y) const
3770 {
3771         Cursor & cur = pi.base.bv->cursor();
3772         resetPos(cur);
3773
3774         x += scx_ + ADD_TO_TABULAR_WIDTH;
3775
3776         if (!cur.selection())
3777                 return;
3778         if (&cur.inset() != this)
3779                 return;
3780
3781         //resetPos(cur);
3782
3783         bool const full_cell_selected = isCellSelected(cur,
3784                 tabular.cellRow(cur.idx()), tabular.cellColumn(cur.idx()));
3785
3786         if (cur.selIsMultiCell() || full_cell_selected) {
3787                 for (row_type r = 0; r < tabular.nrows(); ++r) {
3788                         int xx = x;
3789                         for (col_type c = 0; c < tabular.ncols(); ++c) {
3790                                 if (tabular.isPartOfMultiColumn(r, c))
3791                                         continue;
3792
3793                                 idx_type const cell = tabular.cellIndex(r, c);
3794
3795                                 if (tabular.isPartOfMultiRow(r, c)) {
3796                                         xx += tabular.cellWidth(cell);
3797                                         continue;
3798                                 }
3799                                 int const w = tabular.cellWidth(cell);
3800                                 int const h = tabular.cellHeight(cell);
3801                                 int const yy = y - tabular.rowAscent(r) + offset_valign_;
3802                                 if (isCellSelected(cur, r, c))
3803                                         pi.pain.fillRectangle(xx, yy, w, h, Color_selection);
3804                                 xx += w;
3805                         }
3806                         if (r + 1 < tabular.nrows())
3807                                 y += tabular.rowDescent(r) + tabular.rowAscent(r + 1)
3808                                      + tabular.interRowSpace(r + 1);
3809                 }
3810
3811         } 
3812         // FIXME: This code has no effect because InsetTableCell does not handle
3813         // drawSelection other than the trivial implementation in Inset.
3814         //else {
3815         //      x += cellXPos(cur.idx());
3816         //      x += tabular.textHOffset(cur.idx());
3817         //      cell(cur.idx())->drawSelection(pi, x, 0 /* ignored */);
3818         //}
3819 }
3820
3821
3822 void InsetTabular::drawCellLines(PainterInfo & pi, int x, int y,
3823                                  row_type row, idx_type cell) const
3824 {
3825         y -= tabular.rowAscent(row);
3826         int const w = tabular.cellWidth(cell);
3827         int const h = tabular.cellHeight(cell);
3828         Color const linecolor = pi.textColor(Color_tabularline);
3829         Color const gridcolor = pi.textColor(Color_tabularonoffline);
3830
3831         // Top
3832         bool drawline = tabular.topLine(cell)
3833                 || (row > 0 && tabular.bottomLine(tabular.cellAbove(cell)));
3834         pi.pain.line(x, y, x + w, y,
3835                 drawline ? linecolor : gridcolor,
3836                 drawline ? Painter::line_solid : Painter::line_onoffdash);
3837
3838         // Bottom
3839         drawline = tabular.bottomLine(cell);
3840         pi.pain.line(x, y + h, x + w, y + h,
3841                 drawline ? linecolor : gridcolor,
3842                 drawline ? Painter::line_solid : Painter::line_onoffdash);
3843
3844         // Left
3845         col_type const col = tabular.cellColumn(cell);
3846         drawline = tabular.leftLine(cell)
3847                 || (col > 0 && tabular.rightLine(tabular.cellIndex(row, col - 1)));
3848         pi.pain.line(x, y, x, y + h,
3849                 drawline ? linecolor : gridcolor,
3850                 drawline ? Painter::line_solid : Painter::line_onoffdash);
3851
3852         // Right
3853         x -= tabular.interColumnSpace(cell);
3854         col_type next_cell_col = col + 1;
3855         while (next_cell_col < tabular.ncols() 
3856                 && tabular.isMultiColumn(tabular.cellIndex(row, next_cell_col)))
3857                 next_cell_col++;
3858         drawline = tabular.rightLine(cell)
3859                    || (next_cell_col < tabular.ncols()
3860                        && tabular.leftLine(tabular.cellIndex(row, next_cell_col)));
3861         pi.pain.line(x + w, y, x + w, y + h,
3862                 drawline ? linecolor : gridcolor,
3863                 drawline ? Painter::line_solid : Painter::line_onoffdash);
3864 }
3865
3866
3867 void InsetTabular::edit(Cursor & cur, bool front, EntryDirection)
3868 {
3869         //lyxerr << "InsetTabular::edit: " << this << endl;
3870         cur.finishUndo();
3871         cur.setSelection(false);
3872         cur.push(*this);
3873         if (front) {
3874                 if (isRightToLeft(cur))
3875                         cur.idx() = tabular.getLastCellInRow(0);
3876                 else
3877                         cur.idx() = 0;
3878                 cur.pit() = 0;
3879                 cur.pos() = 0;
3880         } else {
3881                 if (isRightToLeft(cur))
3882                         cur.idx() = tabular.getFirstCellInRow(tabular.nrows() - 1);
3883                 else
3884                         cur.idx() = tabular.numberofcells - 1;
3885                 cur.pit() = 0;
3886                 cur.pos() = cur.lastpos(); // FIXME crude guess
3887         }
3888         cur.setCurrentFont();
3889         // FIXME: this accesses the position cache before it is initialized
3890         //resetPos(cur);
3891         //cur.bv().fitCursor();
3892 }
3893
3894
3895 void InsetTabular::updateBuffer(ParIterator const & it, UpdateType utype)
3896 {
3897         // In a longtable, tell captions what the current float is
3898         Counters & cnts = buffer().masterBuffer()->params().documentClass().counters();
3899         string const saveflt = cnts.current_float();
3900         if (tabular.is_long_tabular) {
3901                 cnts.current_float("table");
3902                 // in longtables, we only step the counter once
3903                 cnts.step(from_ascii("table"), utype);
3904                 cnts.isLongtable(true);
3905         }
3906
3907         ParIterator it2 = it;
3908         it2.forwardPos();
3909         size_t const end = it2.nargs();
3910         for ( ; it2.idx() < end; it2.top().forwardIdx())
3911                 buffer().updateBuffer(it2, utype);
3912
3913         //reset afterwards
3914         if (tabular.is_long_tabular) {
3915                 cnts.current_float(saveflt);
3916                 cnts.isLongtable(false);
3917         }
3918 }
3919
3920
3921 void InsetTabular::addToToc(DocIterator const & cpit, bool output_active) const
3922 {
3923         DocIterator dit = cpit;
3924         dit.forwardPos();
3925         size_t const end = dit.nargs();
3926         for ( ; dit.idx() < end; dit.top().forwardIdx())
3927                 cell(dit.idx())->addToToc(dit, output_active);
3928 }
3929
3930
3931 void InsetTabular::doDispatch(Cursor & cur, FuncRequest & cmd)
3932 {
3933         LYXERR(Debug::DEBUG, "# InsetTabular::doDispatch: cmd: " << cmd
3934                              << "\n  cur:" << cur);
3935         CursorSlice sl = cur.top();
3936         Cursor & bvcur = cur.bv().cursor();
3937
3938         FuncCode const act = cmd.action();
3939         
3940         switch (act) {
3941
3942         case LFUN_MOUSE_PRESS: {
3943                 //lyxerr << "# InsetTabular::MousePress\n" << cur.bv().cursor() << endl;
3944                 // select row
3945                 if (cmd.x() < xo(cur.bv()) + ADD_TO_TABULAR_WIDTH
3946                         || cmd.x() > xo(cur.bv()) + tabular.width()) {
3947                         row_type r = rowFromY(cur, cmd.y());
3948                         cur.idx() = tabular.getFirstCellInRow(r);
3949                         cur.pos() = 0;
3950                         cur.resetAnchor();
3951                         cur.idx() = tabular.getLastCellInRow(r);
3952                         cur.pos() = cur.lastpos();
3953                         cur.setSelection(true);
3954                         bvcur = cur; 
3955                         rowselect_ = true;
3956                         break;
3957                 }
3958                 // select column
3959                 int const y0 = yo(cur.bv()) - tabular.rowAscent(0) + offset_valign_;
3960                 if (cmd.y() < y0 + ADD_TO_TABULAR_WIDTH 
3961                         || cmd.y() > y0 + tabular.height()) {
3962                         col_type c = columnFromX(cur, cmd.x());
3963                         cur.idx() = tabular.cellIndex(0, c);
3964                         cur.pos() = 0;
3965                         cur.resetAnchor();
3966                         cur.idx() = tabular.cellIndex(tabular.nrows() - 1, c);
3967                         cur.pos() = cur.lastpos();
3968                         cur.setSelection(true);
3969                         bvcur = cur; 
3970                         colselect_ = true;
3971                         break;
3972                 }
3973                 // do not reset cursor/selection if we have selected
3974                 // some cells (bug 2715).
3975                 if (cmd.button() == mouse_button::button3
3976                     && &bvcur.selBegin().inset() == this 
3977                     && bvcur.selIsMultiCell()) 
3978                         ;
3979                 else
3980                         // Let InsetTableCell do it
3981                         cell(cur.idx())->dispatch(cur, cmd);
3982                 break;
3983         }
3984         case LFUN_MOUSE_MOTION:
3985                 //lyxerr << "# InsetTabular::MouseMotion\n" << bvcur << endl;
3986                 if (cmd.button() == mouse_button::button1) {
3987                         // only accept motions to places not deeper nested than the real anchor
3988                         if (!bvcur.realAnchor().hasPart(cur)) {
3989                                 cur.undispatched();
3990                                 break;
3991                         }
3992                         // select (additional) row
3993                         if (rowselect_) {
3994                                 row_type r = rowFromY(cur, cmd.y());
3995                                 cur.idx() = tabular.getLastCellInRow(r);
3996                                 // we need to reset the cursor's pit and pos now, as the old ones
3997                                 // may no longer be valid.
3998                                 cur.pit() = 0;
3999                                 cur.pos() = 0;
4000                                 bvcur.setCursor(cur);
4001                                 bvcur.setSelection(true);
4002                                 break;
4003                         }
4004                         // select (additional) column
4005                         if (colselect_) {
4006                                 col_type c = columnFromX(cur, cmd.x());
4007                                 cur.idx() = tabular.cellIndex(tabular.nrows() - 1, c);
4008                                 // we need to reset the cursor's pit and pos now, as the old ones
4009                                 // may no longer be valid.
4010                                 cur.pit() = 0;
4011                                 cur.pos() = 0;
4012                                 bvcur.setCursor(cur);
4013                                 bvcur.setSelection(true);
4014                                 break;
4015                         }
4016                         // only update if selection changes
4017                         if (bvcur.idx() == cur.idx() &&
4018                                 !(bvcur.realAnchor().idx() == cur.idx() && bvcur.pos() != cur.pos()))
4019                                 cur.noScreenUpdate();
4020                         setCursorFromCoordinates(cur, cmd.x(), cmd.y());
4021                         bvcur.setCursor(cur);
4022                         bvcur.setSelection(true);
4023                         // if this is a multicell selection, we just set the cursor to
4024                         // the beginning of the cell's text.
4025                         if (bvcur.selIsMultiCell()) {
4026                                 bvcur.pit() = bvcur.lastpit();
4027                                 bvcur.pos() = bvcur.lastpos();
4028                         }
4029                 }
4030                 break;
4031
4032         case LFUN_MOUSE_RELEASE:
4033                 rowselect_ = false;
4034                 colselect_ = false;
4035                 break;
4036
4037         case LFUN_CELL_BACKWARD:
4038                 movePrevCell(cur);
4039                 cur.setSelection(false);
4040                 break;
4041
4042         case LFUN_CELL_FORWARD:
4043                 moveNextCell(cur);
4044                 cur.setSelection(false);
4045                 break;
4046
4047         case LFUN_CHAR_FORWARD_SELECT:
4048         case LFUN_CHAR_FORWARD:
4049         case LFUN_CHAR_BACKWARD_SELECT:
4050         case LFUN_CHAR_BACKWARD:
4051         case LFUN_CHAR_RIGHT_SELECT:
4052         case LFUN_CHAR_RIGHT:
4053         case LFUN_CHAR_LEFT_SELECT:
4054         case LFUN_CHAR_LEFT: 
4055         case LFUN_WORD_FORWARD:
4056         case LFUN_WORD_FORWARD_SELECT:
4057         case LFUN_WORD_BACKWARD:
4058         case LFUN_WORD_BACKWARD_SELECT:
4059         case LFUN_WORD_RIGHT:
4060         case LFUN_WORD_RIGHT_SELECT:
4061         case LFUN_WORD_LEFT:
4062         case LFUN_WORD_LEFT_SELECT: {
4063                 // determine whether we move to next or previous cell, where to enter 
4064                 // the new cell from, and which command to "finish" (i.e., exit the
4065                 // inset) with:
4066                 bool next_cell;
4067                 EntryDirection entry_from = ENTRY_DIRECTION_IGNORE;
4068                 FuncCode finish_lfun;
4069
4070                 if (act == LFUN_CHAR_FORWARD 
4071                                 || act == LFUN_CHAR_FORWARD_SELECT
4072                                 || act == LFUN_WORD_FORWARD
4073                                 || act == LFUN_WORD_FORWARD_SELECT) {
4074                         next_cell = true;
4075                         finish_lfun = LFUN_FINISHED_FORWARD;
4076                 }
4077                 else if (act == LFUN_CHAR_BACKWARD
4078                                 || act == LFUN_CHAR_BACKWARD_SELECT
4079                                 || act == LFUN_WORD_BACKWARD
4080                                 || act == LFUN_WORD_BACKWARD_SELECT) {
4081                         next_cell = false;
4082                         finish_lfun = LFUN_FINISHED_BACKWARD;
4083                 }
4084                 // LEFT or RIGHT commands --- the interpretation will depend on the 
4085                 // table's direction.
4086                 else {
4087                         bool const right = act == LFUN_CHAR_RIGHT
4088                                 || act == LFUN_CHAR_RIGHT_SELECT
4089                                 || act == LFUN_WORD_RIGHT
4090                                 || act == LFUN_WORD_RIGHT_SELECT;
4091                         next_cell = isRightToLeft(cur) != right;
4092                         
4093                         if (lyxrc.visual_cursor)
4094                                 entry_from = right ? ENTRY_DIRECTION_LEFT:ENTRY_DIRECTION_RIGHT;
4095
4096                         finish_lfun = right ? LFUN_FINISHED_RIGHT : LFUN_FINISHED_LEFT;
4097                 }
4098
4099                 bool const select =     act == LFUN_CHAR_FORWARD_SELECT 
4100                     || act == LFUN_CHAR_BACKWARD_SELECT
4101                     || act == LFUN_CHAR_RIGHT_SELECT
4102                     || act == LFUN_CHAR_LEFT_SELECT
4103                         || act == LFUN_WORD_FORWARD_SELECT
4104                         || act == LFUN_WORD_RIGHT_SELECT
4105                         || act == LFUN_WORD_BACKWARD_SELECT
4106                         || act == LFUN_WORD_LEFT_SELECT;
4107
4108                 // If we have a multicell selection or we're 
4109                 // not doing some LFUN_*_SELECT thing anyway...
4110                 if (!cur.selIsMultiCell() || !select) {
4111                         col_type const c = tabular.cellColumn(cur.idx());
4112                         row_type const r = tabular.cellRow(cur.idx());
4113                         // Are we trying to select the whole cell and is the whole cell 
4114                         // not yet selected?
4115                         bool const select_whole = select && !isCellSelected(cur, r, c) &&
4116                                 ((next_cell && cur.pit() == cur.lastpit() 
4117                                 && cur.pos() == cur.lastpos())
4118                                 || (!next_cell && cur.pit() == 0 && cur.pos() == 0));
4119
4120                         bool const empty_cell = cur.lastpos() == 0 && cur.lastpit() == 0;
4121
4122                         // ...try to dispatch to the cell's inset.
4123                         cell(cur.idx())->dispatch(cur, cmd);
4124
4125                         // When we already have a selection we want to select the whole cell
4126                         // before going to the next cell.
4127                         if (select_whole && !empty_cell){
4128                                 getText(cur.idx())->selectAll(cur);
4129                                 cur.dispatched();
4130                                 cur.screenUpdateFlags(Update::Force | Update::FitCursor);
4131                                 break;
4132                         }
4133
4134                         // FIXME: When we support the selection of an empty cell, remove 
4135                         // the !empty_cell from this condition. For now we jump to the next
4136                         // cell if the current cell is empty.
4137                         if (cur.result().dispatched() && !empty_cell)
4138                                 break;
4139                 }
4140
4141                 // move to next/prev cell, as appropriate
4142                 // note that we will always do this if we're selecting and we have
4143                 // a multicell selection
4144                 LYXERR(Debug::RTL, "entering " << (next_cell ? "next" : "previous")
4145                         << " cell from: " << int(entry_from));
4146                 if (next_cell)
4147                         moveNextCell(cur, entry_from);
4148                 else
4149                         movePrevCell(cur, entry_from);
4150                 // if we're exiting the table, call the appropriate FINISHED lfun
4151                 if (sl == cur.top())
4152                         cmd = FuncRequest(finish_lfun);
4153                 else
4154                         cur.dispatched();
4155
4156                 cur.screenUpdateFlags(Update::Force | Update::FitCursor);
4157                 break;
4158
4159         }
4160
4161         case LFUN_DOWN_SELECT:
4162         case LFUN_DOWN:
4163                 if (!(cur.selection() && cur.selIsMultiCell()))
4164                         cell(cur.idx())->dispatch(cur, cmd);
4165                 
4166                 cur.dispatched(); // override the cell's decision
4167                 if (sl == cur.top()) {
4168                         // if our Text didn't do anything to the cursor
4169                         // then we try to put the cursor into the cell below
4170                         // setting also the right targetX.
4171                         cur.selHandle(act == LFUN_DOWN_SELECT);
4172                         if (tabular.cellRow(cur.idx()) != tabular.nrows() - 1) {
4173                                 int const xtarget = cur.targetX();
4174                                 // WARNING: Once cur.idx() has been reset, the cursor is in
4175                                 // an inconsistent state until pos() has been set. Be careful
4176                                 // what you do with it!
4177                                 cur.idx() = tabular.cellBelow(cur.idx());
4178                                 cur.pit() = 0;
4179                                 TextMetrics const & tm =
4180                                         cur.bv().textMetrics(cell(cur.idx())->getText(0));
4181                                 cur.pos() = tm.x2pos(cur.pit(), 0, xtarget);
4182                                 cur.setCurrentFont();
4183                         }
4184                 }
4185                 if (sl == cur.top()) {
4186                         // we trick it to go to forward after leaving the
4187                         // tabular.
4188                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
4189                         cur.undispatched();
4190                 }
4191                 if (cur.selIsMultiCell()) {
4192                         cur.pit() = cur.lastpit();
4193                         cur.pos() = cur.lastpos();
4194                         cur.setCurrentFont();
4195                         cur.screenUpdateFlags(Update::Force | Update::FitCursor);
4196                         return;
4197                 }
4198                 cur.screenUpdateFlags(Update::Force | Update::FitCursor);
4199                 break;
4200
4201         case LFUN_UP_SELECT:
4202         case LFUN_UP:
4203                 if (!(cur.selection() && cur.selIsMultiCell()))
4204                         cell(cur.idx())->dispatch(cur, cmd);
4205                 cur.dispatched(); // override the cell's decision
4206                 if (sl == cur.top()) {
4207                         // if our Text didn't do anything to the cursor
4208                         // then we try to put the cursor into the cell above
4209                         // setting also the right targetX.
4210                         cur.selHandle(act == LFUN_UP_SELECT);
4211                         if (tabular.cellRow(cur.idx()) != 0) {
4212                                 int const xtarget = cur.targetX();
4213                                 // WARNING: Once cur.idx() has been reset, the cursor is in
4214                                 // an inconsistent state until pos() has been set. Be careful
4215                                 // what you do with it!
4216                                 cur.idx() = tabular.cellAbove(cur.idx());
4217                                 cur.pit() = cur.lastpit();
4218                                 Text const * text = cell(cur.idx())->getText(0);
4219                                 TextMetrics const & tm = cur.bv().textMetrics(text);
4220                                 ParagraphMetrics const & pm =
4221                                         tm.parMetrics(cur.lastpit());
4222                                 cur.pos() = tm.x2pos(cur.pit(), pm.rows().size()-1, xtarget);
4223                                 cur.setCurrentFont();
4224                         }
4225                 }
4226                 if (sl == cur.top()) {
4227                         cmd = FuncRequest(LFUN_UP);
4228                         cur.undispatched();
4229                 }
4230                 if (cur.selIsMultiCell()) {
4231                         cur.pit() = 0;
4232                         cur.pos() = cur.lastpos();
4233                         cur.setCurrentFont();
4234                         cur.screenUpdateFlags(Update::Force | Update::FitCursor);
4235                         return;
4236                 }
4237                 cur.screenUpdateFlags(Update::Force | Update::FitCursor);
4238                 break;
4239
4240 //      case LFUN_SCREEN_DOWN: {
4241 //              //if (hasSelection())
4242 //              //      cur.selection() = false;
4243 //              col_type const col = tabular.cellColumn(cur.idx());
4244 //              int const t =   cur.bv().top_y() + cur.bv().height();
4245 //              if (t < yo() + tabular.getHeightOfTabular()) {
4246 //                      cur.bv().scrollDocView(t, true);
4247 //                      cur.idx() = tabular.cellBelow(first_visible_cell) + col;
4248 //              } else {
4249 //                      cur.idx() = tabular.getFirstCellInRow(tabular.rows() - 1) + col;
4250 //              }
4251 //              cur.par() = 0;
4252 //              cur.pos() = 0;
4253 //              break;
4254 //      }
4255 //
4256 //      case LFUN_SCREEN_UP: {
4257 //              //if (hasSelection())
4258 //              //      cur.selection() = false;
4259 //              col_type const col = tabular.cellColumn(cur.idx());
4260 //              int const t =   cur.bv().top_y() + cur.bv().height();
4261 //              if (yo() < 0) {
4262 //                      cur.bv().scrollDocView(t, true);
4263 //                      if (yo() > 0)
4264 //                              cur.idx() = col;
4265 //                      else
4266 //                              cur.idx() = tabular.cellBelow(first_visible_cell) + col;
4267 //              } else {
4268 //                      cur.idx() = col;
4269 //              }
4270 //              cur.par() = cur.lastpar();
4271 //              cur.pos() = cur.lastpos();
4272 //              break;
4273 //      }
4274
4275         case LFUN_LAYOUT_TABULAR:
4276                 cur.bv().showDialog("tabular");
4277                 break;
4278
4279         case LFUN_INSET_MODIFY: {
4280                 string arg;
4281                 if (cmd.getArg(1) == "from-dialog")
4282                         arg = cmd.getArg(0) + to_utf8(cmd.argument().substr(19));
4283                 else
4284                         arg = to_utf8(cmd.argument());
4285                 if (!tabularFeatures(cur, arg))
4286                         cur.undispatched();
4287                 break;
4288         }
4289
4290         // insert file functions
4291         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
4292         case LFUN_FILE_INSERT_PLAINTEXT:
4293                 // FIXME UNICODE
4294                 if (FileName::isAbsolute(to_utf8(cmd.argument()))) {
4295                         docstring const tmpstr = cur.bv().contentsOfPlaintextFile(
4296                                 FileName(to_utf8(cmd.argument())));
4297                         if (tmpstr.empty())
4298                                 break;
4299                         cur.recordUndoInset(INSERT_UNDO);
4300                         if (insertPlaintextString(cur.bv(), tmpstr, false)) {
4301                                 // content has been replaced,
4302                                 // so cursor might be invalid
4303                                 cur.pos() = cur.lastpos();
4304                                 cur.pit() = cur.lastpit();
4305                                 bvcur.setCursor(cur);
4306                         } else
4307                                 cur.undispatched();
4308                 }
4309                 break;
4310
4311         case LFUN_CUT:
4312                 if (cur.selIsMultiCell()) {
4313                         if (copySelection(cur)) {
4314                                 cur.recordUndoInset(DELETE_UNDO);
4315                                 cutSelection(cur);
4316                         }
4317                 } else
4318                         cell(cur.idx())->dispatch(cur, cmd);
4319                 break;
4320
4321         case LFUN_SELF_INSERT:
4322                 if (cur.selIsMultiCell()) {
4323                         cur.recordUndoInset(DELETE_UNDO);
4324                         cutSelection(cur);
4325                 }
4326                 cell(cur.idx())->dispatch(cur, cmd);
4327                 break;
4328
4329         case LFUN_CHAR_DELETE_BACKWARD:
4330         case LFUN_CHAR_DELETE_FORWARD:
4331                 if (cur.selIsMultiCell()) {
4332                         cur.recordUndoInset(DELETE_UNDO);
4333                         cutSelection(cur);
4334                 } else
4335                         cell(cur.idx())->dispatch(cur, cmd);
4336                 break;
4337
4338         case LFUN_COPY:
4339                 if (!cur.selection())
4340                         break;
4341                 if (cur.selIsMultiCell()) {
4342                         cur.finishUndo();
4343                         copySelection(cur);
4344                 } else
4345                         cell(cur.idx())->dispatch(cur, cmd);
4346                 break;
4347
4348         case LFUN_CLIPBOARD_PASTE:
4349         case LFUN_PRIMARY_SELECTION_PASTE: {
4350                 docstring const clip = (act == LFUN_CLIPBOARD_PASTE) ?
4351                         theClipboard().getAsText(Clipboard::PlainTextType) :
4352                         theSelection().get();
4353                 if (clip.empty())
4354                         break;
4355                 // pass to InsertPlaintextString, but
4356                 // only if we have multi-cell content
4357                 if (clip.find_first_of(from_ascii("\t\n")) != docstring::npos) {
4358                         cur.recordUndoInset(INSERT_UNDO);
4359                         if (insertPlaintextString(cur.bv(), clip, false)) {
4360                                 // content has been replaced,
4361                                 // so cursor might be invalid
4362                                 cur.pos() = cur.lastpos();
4363                                 cur.pit() = cur.lastpit();
4364                                 bvcur.setCursor(cur);
4365                                 break;
4366                         }
4367                 }
4368                 // Let the cell handle normal text
4369                 cell(cur.idx())->dispatch(cur, cmd);
4370                 break;
4371         }
4372
4373         case LFUN_PASTE:
4374                 if (!tabularStackDirty()) {
4375                         if (!cur.selIsMultiCell())
4376                                 cell(cur.idx())->dispatch(cur, cmd);
4377                         break;
4378                 }
4379                 if (theClipboard().isInternal()) {
4380                         cur.recordUndoInset(INSERT_UNDO);
4381                         pasteClipboard(cur);
4382                 }
4383                 break;
4384
4385         case LFUN_FONT_EMPH:
4386         case LFUN_FONT_BOLD:
4387         case LFUN_FONT_BOLDSYMBOL:
4388         case LFUN_FONT_ROMAN:
4389         case LFUN_FONT_NOUN:
4390         case LFUN_FONT_ITAL:
4391         case LFUN_FONT_FRAK:
4392         case LFUN_FONT_TYPEWRITER:
4393         case LFUN_FONT_SANS:
4394         case LFUN_TEXTSTYLE_APPLY:
4395         case LFUN_TEXTSTYLE_UPDATE:
4396         case LFUN_FONT_SIZE:
4397         case LFUN_FONT_UNDERLINE:
4398         case LFUN_FONT_STRIKEOUT:
4399         case LFUN_FONT_UNDERUNDERLINE:
4400         case LFUN_FONT_UNDERWAVE:
4401         case LFUN_LANGUAGE:
4402         case LFUN_PARAGRAPH_PARAMS_APPLY:
4403         case LFUN_PARAGRAPH_PARAMS:
4404         case LFUN_WORD_CAPITALIZE:
4405         case LFUN_WORD_UPCASE:
4406         case LFUN_WORD_LOWCASE:
4407         case LFUN_CHARS_TRANSPOSE:
4408                 if (cur.selIsMultiCell()) {
4409                         row_type rs, re;
4410                         col_type cs, ce;
4411                         getSelection(cur, rs, re, cs, ce);
4412                         Cursor tmpcur = cur;
4413                         for (row_type r = rs; r <= re; ++r) {
4414                                 for (col_type c = cs; c <= ce; ++c) {
4415                                         // cursor follows cell:
4416                                         tmpcur.idx() = tabular.cellIndex(r, c);
4417                                         // select this cell only:
4418                                         tmpcur.pit() = 0;
4419                                         tmpcur.pos() = 0;
4420                                         tmpcur.resetAnchor();
4421                                         tmpcur.pit() = tmpcur.lastpit();
4422                                         tmpcur.pos() = tmpcur.top().lastpos();
4423                                         tmpcur.setCursor(tmpcur);
4424                                         tmpcur.setSelection();
4425                                         cell(tmpcur.idx())->dispatch(tmpcur, cmd);
4426                                 }
4427                         }
4428                         break;
4429                 } else {
4430                         cell(cur.idx())->dispatch(cur, cmd);
4431                         break;
4432                 }
4433
4434         case LFUN_INSET_SETTINGS:
4435                 // relay this lfun to Inset, not to the cell.
4436                 Inset::doDispatch(cur, cmd);
4437                 break;
4438
4439         default:
4440                 // we try to handle this event in the insets dispatch function.
4441                 cell(cur.idx())->dispatch(cur, cmd);
4442                 break;
4443         }
4444 }
4445
4446
4447 // function sets an object as defined in func_status.h:
4448 // states OK, Unknown, Disabled, On, Off.
4449 bool InsetTabular::getStatus(Cursor & cur, FuncRequest const & cmd,
4450         FuncStatus & status) const
4451 {
4452         switch (cmd.action()) {
4453         case LFUN_INSET_MODIFY: {
4454                 if (&cur.inset() != this || cmd.getArg(0) != "tabular") 
4455                         break;
4456
4457                 // FIXME: We only check for the very first argument...
4458                 string const s = cmd.getArg(1);
4459                 // We always enable the lfun if it is coming from the dialog
4460                 // because the dialog makes sure all the settings are valid,
4461                 // even though the first argument might not be valid now.
4462                 if (s == "from-dialog") {
4463                         status.setEnabled(true);
4464                         return true;
4465                 }
4466
4467                 int action = Tabular::LAST_ACTION;
4468                 int i = 0;
4469                 for (; tabularFeature[i].action != Tabular::LAST_ACTION; ++i) {
4470                         if (tabularFeature[i].feature == s) {
4471                                 action = tabularFeature[i].action;
4472                                 break;
4473                         }
4474                 }
4475                 if (action == Tabular::LAST_ACTION) {
4476                         status.clear();
4477                         status.setUnknown(true);
4478                         return true;
4479                 }
4480
4481                 string const argument = cmd.getLongArg(2);
4482
4483                 row_type sel_row_start = 0;
4484                 row_type sel_row_end = 0;
4485                 col_type sel_col_start = 0;
4486                 col_type sel_col_end = 0;
4487                 Tabular::ltType dummyltt;
4488                 bool flag = true;
4489
4490                 getSelection(cur, sel_row_start, sel_row_end, sel_col_start, sel_col_end);
4491
4492                 switch (action) {
4493                 case Tabular::SET_PWIDTH:
4494                 case Tabular::SET_MPWIDTH:
4495                 case Tabular::SET_SPECIAL_COLUMN:
4496                 case Tabular::SET_SPECIAL_MULTICOLUMN:
4497                 case Tabular::APPEND_ROW:
4498                 case Tabular::APPEND_COLUMN:
4499                 case Tabular::DELETE_ROW:
4500                 case Tabular::DELETE_COLUMN:
4501                 case Tabular::COPY_ROW:
4502                 case Tabular::COPY_COLUMN:
4503                 case Tabular::SET_TOP_SPACE:
4504                 case Tabular::SET_BOTTOM_SPACE:
4505                 case Tabular::SET_INTERLINE_SPACE:
4506                         status.clear();
4507                         return true;
4508
4509                 case Tabular::SET_TABULAR_WIDTH:
4510                         status.setEnabled(!tabular.rotate &&  !tabular.is_long_tabular
4511                                 && tabular.tabular_valignment == Tabular::LYX_VALIGN_MIDDLE);
4512                         break;
4513
4514                 case Tabular::MOVE_COLUMN_RIGHT:
4515                 case Tabular::MOVE_COLUMN_LEFT:
4516                 case Tabular::MOVE_ROW_DOWN:
4517                 case Tabular::MOVE_ROW_UP: {
4518                         if (cur.selection()) {
4519                                 status.message(_("Selections not supported."));
4520                                 status.setEnabled(false);
4521                                 break;
4522                         }
4523
4524                         if ((action == Tabular::MOVE_COLUMN_RIGHT &&
4525                                 tabular.ncols() == tabular.cellColumn(cur.idx()) + 1) ||
4526                             (action == Tabular::MOVE_COLUMN_LEFT &&
4527                                 tabular.cellColumn(cur.idx()) == 0) ||
4528                             (action == Tabular::MOVE_ROW_DOWN &&
4529                                 tabular.nrows() == tabular.cellRow(cur.idx()) + 1) ||
4530                             (action == Tabular::MOVE_ROW_UP &&
4531                                 tabular.cellRow(cur.idx()) == 0)) {
4532                                         status.setEnabled(false);
4533                                         break;
4534                         }
4535
4536                         if (action == Tabular::MOVE_COLUMN_RIGHT ||
4537                             action == Tabular::MOVE_COLUMN_LEFT) {
4538                                 if (tabular.hasMultiColumn(tabular.cellColumn(cur.idx())) ||
4539                                     tabular.hasMultiColumn(tabular.cellColumn(cur.idx()) +
4540                                         (action == Tabular::MOVE_COLUMN_RIGHT ? 1 : -1))) {
4541                                         status.message(_("Multi-column in current or"
4542                                                          " destination column."));
4543                                         status.setEnabled(false);
4544                                         break;
4545                                 }
4546                         }
4547
4548                         if (action == Tabular::MOVE_ROW_DOWN ||
4549                             action == Tabular::MOVE_ROW_UP) {
4550                                 if (tabular.hasMultiRow(tabular.cellRow(cur.idx())) ||
4551                                     tabular.hasMultiRow(tabular.cellRow(cur.idx()) +
4552                                         (action == Tabular::MOVE_ROW_DOWN ? 1 : -1))) {
4553                                         status.message(_("Multi-row in current or"
4554                                                          " destination row."));
4555                                         status.setEnabled(false);
4556                                         break;
4557                                 }
4558                         }
4559
4560                         status.setEnabled(true);
4561                         break;
4562                 }
4563
4564                 case Tabular::SET_DECIMAL_POINT:
4565                         status.setEnabled(
4566                                 tabular.getAlignment(cur.idx()) == LYX_ALIGN_DECIMAL);
4567                         break;
4568
4569                 case Tabular::SET_MULTICOLUMN:
4570                 case Tabular::UNSET_MULTICOLUMN:
4571                 case Tabular::MULTICOLUMN:
4572                         // If a row is set as longtable caption, it must not be allowed
4573                         // to unset that this row is a multicolumn.
4574                         status.setEnabled(sel_row_start == sel_row_end
4575                                 && !tabular.ltCaption(tabular.cellRow(cur.idx())));
4576                         status.setOnOff(tabular.isMultiColumn(cur.idx()));
4577                         break;
4578
4579                 case Tabular::SET_MULTIROW:
4580                 case Tabular::UNSET_MULTIROW:
4581                 case Tabular::MULTIROW:
4582                         // If a row is set as longtable caption, it must not be allowed
4583                         // to unset that this row is a multirow.
4584                         status.setEnabled(sel_col_start == sel_col_end
4585                                 && !tabular.ltCaption(tabular.cellRow(cur.idx())));
4586                         status.setOnOff(tabular.isMultiRow(cur.idx()));
4587                         break;
4588
4589                 case Tabular::SET_ALL_LINES:
4590                 case Tabular::UNSET_ALL_LINES:
4591                 case Tabular::SET_BORDER_LINES:
4592                         status.setEnabled(!tabular.ltCaption(tabular.cellRow(cur.idx())));
4593                         break;
4594
4595                 case Tabular::SET_LINE_TOP:
4596                 case Tabular::SET_LINE_BOTTOM:
4597                 case Tabular::SET_LINE_LEFT:
4598                 case Tabular::SET_LINE_RIGHT:
4599                         status.setEnabled(!tabular.ltCaption(tabular.cellRow(cur.idx())));
4600                         break;
4601
4602                 case Tabular::TOGGLE_LINE_TOP:
4603                         status.setEnabled(!tabular.ltCaption(tabular.cellRow(cur.idx())));
4604                         status.setOnOff(tabular.topLine(cur.idx()));
4605                         break;
4606
4607                 case Tabular::TOGGLE_LINE_BOTTOM:
4608                         status.setEnabled(!tabular.ltCaption(tabular.cellRow(cur.idx())));
4609                         status.setOnOff(tabular.bottomLine(cur.idx()));
4610                         break;
4611
4612                 case Tabular::TOGGLE_LINE_LEFT:
4613                         status.setEnabled(!tabular.ltCaption(tabular.cellRow(cur.idx())));
4614                         status.setOnOff(tabular.leftLine(cur.idx()));
4615                         break;
4616
4617                 case Tabular::TOGGLE_LINE_RIGHT:
4618                         status.setEnabled(!tabular.ltCaption(tabular.cellRow(cur.idx())));
4619                         status.setOnOff(tabular.rightLine(cur.idx()));
4620                         break;
4621
4622                 // multirow cells only inherit the alignment of the column if the column has
4623                 // no width, otherwise they are left-aligned
4624                 // therefore allow always left but right and center only if there is no width
4625                 case Tabular::M_ALIGN_LEFT:
4626                         flag = false;
4627                 case Tabular::ALIGN_LEFT:
4628                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_LEFT);
4629                         break;
4630
4631                 case Tabular::M_ALIGN_RIGHT:
4632                         flag = false;
4633                 case Tabular::ALIGN_RIGHT:
4634                         status.setEnabled(!(tabular.isMultiRow(cur.idx()) 
4635                                 && !tabular.getPWidth(cur.idx()).zero()));
4636                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_RIGHT);
4637                         break;
4638
4639                 case Tabular::M_ALIGN_CENTER:
4640                         flag = false;
4641                 case Tabular::ALIGN_CENTER:
4642                         status.setEnabled(!(tabular.isMultiRow(cur.idx()) 
4643                                 && !tabular.getPWidth(cur.idx()).zero()));
4644                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_CENTER);
4645                         break;
4646
4647                 case Tabular::ALIGN_BLOCK:
4648                         status.setEnabled(!tabular.getPWidth(cur.idx()).zero()
4649                                 && !tabular.isMultiRow(cur.idx()));
4650                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_BLOCK);
4651                         break;
4652
4653                 case Tabular::ALIGN_DECIMAL:
4654                         status.setEnabled(!tabular.isMultiRow(cur.idx()) 
4655                                 && !tabular.isMultiColumn(cur.idx()));
4656                         status.setOnOff(tabular.getAlignment(cur.idx(), true) == LYX_ALIGN_DECIMAL);
4657                         break;
4658
4659                 case Tabular::M_VALIGN_TOP:
4660                         flag = false;
4661                 case Tabular::VALIGN_TOP:
4662                         status.setEnabled(!tabular.getPWidth(cur.idx()).zero()
4663                                 && !tabular.isMultiRow(cur.idx()));
4664                         status.setOnOff(
4665                                 tabular.getVAlignment(cur.idx(), flag) == Tabular::LYX_VALIGN_TOP);
4666                         break;
4667
4668                 case Tabular::M_VALIGN_BOTTOM:
4669                         flag = false;
4670                 case Tabular::VALIGN_BOTTOM:
4671                         status.setEnabled(!tabular.getPWidth(cur.idx()).zero()
4672                                 && !tabular.isMultiRow(cur.idx()));
4673                         status.setOnOff(
4674                                 tabular.getVAlignment(cur.idx(), flag) == Tabular::LYX_VALIGN_BOTTOM);
4675                         break;
4676
4677                 case Tabular::M_VALIGN_MIDDLE:
4678                         flag = false;
4679                 case Tabular::VALIGN_MIDDLE:
4680                         status.setEnabled(!tabular.getPWidth(cur.idx()).zero()
4681                                 && !tabular.isMultiRow(cur.idx()));
4682                         status.setOnOff(
4683                                 tabular.getVAlignment(cur.idx(), flag) == Tabular::LYX_VALIGN_MIDDLE);
4684                         break;
4685
4686                 case Tabular::SET_LONGTABULAR:
4687                         // setting as longtable is not allowed when table is inside a float
4688                         if (cur.innerInsetOfType(FLOAT_CODE) != 0
4689                                 || cur.innerInsetOfType(WRAP_CODE) != 0)
4690                                 status.setEnabled(false);
4691                         else
4692                                 status.setEnabled(true);
4693                         status.setOnOff(tabular.is_long_tabular);
4694                         break;
4695
4696                 case Tabular::UNSET_LONGTABULAR:
4697                         status.setOnOff(!tabular.is_long_tabular);
4698                         break;
4699
4700                 case Tabular::TOGGLE_ROTATE_TABULAR:
4701                 case Tabular::SET_ROTATE_TABULAR:
4702                         status.setOnOff(tabular.rotate != 0);
4703                         break;
4704
4705                 case Tabular::TABULAR_VALIGN_TOP:
4706                         status.setEnabled(tabular.tabular_width.zero());
4707                         status.setOnOff(tabular.tabular_valignment 
4708                                 == Tabular::LYX_VALIGN_TOP);
4709                         break;
4710                 case Tabular::TABULAR_VALIGN_MIDDLE:
4711                         status.setEnabled(tabular.tabular_width.zero());
4712                         status.setOnOff(tabular.tabular_valignment 
4713                                 == Tabular::LYX_VALIGN_MIDDLE);
4714                         break;
4715                 case Tabular::TABULAR_VALIGN_BOTTOM:
4716                         status.setEnabled(tabular.tabular_width.zero());
4717                         status.setOnOff(tabular.tabular_valignment 
4718                                 == Tabular::LYX_VALIGN_BOTTOM);
4719                         break;
4720
4721                 case Tabular::LONGTABULAR_ALIGN_LEFT:
4722                         status.setOnOff(tabular.longtabular_alignment 
4723                                 == Tabular::LYX_LONGTABULAR_ALIGN_LEFT);
4724                         break;
4725                 case Tabular::LONGTABULAR_ALIGN_CENTER:
4726                         status.setOnOff(tabular.longtabular_alignment 
4727                                 == Tabular::LYX_LONGTABULAR_ALIGN_CENTER);
4728                         break;
4729                 case Tabular::LONGTABULAR_ALIGN_RIGHT:
4730                         status.setOnOff(tabular.longtabular_alignment 
4731                                 == Tabular::LYX_LONGTABULAR_ALIGN_RIGHT);
4732                         break;
4733
4734                 case Tabular::UNSET_ROTATE_TABULAR:
4735                         status.setOnOff(tabular.rotate == 0);
4736                         break;
4737
4738                 case Tabular::TOGGLE_ROTATE_CELL:
4739                 case Tabular::SET_ROTATE_CELL:
4740                         status.setOnOff(!oneCellHasRotationState(false,
4741                                 sel_row_start, sel_row_end, sel_col_start, sel_col_end));
4742                         break;
4743
4744                 case Tabular::UNSET_ROTATE_CELL:
4745                         status.setOnOff(!oneCellHasRotationState(true,
4746                                 sel_row_start, sel_row_end, sel_col_start, sel_col_end));
4747                         break;
4748
4749                 case Tabular::SET_USEBOX:
4750                         status.setOnOff(convert<int>(argument) == tabular.getUsebox(cur.idx()));
4751                         break;
4752
4753                 // every row can only be one thing:
4754                 // either a footer or header
4755                 case Tabular::SET_LTFIRSTHEAD:
4756                         status.setEnabled(sel_row_start == sel_row_end);
4757                         status.setOnOff(tabular.getRowOfLTFirstHead(sel_row_start, dummyltt));
4758                         break;
4759
4760                 case Tabular::UNSET_LTFIRSTHEAD:
4761                         status.setEnabled(sel_row_start == sel_row_end);
4762                         status.setOnOff(!tabular.getRowOfLTFirstHead(sel_row_start, dummyltt));
4763                         break;
4764
4765                 case Tabular::SET_LTHEAD:
4766                         status.setEnabled(sel_row_start == sel_row_end);
4767                         status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
4768                         break;
4769
4770                 case Tabular::UNSET_LTHEAD:
4771                         status.setEnabled(sel_row_start == sel_row_end);
4772                         status.setOnOff(!tabular.getRowOfLTHead(sel_row_start, dummyltt));
4773                         break;
4774
4775                 case Tabular::SET_LTFOOT:
4776                         status.setEnabled(sel_row_start == sel_row_end);
4777                         status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
4778                         break;
4779
4780                 case Tabular::UNSET_LTFOOT:
4781                         status.setEnabled(sel_row_start == sel_row_end);
4782                         status.setOnOff(!tabular.getRowOfLTFoot(sel_row_start, dummyltt));
4783                         break;
4784
4785                 case Tabular::SET_LTLASTFOOT:
4786                         status.setEnabled(sel_row_start == sel_row_end);
4787                         status.setOnOff(tabular.getRowOfLTLastFoot(sel_row_start, dummyltt));
4788                         break;
4789
4790                 case Tabular::UNSET_LTLASTFOOT:
4791                         status.setEnabled(sel_row_start == sel_row_end);
4792                         status.setOnOff(!tabular.getRowOfLTLastFoot(sel_row_start, dummyltt));
4793                         break;
4794
4795                 case Tabular::SET_LTNEWPAGE:
4796                         status.setOnOff(tabular.getLTNewPage(sel_row_start));
4797                         break;
4798                 case Tabular::UNSET_LTNEWPAGE:
4799                         status.setOnOff(!tabular.getLTNewPage(sel_row_start));
4800                         break;
4801
4802                 // only one row in head/firsthead/foot/lasthead can be the caption
4803                 // and a multirow cannot be set as caption
4804                 case Tabular::SET_LTCAPTION:
4805                         status.setEnabled(sel_row_start == sel_row_end
4806                                 && (!tabular.getRowOfLTFirstHead(sel_row_start, dummyltt)
4807                                  || !tabular.haveLTCaption(Tabular::CAPTION_FIRSTHEAD))
4808                                 && (!tabular.getRowOfLTHead(sel_row_start, dummyltt)
4809                                  || !tabular.haveLTCaption(Tabular::CAPTION_HEAD))
4810                                 && (!tabular.getRowOfLTFoot(sel_row_start, dummyltt)
4811                                  || !tabular.haveLTCaption(Tabular::CAPTION_FOOT))
4812                                 && (!tabular.getRowOfLTLastFoot(sel_row_start, dummyltt)
4813                                  || !tabular.haveLTCaption(Tabular::CAPTION_LASTFOOT))
4814                                 && !tabular.isMultiRow(sel_row_start));
4815                         status.setOnOff(tabular.ltCaption(sel_row_start));
4816                         break;
4817
4818                 case Tabular::UNSET_LTCAPTION:
4819                         status.setEnabled(sel_row_start == sel_row_end && tabular.ltCaption(sel_row_start));
4820                         break;
4821
4822                 case Tabular::TOGGLE_LTCAPTION:
4823                         status.setEnabled(sel_row_start == sel_row_end && (tabular.ltCaption(sel_row_start)
4824                                 || ((!tabular.getRowOfLTFirstHead(sel_row_start, dummyltt)
4825                                   || !tabular.haveLTCaption(Tabular::CAPTION_FIRSTHEAD))
4826                                  && (!tabular.getRowOfLTHead(sel_row_start, dummyltt)
4827                                   || !tabular.haveLTCaption(Tabular::CAPTION_HEAD))
4828                                  && (!tabular.getRowOfLTFoot(sel_row_start, dummyltt)
4829                                   || !tabular.haveLTCaption(Tabular::CAPTION_FOOT))
4830                                  && (!tabular.getRowOfLTLastFoot(sel_row_start, dummyltt)
4831                                   || !tabular.haveLTCaption(Tabular::CAPTION_LASTFOOT)))));
4832                         status.setOnOff(tabular.ltCaption(sel_row_start));
4833                         break;
4834
4835                 case Tabular::SET_BOOKTABS:
4836                         status.setOnOff(tabular.use_booktabs);
4837                         break;
4838
4839                 case Tabular::UNSET_BOOKTABS:
4840                         status.setOnOff(!tabular.use_booktabs);
4841                         break;
4842
4843                 default:
4844                         status.clear();
4845                         status.setEnabled(false);
4846                         break;
4847                 }
4848                 return true;
4849         }
4850
4851         case LFUN_CAPTION_INSERT: {
4852                 // caption is only allowed in caption cell of longtable
4853                 if (!tabular.ltCaption(tabular.cellRow(cur.idx()))) {
4854                         status.setEnabled(false);
4855                         return true;
4856                 }
4857                 // only standard caption is allowed
4858                 string arg = cmd.getArg(0);
4859                 if (!arg.empty() && arg != "Standard") {
4860                         status.setEnabled(false);
4861                         return true;
4862                 }
4863                 // check if there is already a caption
4864                 bool have_caption = false;
4865                 InsetTableCell itc = InsetTableCell(*tabular.cellInset(cur.idx()).get());
4866                 ParagraphList::const_iterator pit = itc.paragraphs().begin();
4867                 ParagraphList::const_iterator pend = itc.paragraphs().end();
4868                 for (; pit != pend; ++pit) {
4869                         InsetList::const_iterator it  = pit->insetList().begin();
4870                         InsetList::const_iterator end = pit->insetList().end();
4871                         for (; it != end; ++it) {
4872                                 if (it->inset->lyxCode() == CAPTION_CODE) {
4873                                         have_caption = true;
4874                                         break;
4875                                 }
4876                         }
4877                 }
4878                 status.setEnabled(!have_caption);
4879                 return true;
4880         }
4881
4882         // These are only enabled inside tabular
4883         case LFUN_CELL_BACKWARD:
4884         case LFUN_CELL_FORWARD:
4885                 status.setEnabled(true);
4886                 return true;
4887
4888         // disable these with multiple cells selected
4889         case LFUN_INSET_INSERT:
4890         case LFUN_TABULAR_INSERT:
4891         case LFUN_FLEX_INSERT:
4892         case LFUN_FLOAT_INSERT:
4893         case LFUN_FLOAT_WIDE_INSERT:
4894         case LFUN_FOOTNOTE_INSERT:
4895         case LFUN_MARGINALNOTE_INSERT:
4896         case LFUN_MATH_INSERT:
4897         case LFUN_MATH_MODE:
4898         case LFUN_MATH_MUTATE:
4899         case LFUN_MATH_DISPLAY:
4900         case LFUN_NOTE_INSERT:
4901         case LFUN_ARGUMENT_INSERT:
4902         case LFUN_BOX_INSERT:
4903         case LFUN_BRANCH_INSERT:
4904         case LFUN_PHANTOM_INSERT:
4905         case LFUN_WRAP_INSERT:
4906         case LFUN_PREVIEW_INSERT:
4907         case LFUN_ERT_INSERT: {
4908                 if (cur.selIsMultiCell()) {
4909                         status.setEnabled(false);
4910                         return true;
4911                 } else
4912                         return cell(cur.idx())->getStatus(cur, cmd, status);
4913         }
4914
4915         // disable in non-fixed-width cells
4916         case LFUN_PARAGRAPH_BREAK:
4917                 // multirow does not allow paragraph breaks
4918                 if (tabular.isMultiRow(cur.idx())) {
4919                         status.setEnabled(false);
4920                         return true;
4921                 }
4922         case LFUN_NEWLINE_INSERT: {
4923                 if (tabular.getPWidth(cur.idx()).zero()) {
4924                         status.setEnabled(false);
4925                         return true;
4926                 } else
4927                         return cell(cur.idx())->getStatus(cur, cmd, status);
4928         }
4929
4930         case LFUN_NEWPAGE_INSERT:
4931                 status.setEnabled(false);
4932                 return true;
4933
4934         case LFUN_PASTE:
4935                 if (tabularStackDirty() && theClipboard().isInternal()) {
4936                         if (cur.selIsMultiCell()) {
4937                                 row_type rs, re;
4938                                 col_type cs, ce;
4939                                 getSelection(cur, rs, re, cs, ce);
4940                                 if (paste_tabular && paste_tabular->ncols() == ce - cs + 1
4941                                           && paste_tabular->nrows() == re - rs + 1)
4942                                         status.setEnabled(true);        
4943                                 else {
4944                                         status.setEnabled(false);
4945                                         status.message(_("Selection size should match clipboard content."));
4946                                 }
4947                         } else
4948                                 status.setEnabled(true);
4949                         return true;
4950                 }
4951                 return cell(cur.idx())->getStatus(cur, cmd, status);
4952
4953         case LFUN_INSET_SETTINGS:
4954                 // relay this lfun to Inset, not to the cell.
4955                 return Inset::getStatus(cur, cmd, status);
4956
4957         default:
4958                 // we try to handle this event in the insets dispatch function.
4959                 return cell(cur.idx())->getStatus(cur, cmd, status);
4960         }
4961         return false;
4962 }
4963
4964
4965 Inset::DisplayType InsetTabular::display() const
4966 {
4967                 if (tabular.is_long_tabular) {
4968                         switch (tabular.longtabular_alignment) {
4969                         case Tabular::LYX_LONGTABULAR_ALIGN_LEFT:
4970                                 return AlignLeft;
4971                         case Tabular::LYX_LONGTABULAR_ALIGN_CENTER:
4972                                 return AlignCenter;
4973                         case Tabular::LYX_LONGTABULAR_ALIGN_RIGHT:
4974                                 return AlignRight;
4975                         default:
4976                                 return AlignCenter;
4977                         }
4978                 } else
4979                         return Inline;
4980 }
4981
4982
4983 void InsetTabular::latex(otexstream & os, OutputParams const & runparams) const
4984 {
4985         tabular.latex(os, runparams);
4986 }
4987
4988
4989 int InsetTabular::plaintext(odocstringstream & os,
4990         OutputParams const & runparams, size_t max_length) const
4991 {
4992         os << '\n'; // output table on a new line
4993         int const dp = runparams.linelen > 0 ? runparams.depth : 0;
4994         tabular.plaintext(os, runparams, dp, false, 0, max_length);
4995         return PLAINTEXT_NEWLINE;
4996 }
4997
4998
4999 int InsetTabular::docbook(odocstream & os, OutputParams const & runparams) const
5000 {
5001         int ret = 0;
5002         Inset * master = 0;
5003
5004         // FIXME: Why not pass a proper DocIterator here?
5005 #if 0
5006         // if the table is inside a float it doesn't need the informaltable
5007         // wrapper. Search for it.
5008         for (master = owner(); master; master = master->owner())
5009                 if (master->lyxCode() == FLOAT_CODE)
5010                         break;
5011 #endif
5012
5013         if (!master) {
5014                 os << "<informaltable>";
5015                 ++ret;
5016         }
5017         ret += tabular.docbook(os, runparams);
5018         if (!master) {
5019                 os << "</informaltable>";
5020                 ++ret;
5021         }
5022         return ret;
5023 }
5024
5025
5026 docstring InsetTabular::xhtml(XHTMLStream & xs, OutputParams const & rp) const
5027 {
5028         return tabular.xhtml(xs, rp);
5029 }
5030
5031
5032 void InsetTabular::validate(LaTeXFeatures & features) const
5033 {
5034         tabular.validate(features);
5035         // FIXME XHTML
5036         // It'd be better to be able to get this from an InsetLayout, but at present
5037         // InsetLayouts do not seem really to work for things that aren't InsetTexts.
5038         if (features.runparams().flavor == OutputParams::HTML)
5039                 features.addCSSSnippet(
5040                         "table { border: 1px solid black; display: inline-block; }\n"
5041                         "td { border: 1px solid black; padding: 0.5ex; }");
5042 }
5043
5044
5045 shared_ptr<InsetTableCell const> InsetTabular::cell(idx_type idx) const
5046 {
5047         return tabular.cellInset(idx);
5048 }
5049
5050
5051 shared_ptr<InsetTableCell> InsetTabular::cell(idx_type idx)
5052 {
5053         return tabular.cellInset(idx);
5054 }
5055
5056
5057 void InsetTabular::cursorPos(BufferView const & bv,
5058                 CursorSlice const & sl, bool boundary, int & x, int & y) const
5059 {
5060         cell(sl.idx())->cursorPos(bv, sl, boundary, x, y);
5061
5062         // y offset     correction
5063         y += cellYPos(sl.idx());
5064         y += tabular.textVOffset(sl.idx());
5065         y += offset_valign_;
5066
5067         // x offset correction
5068         x += cellXPos(sl.idx());
5069         x += tabular.textHOffset(sl.idx());
5070         x += ADD_TO_TABULAR_WIDTH;
5071         x += scx_;
5072 }
5073
5074
5075 int InsetTabular::dist(BufferView & bv, idx_type const cell, int x, int y) const
5076 {
5077         int xx = 0;
5078         int yy = 0;
5079         Inset const & inset = *tabular.cellInset(cell);
5080         Point o = bv.coordCache().getInsets().xy(&inset);
5081         int const xbeg = o.x_ - tabular.textHOffset(cell);
5082         int const xend = xbeg + tabular.cellWidth(cell);
5083         row_type const row = tabular.cellRow(cell);
5084         int const ybeg = o.y_ - tabular.rowAscent(row)
5085                 - tabular.interRowSpace(row) - tabular.textVOffset(cell);
5086         int const yend = ybeg + tabular.cellHeight(cell);
5087
5088         if (x < xbeg)
5089                 xx = xbeg - x;
5090         else if (x > xend)
5091                 xx = x - xend;
5092
5093         if (y < ybeg)
5094                 yy = ybeg - y;
5095         else if (y > yend)
5096                 yy = y - yend;
5097
5098         //lyxerr << " xbeg=" << xbeg << "  xend=" << xend
5099         //       << " ybeg=" << ybeg << " yend=" << yend
5100         //       << " xx=" << xx << " yy=" << yy
5101         //       << " dist=" << xx + yy << endl;
5102         return xx + yy;
5103 }
5104
5105
5106 Inset * InsetTabular::editXY(Cursor & cur, int x, int y)
5107 {
5108         //lyxerr << "InsetTabular::editXY: " << this << endl;
5109         cur.setSelection(false);
5110         cur.push(*this);
5111         cur.idx() = getNearestCell(cur.bv(), x, y);
5112         resetPos(cur);
5113         return cur.bv().textMetrics(&cell(cur.idx())->text()).editXY(cur, x, y);
5114 }
5115
5116
5117 void InsetTabular::setCursorFromCoordinates(Cursor & cur, int x, int y) const
5118 {
5119         cur.idx() = getNearestCell(cur.bv(), x, y);
5120         cur.bv().textMetrics(&cell(cur.idx())->text()).setCursorFromCoordinates(cur, x, y);
5121 }
5122
5123
5124 InsetTabular::idx_type InsetTabular::getNearestCell(BufferView & bv, int x, int y) const
5125 {
5126         idx_type idx_min = 0;
5127         int dist_min = numeric_limits<int>::max();
5128         for (idx_type i = 0, n = nargs(); i != n; ++i) {
5129                 if (bv.coordCache().getInsets().has(tabular.cellInset(i).get())) {
5130                         int const d = dist(bv, i, x, y);
5131                         if (d < dist_min) {
5132                                 dist_min = d;
5133                                 idx_min = i;
5134                         }
5135                 }
5136         }
5137         return idx_min;
5138 }
5139
5140
5141 int InsetTabular::cellYPos(idx_type const cell) const
5142 {
5143         row_type row = tabular.cellRow(cell);
5144         int ly = 0;
5145         for (row_type r = 0; r < row; ++r)
5146                 ly += tabular.rowDescent(r) + tabular.rowAscent(r + 1) 
5147                         + tabular.interRowSpace(r + 1);
5148         return ly;
5149 }
5150
5151
5152 int InsetTabular::cellXPos(idx_type const cell) const
5153 {
5154         col_type col = tabular.cellColumn(cell);
5155         int lx = 0;
5156         for (col_type c = 0; c < col; ++c)
5157                 lx += tabular.column_info[c].width;
5158         return lx;
5159 }
5160
5161
5162 void InsetTabular::resetPos(Cursor & cur) const
5163 {
5164         BufferView & bv = cur.bv();
5165         int const maxwidth = bv.workWidth();
5166
5167         int const scx_old = scx_;
5168         int const i = cur.find(this);
5169         if (i == -1) {
5170                 scx_ = 0;
5171         } else {
5172                 int const X1 = 0;
5173                 int const X2 = maxwidth;
5174                 int const offset = ADD_TO_TABULAR_WIDTH + 2;
5175                 int const x1 = xo(cur.bv()) + cellXPos(cur[i].idx()) + offset;
5176                 int const x2 = x1 + tabular.cellWidth(cur[i].idx());
5177
5178                 if (x1 < X1)
5179                         scx_ = X1 + 20 - x1;
5180                 else if (x2 > X2)
5181                         scx_ = X2 - 20 - x2;
5182                 else
5183                         scx_ = 0;
5184         }
5185
5186         // only update if offset changed
5187         if (scx_ != scx_old)
5188                 cur.screenUpdateFlags(Update::Force | Update::FitCursor);
5189 }
5190
5191
5192 void InsetTabular::moveNextCell(Cursor & cur, EntryDirection entry_from)
5193 {
5194         row_type const row = tabular.cellRow(cur.idx());
5195         col_type const col = tabular.cellColumn(cur.idx());
5196
5197         if (isRightToLeft(cur)) {
5198                 if (tabular.cellColumn(cur.idx()) == 0) {
5199                         if (row == tabular.nrows() - 1)
5200                                 return;
5201                         cur.idx() = tabular.cellBelow(tabular.getLastCellInRow(row));
5202                 } else {
5203                         if (cur.idx() == 0)
5204                                 return;
5205                         if (col == 0)
5206                                 cur.idx() = tabular.getLastCellInRow(row - 1);
5207                         else
5208                                 cur.idx() = tabular.cellIndex(row, col - 1);
5209                 }
5210         } else {
5211                 if (tabular.isLastCell(cur.idx()))
5212                         return;
5213                 if (cur.idx() == tabular.getLastCellInRow(row))
5214                         cur.idx() = tabular.cellIndex(row + 1, 0);
5215                 else {
5216                         col_type const colnextcell = col + tabular.columnSpan(cur.idx());
5217                         cur.idx() = tabular.cellIndex(row, colnextcell);
5218                 }
5219         }
5220
5221         cur.boundary(false);
5222
5223         if (cur.selIsMultiCell()) {
5224                 cur.pit() = cur.lastpit();
5225                 cur.pos() = cur.lastpos();
5226                 resetPos(cur);
5227                 return;
5228         }
5229
5230         cur.pit() = 0;
5231         cur.pos() = 0;
5232
5233         // in visual mode, place cursor at extreme left or right
5234         
5235         switch(entry_from) {
5236
5237         case ENTRY_DIRECTION_RIGHT:
5238                 cur.posVisToRowExtremity(false /* !left */);
5239                 break;
5240         case ENTRY_DIRECTION_LEFT:
5241                 cur.posVisToRowExtremity(true /* left */);
5242                 break;
5243         case ENTRY_DIRECTION_IGNORE:
5244                 // nothing to do in this case
5245                 break;
5246
5247         }
5248         cur.setCurrentFont();
5249         resetPos(cur);
5250 }
5251
5252
5253 void InsetTabular::movePrevCell(Cursor & cur, EntryDirection entry_from)
5254 {
5255         row_type const row = tabular.cellRow(cur.idx());
5256         col_type const col = tabular.cellColumn(cur.idx());
5257
5258         if (isRightToLeft(cur)) {
5259                 if (cur.idx() == tabular.getLastCellInRow(row)) {
5260                         if (row == 0)
5261                                 return;
5262                         cur.idx() = tabular.getFirstCellInRow(row);
5263                         cur.idx() = tabular.cellAbove(cur.idx());
5264                 } else {
5265                         if (tabular.isLastCell(cur.idx()))
5266                                 return;
5267                         if (cur.idx() == tabular.getLastCellInRow(row))
5268                                 cur.idx() = tabular.cellIndex(row + 1, 0);
5269                         else
5270                                 cur.idx() = tabular.cellIndex(row, col + 1);
5271                 }
5272         } else {
5273                 if (cur.idx() == 0) // first cell
5274                         return;
5275                 if (col == 0)
5276                         cur.idx() = tabular.getLastCellInRow(row - 1);
5277                 else
5278                         cur.idx() = tabular.cellIndex(row, col - 1);
5279         }
5280
5281         if (cur.selIsMultiCell()) {
5282                 cur.pit() = cur.lastpit();
5283                 cur.pos() = cur.lastpos();
5284                 resetPos(cur);
5285                 return;
5286         }
5287
5288         cur.pit() = cur.lastpit();
5289         cur.pos() = cur.lastpos();
5290
5291         // in visual mode, place cursor at extreme left or right
5292         
5293         switch(entry_from) {
5294
5295         case ENTRY_DIRECTION_RIGHT:
5296                 cur.posVisToRowExtremity(false /* !left */);
5297                 break;
5298         case ENTRY_DIRECTION_LEFT:
5299                 cur.posVisToRowExtremity(true /* left */);
5300                 break;
5301         case ENTRY_DIRECTION_IGNORE:
5302                 // nothing to do in this case
5303                 break;
5304
5305         }
5306         cur.setCurrentFont();
5307         resetPos(cur);
5308 }
5309
5310
5311 bool InsetTabular::tabularFeatures(Cursor & cur, string const & argument)
5312 {
5313         istringstream is(argument);
5314         string s;
5315         is >> s;
5316         if (insetCode(s) != TABULAR_CODE)
5317                 return false;
5318
5319         // Safe guard.
5320         size_t safe_guard = 0;
5321         for (;;) {
5322                 if (is.eof())
5323                         break;
5324                 safe_guard++;
5325                 if (safe_guard > 1000) {
5326                         LYXERR0("parameter max count reached!");
5327                         break;
5328                 }
5329                 is >> s;
5330                 Tabular::Feature action = Tabular::LAST_ACTION;
5331
5332                 size_t i = 0;
5333                 for (; tabularFeature[i].action != Tabular::LAST_ACTION; ++i) {
5334                         if (s != tabularFeature[i].feature)
5335                                 continue;
5336                         action = tabularFeature[i].action;
5337                         break;
5338                 }
5339                 if (action == Tabular::LAST_ACTION) {
5340                         LYXERR0("Feature not found " << s);
5341                         continue;
5342                 }
5343                 string val;
5344                 if (tabularFeature[i].need_value)
5345                         is >> val;
5346                 LYXERR(Debug::DEBUG, "Feature: " << s << "\t\tvalue: " << val);
5347                 tabularFeatures(cur, action, val);
5348         }
5349         return true;
5350 }
5351
5352
5353 static void checkLongtableSpecial(Tabular::ltType & ltt,
5354                           string const & special, bool & flag)
5355 {
5356         if (special == "dl_above") {
5357                 ltt.topDL = flag;
5358                 ltt.set = false;
5359         } else if (special == "dl_below") {
5360                 ltt.bottomDL = flag;
5361                 ltt.set = false;
5362         } else if (special == "empty") {
5363                 ltt.empty = flag;
5364                 ltt.set = false;
5365         } else if (flag) {
5366                 ltt.empty = false;
5367                 ltt.set = true;
5368         }
5369 }
5370
5371
5372 bool InsetTabular::oneCellHasRotationState(bool rotated,
5373                 row_type row_start, row_type row_end,
5374                 col_type col_start, col_type col_end) const 
5375 {
5376         for (row_type r = row_start; r <= row_end; ++r)
5377                 for (col_type c = col_start; c <= col_end; ++c)
5378                         if (rotated) {
5379                                 if (tabular.getRotateCell(tabular.cellIndex(r, c)) != 0)
5380                                         return true;
5381                         } else {
5382                                 if (tabular.getRotateCell(tabular.cellIndex(r, c)) == 0)
5383                                         return true;
5384                         }
5385         return false;
5386 }
5387
5388
5389 void InsetTabular::tabularFeatures(Cursor & cur,
5390         Tabular::Feature feature, string const & value)
5391 {
5392         col_type sel_col_start;
5393         col_type sel_col_end;
5394         row_type sel_row_start;
5395         row_type sel_row_end;
5396         bool setLines = false;
5397         LyXAlignment setAlign = LYX_ALIGN_LEFT;
5398         Tabular::VAlignment setVAlign = Tabular::LYX_VALIGN_TOP;
5399
5400         switch (feature) {
5401
5402         case Tabular::M_ALIGN_LEFT:
5403         case Tabular::ALIGN_LEFT:
5404                 setAlign = LYX_ALIGN_LEFT;
5405                 break;
5406
5407         case Tabular::M_ALIGN_RIGHT:
5408         case Tabular::ALIGN_RIGHT:
5409                 setAlign = LYX_ALIGN_RIGHT;
5410                 break;
5411
5412         case Tabular::M_ALIGN_CENTER:
5413         case Tabular::ALIGN_CENTER:
5414                 setAlign = LYX_ALIGN_CENTER;
5415                 break;
5416
5417         case Tabular::ALIGN_BLOCK:
5418                 setAlign = LYX_ALIGN_BLOCK;
5419                 break;
5420
5421         case Tabular::ALIGN_DECIMAL:
5422                 if (tabular.column_info[tabular.cellColumn(cur.idx())].alignment == LYX_ALIGN_DECIMAL)
5423                         setAlign = LYX_ALIGN_CENTER;
5424                 else
5425                         setAlign = LYX_ALIGN_DECIMAL;
5426                 break;
5427
5428         case Tabular::M_VALIGN_TOP:
5429         case Tabular::VALIGN_TOP:
5430                 setVAlign = Tabular::LYX_VALIGN_TOP;
5431                 break;
5432
5433         case Tabular::M_VALIGN_BOTTOM:
5434         case Tabular::VALIGN_BOTTOM:
5435                 setVAlign = Tabular::LYX_VALIGN_BOTTOM;
5436                 break;
5437
5438         case Tabular::M_VALIGN_MIDDLE:
5439         case Tabular::VALIGN_MIDDLE:
5440                 setVAlign = Tabular::LYX_VALIGN_MIDDLE;
5441                 break;
5442
5443         default:
5444                 break;
5445         }
5446
5447         cur.recordUndoInset(ATOMIC_UNDO, this);
5448
5449         getSelection(cur, sel_row_start, sel_row_end, sel_col_start, sel_col_end);
5450         row_type const row = tabular.cellRow(cur.idx());
5451         col_type const column = tabular.cellColumn(cur.idx());
5452         bool flag = true;
5453         Tabular::ltType ltt;
5454
5455         switch (feature) {
5456
5457         case Tabular::SET_TABULAR_WIDTH:
5458                 tabular.setTabularWidth(Length(value));
5459                 break;
5460
5461         case Tabular::SET_PWIDTH: {
5462                 Length const len(value);
5463                 tabular.setColumnPWidth(cur, cur.idx(), len);
5464                 if (len.zero()
5465                     && tabular.getAlignment(cur.idx(), true) == LYX_ALIGN_BLOCK)
5466                         tabularFeatures(cur, Tabular::ALIGN_CENTER, string());
5467                 break;
5468         }
5469
5470         case Tabular::SET_MPWIDTH:
5471                 tabular.setMColumnPWidth(cur, cur.idx(), Length(value));
5472                 break;
5473
5474         case Tabular::SET_MROFFSET:
5475                 tabular.setMROffset(cur, cur.idx(), Length(value));
5476                 break;
5477
5478         case Tabular::SET_SPECIAL_COLUMN:
5479         case Tabular::SET_SPECIAL_MULTICOLUMN:
5480                 if (value == "none")
5481                         tabular.setAlignSpecial(cur.idx(), docstring(), feature);
5482                 else
5483                         tabular.setAlignSpecial(cur.idx(), from_utf8(value), feature);
5484                 break;
5485
5486         case Tabular::APPEND_ROW:
5487                 // append the row into the tabular
5488                 tabular.appendRow(row);
5489                 break;
5490
5491         case Tabular::APPEND_COLUMN:
5492                 // append the column into the tabular
5493                 tabular.appendColumn(column);
5494                 cur.idx() = tabular.cellIndex(row, column);
5495                 break;
5496
5497         case Tabular::DELETE_ROW:
5498                 if (sel_row_end == tabular.nrows() - 1 && sel_row_start != 0) {
5499                         for (col_type c = 0; c < tabular.ncols(); c++)
5500                                 tabular.setBottomLine(tabular.cellIndex(sel_row_start - 1, c),
5501                                         tabular.bottomLine(tabular.cellIndex(sel_row_end, c)));
5502                 }
5503
5504                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5505                         tabular.deleteRow(sel_row_start);
5506                 if (sel_row_start >= tabular.nrows())
5507                         --sel_row_start;
5508                 cur.idx() = tabular.cellIndex(sel_row_start, column);
5509                 cur.pit() = 0;
5510                 cur.pos() = 0;
5511                 cur.setSelection(false);
5512                 break;
5513
5514         case Tabular::DELETE_COLUMN:
5515                 if (sel_col_end == tabular.ncols() - 1 && sel_col_start != 0) {
5516                         for (row_type r = 0; r < tabular.nrows(); r++)
5517                                 tabular.setRightLine(tabular.cellIndex(r, sel_col_start - 1),
5518                                         tabular.rightLine(tabular.cellIndex(r, sel_col_end)));
5519                 }
5520
5521                 if (sel_col_start == 0 && sel_col_end != tabular.ncols() - 1) {
5522                         for (row_type r = 0; r < tabular.nrows(); r++)
5523                                 tabular.setLeftLine(tabular.cellIndex(r, sel_col_end + 1),
5524                                         tabular.leftLine(tabular.cellIndex(r, 0)));
5525                 }
5526
5527                 for (col_type c = sel_col_start; c <= sel_col_end; ++c)
5528                         tabular.deleteColumn(sel_col_start);
5529                 if (sel_col_start >= tabular.ncols())
5530                         --sel_col_start;
5531                 cur.idx() = tabular.cellIndex(row, sel_col_start);
5532                 cur.pit() = 0;
5533                 cur.pos() = 0;
5534                 cur.setSelection(false);
5535                 break;
5536
5537         case Tabular::COPY_ROW:
5538                 tabular.copyRow(row);
5539                 break;
5540
5541         case Tabular::COPY_COLUMN:
5542                 tabular.copyColumn(column);
5543                 cur.idx() = tabular.cellIndex(row, column);
5544                 break;
5545
5546         case Tabular::MOVE_COLUMN_RIGHT:
5547                 tabular.moveColumn(column, Tabular::RIGHT);
5548                 cur.idx() = tabular.cellIndex(row, column + 1);
5549                 break;
5550
5551         case Tabular::MOVE_COLUMN_LEFT:
5552                 tabular.moveColumn(column, Tabular::LEFT);
5553                 cur.idx() = tabular.cellIndex(row, column - 1);
5554                 break;
5555
5556         case Tabular::MOVE_ROW_DOWN:
5557                 tabular.moveRow(row, Tabular::DOWN);
5558                 cur.idx() = tabular.cellIndex(row + 1, column);
5559                 break;
5560
5561         case Tabular::MOVE_ROW_UP:
5562                 tabular.moveRow(row, Tabular::UP);
5563                 cur.idx() = tabular.cellIndex(row - 1, column);
5564                 break;
5565
5566         case Tabular::SET_LINE_TOP:
5567         case Tabular::TOGGLE_LINE_TOP: {
5568                 bool lineSet = (feature == Tabular::SET_LINE_TOP)
5569                                ? (value == "true") : !tabular.topLine(cur.idx());
5570                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5571                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
5572                                 tabular.setTopLine(tabular.cellIndex(r, c), lineSet);
5573                 break;
5574         }
5575
5576         case Tabular::SET_LINE_BOTTOM:
5577         case Tabular::TOGGLE_LINE_BOTTOM: {
5578                 bool lineSet = (feature == Tabular::SET_LINE_BOTTOM)
5579                                ? (value == "true") : !tabular.bottomLine(cur.idx());
5580                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5581                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
5582                                 tabular.setBottomLine(tabular.cellIndex(r, c), lineSet);
5583                 break;
5584         }
5585
5586         case Tabular::SET_LINE_LEFT:
5587         case Tabular::TOGGLE_LINE_LEFT: {
5588                 bool lineSet = (feature == Tabular::SET_LINE_LEFT)
5589                                ? (value == "true") : !tabular.leftLine(cur.idx());
5590                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5591                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
5592                                 tabular.setLeftLine(tabular.cellIndex(r, c), lineSet);
5593                 break;
5594         }
5595
5596         case Tabular::SET_LINE_RIGHT:
5597         case Tabular::TOGGLE_LINE_RIGHT: {
5598                 bool lineSet = (feature == Tabular::SET_LINE_RIGHT)
5599                                ? (value == "true") : !tabular.rightLine(cur.idx());
5600                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5601                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
5602                                 tabular.setRightLine(tabular.cellIndex(r, c), lineSet);
5603                 break;
5604         }
5605
5606         case Tabular::M_ALIGN_LEFT:
5607         case Tabular::M_ALIGN_RIGHT:
5608         case Tabular::M_ALIGN_CENTER:
5609         case Tabular::ALIGN_LEFT:
5610         case Tabular::ALIGN_RIGHT:
5611         case Tabular::ALIGN_CENTER:
5612         case Tabular::ALIGN_BLOCK:
5613         case Tabular::ALIGN_DECIMAL:
5614                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5615                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
5616                                 tabular.setAlignment(tabular.cellIndex(r, c), setAlign,
5617                                 !tabular.getPWidth(c).zero());
5618                 break;
5619
5620         case Tabular::M_VALIGN_TOP:
5621         case Tabular::M_VALIGN_BOTTOM:
5622         case Tabular::M_VALIGN_MIDDLE:
5623                 flag = false;
5624         case Tabular::VALIGN_TOP:
5625         case Tabular::VALIGN_BOTTOM:
5626         case Tabular::VALIGN_MIDDLE:
5627                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5628                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
5629                                 tabular.setVAlignment(tabular.cellIndex(r, c), setVAlign, flag);
5630                 break;
5631
5632         case Tabular::SET_MULTICOLUMN: {
5633                 if (!cur.selection()) {
5634                         // just multicol for one single cell
5635                         // check whether we are completely in a multicol
5636                         if (!tabular.isMultiColumn(cur.idx()))
5637                                 tabular.setMultiColumn(cur.idx(), 1,
5638                                         tabular.rightLine(cur.idx()));
5639                         break;
5640                 }
5641                 // we have a selection so this means we just add all these
5642                 // cells to form a multicolumn cell
5643                 idx_type const s_start = cur.selBegin().idx();
5644                 row_type const col_start = tabular.cellColumn(s_start);
5645                 row_type const col_end = tabular.cellColumn(cur.selEnd().idx());
5646                 cur.idx() = tabular.setMultiColumn(s_start, col_end - col_start + 1,
5647                                                    tabular.rightLine(cur.selEnd().idx()));
5648                 cur.pit() = 0;
5649                 cur.pos() = 0;
5650                 cur.setSelection(false);
5651                 break;
5652         }
5653
5654         case Tabular::UNSET_MULTICOLUMN: {
5655                 if (!cur.selection()) {
5656                         if (tabular.isMultiColumn(cur.idx()))
5657                                 tabular.unsetMultiColumn(cur.idx());
5658                 }
5659                 break;
5660         }
5661
5662         case Tabular::MULTICOLUMN: {
5663                 if (!cur.selection()) {
5664                         if (tabular.isMultiColumn(cur.idx()))
5665                                 tabularFeatures(cur, Tabular::UNSET_MULTICOLUMN);
5666                         else
5667                                 tabularFeatures(cur, Tabular::SET_MULTICOLUMN);
5668                         break;
5669                 }
5670                 bool merge = false;
5671                 for (col_type c = sel_col_start; c <= sel_col_end; ++c) {
5672                         row_type const r = sel_row_start;
5673                         if (!tabular.isMultiColumn(tabular.cellIndex(r, c))
5674                             || (r > sel_row_start && !tabular.isPartOfMultiColumn(r, c)))
5675                                 merge = true;
5676                 }
5677                 // If the selection contains at least one singlecol cell
5678                 // or multiple multicol cells,
5679                 // we assume the user will merge is to a single multicol
5680                 if (merge)
5681                         tabularFeatures(cur, Tabular::SET_MULTICOLUMN);
5682                 else
5683                         tabularFeatures(cur, Tabular::UNSET_MULTICOLUMN);
5684                 break;
5685         }
5686
5687         case Tabular::SET_MULTIROW: {
5688                 if (!cur.selection()) {
5689                         // just multirow for one single cell
5690                         // check whether we are completely in a multirow
5691                         if (!tabular.isMultiRow(cur.idx()))
5692                                 tabular.setMultiRow(cur.idx(), 1,
5693                                                     tabular.bottomLine(cur.idx()));
5694                         break;
5695                 }
5696                 // we have a selection so this means we just add all this
5697                 // cells to form a multirow cell
5698                 idx_type const s_start = cur.selBegin().idx();
5699                 row_type const row_start = tabular.cellRow(s_start);
5700                 row_type const row_end = tabular.cellRow(cur.selEnd().idx());
5701                 cur.idx() = tabular.setMultiRow(s_start, row_end - row_start + 1,
5702                                                 tabular.bottomLine(cur.selEnd().idx()));
5703                 cur.pit() = 0;
5704                 cur.pos() = 0;
5705                 cur.setSelection(false);
5706                 break;
5707         }
5708
5709         case Tabular::UNSET_MULTIROW: {
5710                 if (!cur.selection()) {
5711                         if (tabular.isMultiRow(cur.idx()))
5712                                 tabular.unsetMultiRow(cur.idx());
5713                 }
5714                 break;
5715         }
5716
5717         case Tabular::MULTIROW: {
5718                 if (!cur.selection()) {
5719                         if (tabular.isMultiRow(cur.idx()))
5720                                 tabularFeatures(cur, Tabular::UNSET_MULTIROW);
5721                         else
5722                                 tabularFeatures(cur, Tabular::SET_MULTIROW);
5723                         break;
5724                 }
5725                 bool merge = false;
5726                 for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
5727                         col_type const c = sel_col_start;
5728                         if (!tabular.isMultiRow(tabular.cellIndex(r, c))
5729                             || (r > sel_row_start && !tabular.isPartOfMultiRow(r, c)))
5730                                 merge = true;
5731                 }
5732                 // If the selection contains at least one singlerow cell
5733                 // or multiple multirow cells,
5734                 // we assume the user will merge is to a single multirow
5735                 if (merge)
5736                         tabularFeatures(cur, Tabular::SET_MULTIROW);
5737                 else
5738                         tabularFeatures(cur, Tabular::UNSET_MULTIROW);
5739                 break;
5740         }
5741
5742         case Tabular::SET_ALL_LINES:
5743                 setLines = true;
5744         case Tabular::UNSET_ALL_LINES:
5745                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5746                         for (col_type c = sel_col_start; c <= sel_col_end; ++c) {
5747                                 idx_type const cell = tabular.cellIndex(r, c);
5748                                 tabular.setTopLine(cell, setLines);
5749                                 tabular.setBottomLine(cell, setLines);
5750                                 tabular.setRightLine(cell, setLines);
5751                                 tabular.setLeftLine(cell, setLines);
5752                         }
5753                 break;
5754
5755         case Tabular::SET_BORDER_LINES:
5756                 for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
5757                         tabular.setLeftLine(tabular.cellIndex(r, sel_col_start), true);
5758                         tabular.setRightLine(tabular.cellIndex(r, sel_col_end), true);
5759                 }
5760                 for (col_type c = sel_col_start; c <= sel_col_end; ++c) {
5761                         tabular.setTopLine(tabular.cellIndex(sel_row_start, c), true);
5762                         tabular.setBottomLine(tabular.cellIndex(sel_row_end, c), true);
5763                 }
5764                 break;
5765
5766         case Tabular::SET_LONGTABULAR:
5767                 tabular.is_long_tabular = true;
5768                 break;
5769
5770         case Tabular::UNSET_LONGTABULAR:
5771                 for (row_type r = 0; r < tabular.nrows(); ++r) {
5772                         if (tabular.ltCaption(r)) {
5773                                 cur.idx() = tabular.cellIndex(r, 0);
5774                                 cur.pit() = 0;
5775                                 cur.pos() = 0;
5776                                 tabularFeatures(cur, Tabular::TOGGLE_LTCAPTION);
5777                         }
5778                 }
5779                 tabular.is_long_tabular = false;
5780                 break;
5781
5782         case Tabular::SET_ROTATE_TABULAR:
5783                 tabular.rotate = convert<int>(value);
5784                 break;
5785
5786         case Tabular::UNSET_ROTATE_TABULAR:
5787                 tabular.rotate = 0;
5788                 break;
5789
5790         case Tabular::TOGGLE_ROTATE_TABULAR:
5791                 // when pressing the rotate button we default to 90° rotation
5792                 tabular.rotate != 0 ? tabular.rotate = 0 : tabular.rotate = 90;
5793                 break;
5794
5795         case Tabular::TABULAR_VALIGN_TOP:
5796                 tabular.tabular_valignment = Tabular::LYX_VALIGN_TOP;
5797                 break;
5798
5799         case Tabular::TABULAR_VALIGN_MIDDLE:
5800                 tabular.tabular_valignment = Tabular::LYX_VALIGN_MIDDLE;
5801                 break;
5802
5803         case Tabular::TABULAR_VALIGN_BOTTOM:
5804                 tabular.tabular_valignment = Tabular::LYX_VALIGN_BOTTOM;
5805                 break;
5806
5807         case Tabular::LONGTABULAR_ALIGN_LEFT:
5808                 tabular.longtabular_alignment = Tabular::LYX_LONGTABULAR_ALIGN_LEFT;
5809                 break;
5810
5811         case Tabular::LONGTABULAR_ALIGN_CENTER:
5812                 tabular.longtabular_alignment = Tabular::LYX_LONGTABULAR_ALIGN_CENTER;
5813                 break;
5814
5815         case Tabular::LONGTABULAR_ALIGN_RIGHT:
5816                 tabular.longtabular_alignment = Tabular::LYX_LONGTABULAR_ALIGN_RIGHT;
5817                 break;
5818
5819                 
5820
5821         case Tabular::SET_ROTATE_CELL:
5822                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5823                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
5824                                 tabular.setRotateCell(tabular.cellIndex(r, c), convert<int>(value));
5825                 break;
5826
5827         case Tabular::UNSET_ROTATE_CELL:
5828                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5829                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
5830                                 tabular.setRotateCell(tabular.cellIndex(r, c), 0);
5831                 break;
5832
5833         case Tabular::TOGGLE_ROTATE_CELL:
5834                 {
5835                 bool oneNotRotated = oneCellHasRotationState(false,
5836                         sel_row_start, sel_row_end, sel_col_start, sel_col_end);
5837
5838                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5839                         for (col_type c = sel_col_start; c <= sel_col_end; ++c) {
5840                                 // when pressing the rotate cell button we default to 90° rotation
5841                                 if (oneNotRotated)
5842                                         tabular.setRotateCell(tabular.cellIndex(r, c), 90);
5843                                 else
5844                                         tabular.setRotateCell(tabular.cellIndex(r, c), 0);
5845                         }
5846                 }
5847                 break;
5848
5849         case Tabular::SET_USEBOX: {
5850                 Tabular::BoxType val = Tabular::BoxType(convert<int>(value));
5851                 if (val == tabular.getUsebox(cur.idx()))
5852                         val = Tabular::BOX_NONE;
5853                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5854                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
5855                                 tabular.setUsebox(tabular.cellIndex(r, c), val);
5856                 break;
5857         }
5858
5859         case Tabular::UNSET_LTFIRSTHEAD:
5860                 flag = false;
5861         case Tabular::SET_LTFIRSTHEAD:
5862                 tabular.getRowOfLTFirstHead(row, ltt);
5863                 checkLongtableSpecial(ltt, value, flag);
5864                 tabular.setLTHead(row, flag, ltt, true);
5865                 break;
5866
5867         case Tabular::UNSET_LTHEAD:
5868                 flag = false;
5869         case Tabular::SET_LTHEAD:
5870                 tabular.getRowOfLTHead(row, ltt);
5871                 checkLongtableSpecial(ltt, value, flag);
5872                 tabular.setLTHead(row, flag, ltt, false);
5873                 break;
5874
5875         case Tabular::UNSET_LTFOOT:
5876                 flag = false;
5877         case Tabular::SET_LTFOOT:
5878                 tabular.getRowOfLTFoot(row, ltt);
5879                 checkLongtableSpecial(ltt, value, flag);
5880                 tabular.setLTFoot(row, flag, ltt, false);
5881                 break;
5882
5883         case Tabular::UNSET_LTLASTFOOT:
5884                 flag = false;
5885         case Tabular::SET_LTLASTFOOT:
5886                 tabular.getRowOfLTLastFoot(row, ltt);
5887                 checkLongtableSpecial(ltt, value, flag);
5888                 tabular.setLTFoot(row, flag, ltt, true);
5889                 break;
5890
5891         case Tabular::UNSET_LTNEWPAGE:
5892                 flag = false;
5893         case Tabular::SET_LTNEWPAGE:
5894                 tabular.setLTNewPage(row, flag);
5895                 break;
5896
5897         case Tabular::SET_LTCAPTION: {
5898                 if (tabular.ltCaption(row))
5899                         break;
5900                 cur.idx() = tabular.setLTCaption(row, true);
5901                 cur.pit() = 0;
5902                 cur.pos() = 0;
5903                 cur.setSelection(false);
5904                 // If a row is set as caption, then also insert
5905                 // a caption. Otherwise the LaTeX output is broken.
5906                 lyx::dispatch(FuncRequest(LFUN_INSET_SELECT_ALL));
5907                 lyx::dispatch(FuncRequest(LFUN_CAPTION_INSERT));
5908                 break;
5909         }
5910         
5911         case Tabular::UNSET_LTCAPTION: {
5912                 if (!tabular.ltCaption(row))
5913                         break;
5914                 cur.idx() = tabular.setLTCaption(row, false);
5915                 cur.pit() = 0;
5916                 cur.pos() = 0;
5917                 cur.setSelection(false);
5918                 FuncRequest fr(LFUN_INSET_DISSOLVE, "caption");
5919                 if (lyx::getStatus(fr).enabled())
5920                         lyx::dispatch(fr);
5921                 break;
5922         }
5923
5924         case Tabular::TOGGLE_LTCAPTION: {
5925                 if (tabular.ltCaption(row))
5926                         tabularFeatures(cur, Tabular::UNSET_LTCAPTION);
5927                 else
5928                         tabularFeatures(cur, Tabular::SET_LTCAPTION);
5929                 break;
5930         }
5931
5932         case Tabular::SET_BOOKTABS:
5933                 tabular.use_booktabs = true;
5934                 break;
5935
5936         case Tabular::UNSET_BOOKTABS:
5937                 tabular.use_booktabs = false;
5938                 break;
5939
5940         case Tabular::SET_TOP_SPACE: {
5941                 Length len;
5942                 if (value == "default")
5943                         for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5944                                 tabular.row_info[r].top_space_default = true;
5945                 else if (value == "none")
5946                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
5947                                 tabular.row_info[r].top_space_default = false;
5948                                 tabular.row_info[r].top_space = len;
5949                         }
5950                 else if (isValidLength(value, &len))
5951                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
5952                                 tabular.row_info[r].top_space_default = false;
5953                                 tabular.row_info[r].top_space = len;
5954                         }
5955                 break;
5956         }
5957
5958         case Tabular::SET_BOTTOM_SPACE: {
5959                 Length len;
5960                 if (value == "default")
5961                         for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5962                                 tabular.row_info[r].bottom_space_default = true;
5963                 else if (value == "none")
5964                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
5965                                 tabular.row_info[r].bottom_space_default = false;
5966                                 tabular.row_info[r].bottom_space = len;
5967                         }
5968                 else if (isValidLength(value, &len))
5969                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
5970                                 tabular.row_info[r].bottom_space_default = false;
5971                                 tabular.row_info[r].bottom_space = len;
5972                         }
5973                 break;
5974         }
5975
5976         case Tabular::SET_INTERLINE_SPACE: {
5977                 Length len;
5978                 if (value == "default")
5979                         for (row_type r = sel_row_start; r <= sel_row_end; ++r)
5980                                 tabular.row_info[r].interline_space_default = true;
5981                 else if (value == "none")
5982                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
5983                                 tabular.row_info[r].interline_space_default = false;
5984                                 tabular.row_info[r].interline_space = len;
5985                         }
5986                 else if (isValidLength(value, &len))
5987                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
5988                                 tabular.row_info[r].interline_space_default = false;
5989                                 tabular.row_info[r].interline_space = len;
5990                         }
5991                 break;
5992         }
5993
5994         case Tabular::SET_DECIMAL_POINT:
5995                 for (col_type c = sel_col_start; c <= sel_col_end; ++c)
5996                         tabular.column_info[c].decimal_point = from_utf8(value);
5997                 break;
5998
5999         // dummy stuff just to avoid warnings
6000         case Tabular::LAST_ACTION:
6001                 break;
6002         }
6003 }
6004
6005
6006 bool InsetTabular::copySelection(Cursor & cur)
6007 {
6008         if (!cur.selection())
6009                 return false;
6010
6011         row_type rs, re;
6012         col_type cs, ce;
6013         getSelection(cur, rs, re, cs, ce);
6014
6015         paste_tabular.reset(new Tabular(tabular));
6016
6017         for (row_type r = 0; r < rs; ++r)
6018                 paste_tabular->deleteRow(0);
6019
6020         row_type const rows = re - rs + 1;
6021         while (paste_tabular->nrows() > rows)
6022                 paste_tabular->deleteRow(rows);
6023
6024         for (col_type c = 0; c < cs; ++c)
6025                 paste_tabular->deleteColumn(0);
6026
6027         col_type const columns = ce - cs + 1;
6028         while (paste_tabular->ncols() > columns)
6029                 paste_tabular->deleteColumn(columns);
6030
6031         paste_tabular->setBuffer(tabular.buffer());
6032
6033         odocstringstream os;
6034         OutputParams const runparams(0);
6035         paste_tabular->plaintext(os, runparams, 0, true, '\t', INT_MAX);
6036         // Needed for the "Edit->Paste recent" menu and the system clipboard.
6037         cap::copySelection(cur, os.str());
6038
6039         // mark tabular stack dirty
6040         // FIXME: this is a workaround for bug 1919. Should be removed for 1.5,
6041         // when we (hopefully) have a one-for-all paste mechanism.
6042         // This must be called after cap::copySelection.
6043         dirtyTabularStack(true);
6044
6045         return true;
6046 }
6047
6048
6049 bool InsetTabular::pasteClipboard(Cursor & cur)
6050 {
6051         if (!paste_tabular)
6052                 return false;
6053         col_type actcol = tabular.cellColumn(cur.idx());
6054         row_type actrow = tabular.cellRow(cur.idx());
6055
6056         if (cur.selIsMultiCell()) {
6057                 row_type re;
6058                 col_type ce;
6059                 getSelection(cur, actrow, re, actcol, ce);
6060         }
6061
6062         for (row_type r1 = 0, r2 = actrow;
6063              r1 < paste_tabular->nrows() && r2 < tabular.nrows();
6064              ++r1, ++r2) {
6065                 for (col_type c1 = 0, c2 = actcol;
6066                     c1 < paste_tabular->ncols() && c2 < tabular.ncols();
6067                     ++c1, ++c2) {
6068                         if (paste_tabular->isPartOfMultiColumn(r1, c1) &&
6069                               tabular.isPartOfMultiColumn(r2, c2))
6070                                 continue;
6071                         if (paste_tabular->isPartOfMultiColumn(r1, c1)) {
6072                                 --c2;
6073                                 continue;
6074                         }
6075                         if (tabular.isPartOfMultiColumn(r2, c2)) {
6076                                 --c1;
6077                                 continue;
6078                         }
6079                         shared_ptr<InsetTableCell> inset(
6080                                 new InsetTableCell(*paste_tabular->cellInset(r1, c1)));
6081                         tabular.setCellInset(r2, c2, inset);
6082                         // FIXME?: why do we need to do this explicitly? (EL)
6083                         tabular.cellInset(r2, c2)->setBuffer(tabular.buffer());
6084
6085                         // FIXME: change tracking (MG)
6086                         inset->setChange(Change(buffer().params().trackChanges ?
6087                                                 Change::INSERTED : Change::UNCHANGED));
6088                         cur.pos() = 0;
6089                 }
6090         }
6091         return true;
6092 }
6093
6094
6095 void InsetTabular::cutSelection(Cursor & cur)
6096 {
6097         if (!cur.selection())
6098                 return;
6099
6100         row_type rs, re;
6101         col_type cs, ce;
6102         getSelection(cur, rs, re, cs, ce);
6103         for (row_type r = rs; r <= re; ++r) {
6104                 for (col_type c = cs; c <= ce; ++c) {
6105                         shared_ptr<InsetTableCell> t
6106                                 = cell(tabular.cellIndex(r, c));
6107                         if (buffer().params().trackChanges)
6108                                 // FIXME: Change tracking (MG)
6109                                 t->setChange(Change(Change::DELETED));
6110                         else
6111                                 t->clear();
6112                 }
6113         }
6114
6115         // cursor position might be invalid now
6116         if (cur.pit() > cur.lastpit())
6117                 cur.pit() = cur.lastpit();
6118         if (cur.pos() > cur.lastpos())
6119                 cur.pos() = cur.lastpos();
6120         cur.clearSelection();
6121 }
6122
6123
6124 bool InsetTabular::isRightToLeft(Cursor & cur) const
6125 {
6126         // LASSERT: It might be better to abandon this Buffer.
6127         LASSERT(cur.depth() > 1, return false);
6128         Paragraph const & parentpar = cur[cur.depth() - 2].paragraph();
6129         pos_type const parentpos = cur[cur.depth() - 2].pos();
6130         return parentpar.getFontSettings(buffer().params(),
6131                                          parentpos).language()->rightToLeft();
6132 }
6133
6134
6135 docstring InsetTabular::asString(idx_type stidx, idx_type enidx, 
6136                                  bool intoInsets)
6137 {
6138         LASSERT(stidx <= enidx, return docstring());
6139         docstring retval;
6140         col_type const col1 = tabular.cellColumn(stidx);
6141         col_type const col2 = tabular.cellColumn(enidx);
6142         row_type const row1 = tabular.cellRow(stidx);
6143         row_type const row2 = tabular.cellRow(enidx);
6144         bool first = true;
6145         for (col_type col = col1; col <= col2; col++)
6146                 for (row_type row = row1; row <= row2; row++) {
6147                         if (!first)
6148                                 retval += "\n";
6149                         else
6150                                 first = false;
6151                         retval += tabular.cellInset(row, col)->asString(intoInsets);
6152                 }
6153         return retval;
6154 }
6155
6156
6157 void InsetTabular::getSelection(Cursor & cur,
6158         row_type & rs, row_type & re, col_type & cs, col_type & ce) const
6159 {
6160         CursorSlice const & beg = cur.selBegin();
6161         CursorSlice const & end = cur.selEnd();
6162         cs = tabular.cellColumn(beg.idx());
6163         ce = tabular.cellColumn(end.idx());
6164         if (cs > ce)
6165                 swap(cs, ce);
6166
6167         rs = tabular.cellRow(beg.idx());
6168         re = tabular.cellRow(end.idx());
6169         if (rs > re)
6170                 swap(rs, re);
6171 }
6172
6173
6174 Text * InsetTabular::getText(int idx) const
6175 {
6176         return size_t(idx) < nargs() ? cell(idx)->getText(0) : 0;
6177 }
6178
6179
6180 void InsetTabular::setChange(Change const & change)
6181 {
6182         for (idx_type idx = 0; idx < nargs(); ++idx)
6183                 cell(idx)->setChange(change);
6184 }
6185
6186
6187 void InsetTabular::acceptChanges()
6188 {
6189         for (idx_type idx = 0; idx < nargs(); ++idx)
6190                 cell(idx)->acceptChanges();
6191 }
6192
6193
6194 void InsetTabular::rejectChanges()
6195 {
6196         for (idx_type idx = 0; idx < nargs(); ++idx)
6197                 cell(idx)->rejectChanges();
6198 }
6199
6200
6201 bool InsetTabular::allowParagraphCustomization(idx_type cell) const
6202 {
6203         return tabular.getPWidth(cell).zero();
6204 }
6205
6206
6207 bool InsetTabular::forcePlainLayout(idx_type cell) const
6208 {
6209         return !tabular.getPWidth(cell).zero();
6210 }
6211
6212
6213 bool InsetTabular::insertPlaintextString(BufferView & bv, docstring const & buf,
6214                                      bool usePaste)
6215 {
6216         if (buf.length() <= 0)
6217                 return true;
6218
6219         col_type cols = 1;
6220         row_type rows = 1;
6221         col_type maxCols = 1;
6222         size_t const len = buf.length();
6223         size_t p = 0;
6224
6225         while (p < len &&
6226                (p = buf.find_first_of(from_ascii("\t\n"), p)) != docstring::npos) {
6227                 switch (buf[p]) {
6228                 case '\t':
6229                         ++cols;
6230                         break;
6231                 case '\n':
6232                         if (p + 1 < len)
6233                                 ++rows;
6234                         maxCols = max(cols, maxCols);
6235                         cols = 1;
6236                         break;
6237                 }
6238                 ++p;
6239         }
6240         maxCols = max(cols, maxCols);
6241         Tabular * loctab;
6242         idx_type cell = 0;
6243         col_type ocol = 0;
6244         row_type row = 0;
6245         if (usePaste) {
6246                 paste_tabular.reset(new Tabular(buffer_, rows, maxCols));
6247                 loctab = paste_tabular.get();
6248                 cols = 0;
6249                 dirtyTabularStack(true);
6250         } else {
6251                 loctab = &tabular;
6252                 cell = bv.cursor().idx();
6253                 ocol = tabular.cellColumn(cell);
6254                 row = tabular.cellRow(cell);
6255         }
6256
6257         size_t op = 0;
6258         idx_type const cells = loctab->numberofcells;
6259         p = 0;
6260         cols = ocol;
6261         rows = loctab->nrows();
6262         col_type const columns = loctab->ncols();
6263
6264         while (cell < cells && p < len && row < rows &&
6265                (p = buf.find_first_of(from_ascii("\t\n"), p)) != docstring::npos)
6266         {
6267                 if (p >= len)
6268                         break;
6269                 switch (buf[p]) {
6270                 case '\t':
6271                         // we can only set this if we are not too far right
6272                         if (cols < columns) {
6273                                 shared_ptr<InsetTableCell> inset = loctab->cellInset(cell);
6274                                 Font const font = bv.textMetrics(&inset->text()).
6275                                         displayFont(0, 0);
6276                                 inset->setText(buf.substr(op, p - op), font,
6277                                                buffer().params().trackChanges);
6278                                 ++cols;
6279                                 ++cell;
6280                         }
6281                         break;
6282                 case '\n':
6283                         // we can only set this if we are not too far right
6284                         if (cols < columns) {
6285                                 shared_ptr<InsetTableCell> inset = tabular.cellInset(cell);
6286                                 Font const font = bv.textMetrics(&inset->text()).
6287                                         displayFont(0, 0);
6288                                 inset->setText(buf.substr(op, p - op), font,
6289                                                buffer().params().trackChanges);
6290                         }
6291                         cols = ocol;
6292                         ++row;
6293                         if (row < rows)
6294                                 cell = loctab->cellIndex(row, cols);
6295                         break;
6296                 }
6297                 ++p;
6298                 op = p;
6299         }
6300         // check for the last cell if there is no trailing '\n'
6301         if (cell < cells && op < len) {
6302                 shared_ptr<InsetTableCell> inset = loctab->cellInset(cell);
6303                 Font const font = bv.textMetrics(&inset->text()).displayFont(0, 0);
6304                 inset->setText(buf.substr(op, len - op), font,
6305                         buffer().params().trackChanges);
6306         }
6307         return true;
6308 }
6309
6310
6311 void InsetTabular::addPreview(DocIterator const & inset_pos,
6312         PreviewLoader & loader) const
6313 {
6314         DocIterator cell_pos = inset_pos;
6315
6316         cell_pos.push_back(CursorSlice(*const_cast<InsetTabular *>(this)));
6317         for (row_type r = 0; r < tabular.nrows(); ++r) {
6318                 for (col_type c = 0; c < tabular.ncols(); ++c) {
6319                         cell_pos.top().idx() = tabular.cellIndex(r, c);
6320                         tabular.cellInset(r, c)->addPreview(cell_pos, loader);
6321                 }
6322         }
6323 }
6324
6325
6326 bool InsetTabular::completionSupported(Cursor const & cur) const
6327 {
6328         Cursor const & bvCur = cur.bv().cursor();
6329         if (&bvCur.inset() != this)
6330                 return false;
6331         return cur.text()->completionSupported(cur);
6332 }
6333
6334
6335 bool InsetTabular::inlineCompletionSupported(Cursor const & cur) const
6336 {
6337         return completionSupported(cur);
6338 }
6339
6340
6341 bool InsetTabular::automaticInlineCompletion() const
6342 {
6343         return lyxrc.completion_inline_text;
6344 }
6345
6346
6347 bool InsetTabular::automaticPopupCompletion() const
6348 {
6349         return lyxrc.completion_popup_text;
6350 }
6351
6352
6353 bool InsetTabular::showCompletionCursor() const
6354 {
6355         return lyxrc.completion_cursor_text;
6356 }
6357
6358
6359 CompletionList const * InsetTabular::createCompletionList(Cursor const & cur) const
6360 {
6361         return completionSupported(cur) ? cur.text()->createCompletionList(cur) : 0;
6362 }
6363
6364
6365 docstring InsetTabular::completionPrefix(Cursor const & cur) const
6366 {
6367         if (!completionSupported(cur))
6368                 return docstring();
6369         return cur.text()->completionPrefix(cur);
6370 }
6371
6372
6373 bool InsetTabular::insertCompletion(Cursor & cur, docstring const & s, bool finished)
6374 {
6375         if (!completionSupported(cur))
6376                 return false;
6377
6378         return cur.text()->insertCompletion(cur, s, finished);
6379 }
6380
6381
6382 void InsetTabular::completionPosAndDim(Cursor const & cur, int & x, int & y, 
6383                                     Dimension & dim) const
6384 {
6385         TextMetrics const & tm = cur.bv().textMetrics(cur.text());
6386         tm.completionPosAndDim(cur, x, y, dim);
6387 }
6388
6389
6390 void InsetTabular::string2params(string const & in, InsetTabular & inset)
6391 {
6392         istringstream data(in);
6393         Lexer lex;
6394         lex.setStream(data);
6395
6396         if (in.empty())
6397                 return;
6398
6399         string token;
6400         lex >> token;
6401         if (!lex || token != "tabular") {
6402                 LYXERR0("Expected arg 1 to be \"tabular\" in " << in);
6403                 return;
6404         }
6405
6406         // This is part of the inset proper that is usually swallowed
6407         // by Buffer::readInset
6408         lex >> token;
6409         if (!lex || token != "Tabular") {
6410                 LYXERR0("Expected arg 2 to be \"Tabular\" in " << in);
6411                 return;
6412         }
6413
6414         inset.read(lex);
6415 }
6416
6417
6418 string InsetTabular::params2string(InsetTabular const & inset)
6419 {
6420         ostringstream data;
6421         data << "tabular" << ' ';
6422         inset.write(data);
6423         data << "\\end_inset\n";
6424         return data.str();
6425 }
6426
6427
6428 } // namespace lyx