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