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