]> git.lyx.org Git - lyx.git/blob - src/insets/InsetTabular.cpp
Does not compile on older gcc.
[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         if (cell + 1 < numberofcells)
2193                 return false;
2194         return true;
2195 }
2196
2197
2198 Tabular::idx_type Tabular::cellAbove(idx_type cell) const
2199 {
2200         if (cellRow(cell) == 0)
2201                 return cell;
2202
2203         col_type const col = cellColumn(cell);
2204         row_type r = cellRow(cell) - 1;
2205         while (r > 0 && cell_info[r][col].multirow == CELL_PART_OF_MULTIROW)
2206                 --r;
2207
2208         return cell_info[r][col].cellno;
2209 }
2210
2211
2212 Tabular::idx_type Tabular::cellBelow(idx_type cell) const
2213 {
2214         row_type const nextrow = cellRow(cell) + rowSpan(cell);
2215         if (nextrow < nrows())
2216                 return cell_info[nextrow][cellColumn(cell)].cellno;
2217         return cell;
2218 }
2219
2220
2221 Tabular::idx_type Tabular::cellIndex(row_type row, col_type column) const
2222 {
2223         LASSERT(column != npos && column < ncols(), column = 0);
2224         LASSERT(row != npos && row < nrows(), row = 0);
2225         return cell_info[row][column].cellno;
2226 }
2227
2228
2229 void Tabular::setUsebox(idx_type cell, BoxType type)
2230 {
2231         cellInfo(cell).usebox = type;
2232 }
2233
2234
2235 Tabular::BoxType Tabular::getUsebox(idx_type cell) const
2236 {
2237         if (getRotateCell(cell) == 0
2238             && ((!column_info[cellColumn(cell)].p_width.zero() && !isMultiColumn(cell)) ||
2239                 (isMultiColumn(cell) && !cellInfo(cell).p_width.zero())))
2240                 return BOX_NONE;
2241         if (cellInfo(cell).usebox > 1)
2242                 return cellInfo(cell).usebox;
2243         return useBox(cell);
2244 }
2245
2246
2247 ///
2248 //  This are functions used for the longtable support
2249 ///
2250 void Tabular::setLTHead(row_type row, bool flag, ltType const & hd,
2251                            bool first)
2252 {
2253         if (first) {
2254                 endfirsthead = hd;
2255                 if (hd.set)
2256                         row_info[row].endfirsthead = flag;
2257         } else {
2258                 endhead = hd;
2259                 if (hd.set)
2260                         row_info[row].endhead = flag;
2261         }
2262 }
2263
2264
2265 bool Tabular::getRowOfLTHead(row_type row, ltType & hd) const
2266 {
2267         hd = endhead;
2268         hd.set = haveLTHead();
2269         return row_info[row].endhead;
2270 }
2271
2272
2273 bool Tabular::getRowOfLTFirstHead(row_type row, ltType & hd) const
2274 {
2275         hd = endfirsthead;
2276         hd.set = haveLTFirstHead();
2277         return row_info[row].endfirsthead;
2278 }
2279
2280
2281 void Tabular::setLTFoot(row_type row, bool flag, ltType const & fd,
2282                            bool last)
2283 {
2284         if (last) {
2285                 endlastfoot = fd;
2286                 if (fd.set)
2287                         row_info[row].endlastfoot = flag;
2288         } else {
2289                 endfoot = fd;
2290                 if (fd.set)
2291                         row_info[row].endfoot = flag;
2292         }
2293 }
2294
2295
2296 bool Tabular::getRowOfLTFoot(row_type row, ltType & fd) const
2297 {
2298         fd = endfoot;
2299         fd.set = haveLTFoot();
2300         return row_info[row].endfoot;
2301 }
2302
2303
2304 bool Tabular::getRowOfLTLastFoot(row_type row, ltType & fd) const
2305 {
2306         fd = endlastfoot;
2307         fd.set = haveLTLastFoot();
2308         return row_info[row].endlastfoot;
2309 }
2310
2311
2312 void Tabular::setLTNewPage(row_type row, bool what)
2313 {
2314         row_info[row].newpage = what;
2315 }
2316
2317
2318 bool Tabular::getLTNewPage(row_type row) const
2319 {
2320         return row_info[row].newpage;
2321 }
2322
2323
2324 bool Tabular::haveLTHead(bool withcaptions) const
2325 {
2326         if (!is_long_tabular)
2327                 return false;
2328         for (row_type i = 0; i < nrows(); ++i)
2329                 if (row_info[i].endhead &&
2330                     (withcaptions || !row_info[i].caption))
2331                         return true;
2332         return false;
2333 }
2334
2335
2336 bool Tabular::haveLTFirstHead(bool withcaptions) const
2337 {
2338         if (!is_long_tabular || endfirsthead.empty)
2339                 return false;
2340         for (row_type r = 0; r < nrows(); ++r)
2341                 if (row_info[r].endfirsthead &&
2342                     (withcaptions || !row_info[r].caption))
2343                         return true;
2344         return false;
2345 }
2346
2347
2348 bool Tabular::haveLTFoot(bool withcaptions) const
2349 {
2350         if (!is_long_tabular)
2351                 return false;
2352         for (row_type r = 0; r < nrows(); ++r)
2353                 if (row_info[r].endfoot &&
2354                     (withcaptions || !row_info[r].caption))
2355                         return true;
2356         return false;
2357 }
2358
2359
2360 bool Tabular::haveLTLastFoot(bool withcaptions) const
2361 {
2362         if (!is_long_tabular || endlastfoot.empty)
2363                 return false;
2364         for (row_type r = 0; r < nrows(); ++r)
2365                 if (row_info[r].endlastfoot &&
2366                     (withcaptions || !row_info[r].caption))
2367                         return true;
2368         return false;
2369 }
2370
2371
2372 Tabular::idx_type Tabular::setLTCaption(Cursor & cur, row_type row, bool what)
2373 {
2374         idx_type i = getFirstCellInRow(row);
2375         if (what) {
2376                 setMultiColumn(cur, i, numberOfCellsInRow(row), false);
2377                 setTopLine(i, false);
2378                 setBottomLine(i, false);
2379                 setLeftLine(i, false);
2380                 setRightLine(i, false);
2381                 if (!row_info[row].endfirsthead && !row_info[row].endhead &&
2382                     !row_info[row].endfoot && !row_info[row].endlastfoot) {
2383                         setLTHead(row, true, endfirsthead, true);
2384                         row_info[row].endfirsthead = true;
2385                 }
2386         } else {
2387                 unsetMultiColumn(i);
2388                 // When unsetting a caption row, also all existing
2389                 // captions in this row must be dissolved.
2390         }
2391         row_info[row].caption = what;
2392         return i;
2393 }
2394
2395
2396 bool Tabular::ltCaption(row_type row) const
2397 {
2398         return row_info[row].caption;
2399 }
2400
2401
2402 bool Tabular::haveLTCaption(CaptionType captiontype) const
2403 {
2404         if (!is_long_tabular)
2405                 return false;
2406         for (row_type r = 0; r < nrows(); ++r) {
2407                 if (row_info[r].caption) {
2408                         switch (captiontype) {
2409                         case CAPTION_FIRSTHEAD:
2410                                 if (row_info[r].endfirsthead)
2411                                         return true;
2412                                 break;
2413                         case CAPTION_HEAD:
2414                                 if (row_info[r].endhead)
2415                                         return true;
2416                                 break;
2417                         case CAPTION_FOOT:
2418                                 if (row_info[r].endfoot)
2419                                         return true;
2420                                 break;
2421                         case CAPTION_LASTFOOT:
2422                                 if (row_info[r].endlastfoot)
2423                                         return true;
2424                                 break;
2425                         case CAPTION_ANY:
2426                                 return true;
2427                         }
2428                 }
2429         }
2430         return false;
2431 }
2432
2433
2434 // end longtable support functions
2435
2436 void Tabular::setRowAscent(row_type row, int height)
2437 {
2438         if (row >= nrows() || row_info[row].ascent == height)
2439                 return;
2440         row_info[row].ascent = height;
2441 }
2442
2443
2444 void Tabular::setRowDescent(row_type row, int height)
2445 {
2446         if (row >= nrows() || row_info[row].descent == height)
2447                 return;
2448         row_info[row].descent = height;
2449 }
2450
2451
2452 int Tabular::rowAscent(row_type row) const
2453 {
2454         LASSERT(row < nrows(), row = 0);
2455         return row_info[row].ascent;
2456 }
2457
2458
2459 int Tabular::rowDescent(row_type row) const
2460 {
2461         LASSERT(row < nrows(), row = 0);
2462         return row_info[row].descent;
2463 }
2464
2465
2466 int Tabular::height() const
2467 {
2468         int height = 0;
2469         for (row_type row = 0; row < nrows(); ++row)
2470                 height += rowAscent(row) + rowDescent(row) +
2471                         interRowSpace(row);
2472         return height;
2473 }
2474
2475
2476 bool Tabular::isPartOfMultiColumn(row_type row, col_type column) const
2477 {
2478         LASSERT(row < nrows(), return false);
2479         LASSERT(column < ncols(), return false);
2480         return cell_info[row][column].multicolumn == CELL_PART_OF_MULTICOLUMN;
2481 }
2482
2483
2484 bool Tabular::isPartOfMultiRow(row_type row, col_type column) const
2485 {
2486         LASSERT(row < nrows(), return false);
2487         LASSERT(column < ncols(), return false);
2488         return cell_info[row][column].multirow == CELL_PART_OF_MULTIROW;
2489 }
2490
2491
2492 void Tabular::TeXTopHLine(otexstream & os, row_type row, list<col_type> columns,
2493                           list<col_type> logical_columns) const
2494 {
2495         // we only output complete row lines and the 1st row here, the rest
2496         // is done in Tabular::TeXBottomHLine(...)
2497
2498         // get for each column the topline (if any)
2499         map<col_type, bool> topline, topltrims, toprtrims;
2500         col_type nset = 0;
2501         bool have_trims = false;
2502         for (auto const & c : columns) {
2503                 topline[c] = topLine(cellIndex(row, c));
2504                 topltrims[c] = topLineTrim(cellIndex(row, c)).first;
2505                 toprtrims[c] = topLineTrim(cellIndex(row, c)).second;
2506                 // If cell is part of a multirow and not the first cell of the
2507                 // multirow, no line must be drawn.
2508                 if (row != 0)
2509                         if (isMultiRow(cellIndex(row, c))
2510                             && cell_info[row][c].multirow != CELL_BEGIN_OF_MULTIROW) {
2511                                 topline[c] = false;
2512                                 topltrims[c] = false;
2513                                 toprtrims[c] = false;
2514                         }
2515                 // copy trimming to multicolumn parts
2516                 if (isPartOfMultiColumn(row, c)) {
2517                         topltrims[c] = topltrims[c-1];
2518                         toprtrims[c] = toprtrims[c-1];
2519                 }
2520                 if (topline.find(c) != topline.end() && topline.find(c)->second)
2521                         ++nset;
2522                 if ((topltrims.find(c) != topltrims.end() && topltrims.find(c)->second)
2523                      || (toprtrims.find(c) != toprtrims.end() && toprtrims.find(c)->second))
2524                         have_trims = true;
2525         }
2526
2527         // do nothing if empty first row, or incomplete row line after
2528         row_type first = getFirstRow(!buffer().params().output_changes);
2529         if ((row == first && nset == 0) || (row > first && nset != columns.size()))
2530                 return;
2531
2532         // Is this the actual first row (excluding longtable caption row)?
2533         bool const realfirstrow = (row == first
2534                                    || (is_long_tabular && row == first + 1 && ltCaption(first)));
2535
2536         // only output complete row lines and the 1st row's clines
2537         if (nset == columns.size() && !have_trims) {
2538                 if (use_booktabs) {
2539                         os << (realfirstrow ? "\\toprule " : "\\midrule ");
2540                 } else {
2541                         os << "\\hline ";
2542                 }
2543         } else if (realfirstrow || have_trims) {
2544                 string const cline = use_booktabs ? "\\cmidrule" : "\\cline";
2545                 col_type c = 0;
2546                 std::list<col_type>::const_iterator it1 = logical_columns.begin();
2547                 std::list<col_type>::const_iterator it2 = columns.begin();
2548                 // We need to iterate over the logical columns here, but take care for
2549                 // bidi swapping
2550                 for (; it1 != logical_columns.end() && it2 != columns.end(); ++it1, ++it2) {
2551                         col_type cl = *it1;
2552                         if (cl < c)
2553                                 continue;
2554                         c = cl;
2555                         if (topline.find(c)->second) {
2556                                 col_type offset = 0;
2557                                 for (col_type j = 0 ; j < c; ++j)
2558                                         if (column_info[j].alignment == LYX_ALIGN_DECIMAL)
2559                                                 ++offset;
2560                                 // If the two iterators differ, we are in bidi with swapped columns
2561                                 col_type firstcol = (*it1 == *it2) ? c + 1 + offset : columns.size() - c + offset;
2562                                 while (isPartOfMultiColumn(row, c))
2563                                         ++c;
2564                                 string trim;
2565                                 if (topltrims.find(c) != topltrims.end()
2566                                      && topltrims.find(c)->second)
2567                                         trim = "l";
2568                                 col_type cstart = c;
2569                                 for ( ; c < ncols() - 1 && topline.find(c + 1)->second ; ++c) {
2570                                         if (isMultiColumn(cellIndex(row, c))
2571                                             && c < ncols() - 1 && isPartOfMultiColumn(row, c + 1))
2572                                                 continue;
2573                                         if (c > cstart && topltrims.find(c) != topltrims.end()
2574                                                         && topltrims.find(c)->second) {
2575                                                 if (!isPartOfMultiColumn(row, c))
2576                                                         --c;
2577                                                 break;
2578                                         } else if (toprtrims.find(c) != toprtrims.end()
2579                                                    && toprtrims.find(c)->second)
2580                                                 break;
2581                                 }
2582
2583                                 for (col_type j = cstart ; j < c ; ++j)
2584                                         if (column_info[j].alignment == LYX_ALIGN_DECIMAL)
2585                                                 ++offset;
2586                                 col_type lastcol = (*it1 == *it2) ? c + 1 + offset : columns.size() - c + offset;
2587                                 if (toprtrims.find(c) != toprtrims.end()
2588                                     && toprtrims.find(c)->second)
2589                                         trim += "r";
2590
2591                                 os << cline;
2592                                 if (!trim.empty())
2593                                         os << "(" << trim << ")";
2594                                 if (firstcol > lastcol)
2595                                         // This can happen with bidi (swapped columns)
2596                                         os << "{" << lastcol << '-' << firstcol << "}";
2597                                 else
2598                                         os << "{" << firstcol << '-' << lastcol << "}";
2599                                 if (c == columns.size() - 1)
2600                                         break;
2601                                 ++c;
2602                         }
2603                 }
2604         }
2605         os << "\n";
2606 }
2607
2608
2609 void Tabular::TeXBottomHLine(otexstream & os, row_type row, list<col_type> columns,
2610                              list<col_type> logical_columns) const
2611 {
2612         // we output bottomlines of row r and the toplines of row r+1
2613         // if the latter do not span the whole tabular
2614
2615         // get the bottomlines of row r, and toplines in next row
2616         bool lastrow = row == getLastRow(!buffer().params().output_changes);
2617         map<col_type, bool> bottomline, topline, topltrims, toprtrims, bottomltrims, bottomrtrims;
2618         bool nextrowset = true;
2619         for (auto const & c : columns) {
2620                 idx_type const idx = cellIndex(row, c);
2621                 bottomline[c] = bottomLine(cellIndex(row, c));
2622                 bottomltrims[c] = bottomLineTrim(idx).first;
2623                 bottomrtrims[c] = bottomLineTrim(idx).second;
2624                 topline[c] =  !lastrow && topLine(cellIndex(row + 1, c));
2625                 topltrims[c] = !lastrow && topLineTrim(cellIndex(row + 1, c)).first;
2626                 toprtrims[c] = !lastrow && topLineTrim(cellIndex(row + 1, c)).second;
2627                 // If cell is part of a multirow and not the last cell of the
2628                 // multirow, no line must be drawn.
2629                 if (!lastrow)
2630                         if (isMultiRow(cellIndex(row, c))
2631                             && isMultiRow(cellIndex(row + 1, c))
2632                             && cell_info[row + 1][c].multirow != CELL_BEGIN_OF_MULTIROW) {
2633                                 bottomline[c] = false;
2634                                 topline[c] = false;
2635                                 bottomltrims[c] = false;
2636                                 bottomrtrims[c] = false;
2637                                 topltrims[c] = false;
2638                                 toprtrims[c] = false;
2639                         }
2640                 // copy trimming in multicolumn parts
2641                 if (isPartOfMultiColumn(row, c)) {
2642                         topltrims[c] = topltrims[c-1];
2643                         toprtrims[c] = toprtrims[c-1];
2644                         bottomltrims[c] = bottomltrims[c-1];
2645                         bottomrtrims[c] = bottomrtrims[c-1];
2646                 }
2647                         
2648                 nextrowset &= topline.find(c) != topline.end() && topline.find(c)->second;
2649         }
2650
2651         // combine this row's bottom lines and next row's toplines if necessary
2652         col_type nset = 0;
2653         bool have_trims = false;
2654         for (auto const & c : columns) {
2655                 if (!nextrowset)
2656                         bottomline[c] = bottomline.find(c)->second || topline.find(c)->second;
2657                 bottomltrims[c] = (bottomltrims.find(c) != bottomltrims.end() && bottomltrims.find(c)->second)
2658                                 || (topltrims.find(c) != topltrims.end() && topltrims.find(c)->second);
2659                 bottomrtrims[c] = (bottomrtrims.find(c) != bottomrtrims.end() && bottomrtrims.find(c)->second)
2660                                 || (toprtrims.find(c) != toprtrims.end() && toprtrims.find(c)->second);
2661                 if (bottomline.find(c)->second)
2662                         ++nset;
2663                 if ((bottomltrims.find(c) != bottomltrims.end() && bottomltrims.find(c)->second)
2664                      || (bottomrtrims.find(c) != bottomrtrims.end() && bottomrtrims.find(c)->second))
2665                         have_trims = true;
2666         }
2667
2668         // do nothing if empty, OR incomplete row line with a topline in next row
2669         if (nset == 0 || (nextrowset && nset != columns.size()))
2670                 return;
2671
2672         if (nset == columns.size() && !have_trims) {
2673                 if (use_booktabs)
2674                         os << (lastrow ? "\\bottomrule" : "\\midrule");
2675                 else
2676                         os << "\\hline ";
2677         } else {
2678                 string const cline = use_booktabs ? "\\cmidrule" : "\\cline";
2679                 col_type c = 0;
2680                 std::list<col_type>::const_iterator it1 = logical_columns.begin();
2681                 std::list<col_type>::const_iterator it2 = columns.begin();
2682                 // We need to iterate over the logical columns here, but take care for
2683                 // bidi swapping
2684                 for (; it1 != logical_columns.end() && it2 != columns.end(); ++it1, ++it2) {
2685                         col_type cl = *it1;
2686                         if (cl < c)
2687                                 continue;
2688                         c = cl;
2689                         if (bottomline.find(c)->second) {
2690                                 col_type offset = 0;
2691                                 for (col_type j = 0 ; j < c; ++j)
2692                                         if (column_info[j].alignment == LYX_ALIGN_DECIMAL)
2693                                                 ++offset;
2694                                 // If the two iterators differ, we are in bidi with swapped columns
2695                                 col_type firstcol = (*it1 == *it2) ? c + 1 + offset : columns.size() - c + offset;
2696                                 while (isPartOfMultiColumn(row, c))
2697                                         ++c;
2698                                 string trim;
2699                                 if (bottomltrims.find(c) != bottomltrims.end()
2700                                      && bottomltrims.find(c)->second)
2701                                         trim = "l";
2702                                 col_type cstart = c;
2703                                 for ( ; c < ncols() - 1 && bottomline.find(c + 1)->second ; ++c) {
2704                                         if (isMultiColumn(cellIndex(row, c))
2705                                             && c < ncols() - 1
2706                                             && isPartOfMultiColumn(row, c + 1))
2707                                                 continue;
2708                                         if (c > cstart
2709                                             && bottomltrims.find(c) != bottomltrims.end()
2710                                             && bottomltrims.find(c)->second) {
2711                                                 if (!isPartOfMultiColumn(row, c))
2712                                                         --c;
2713                                                 break;
2714                                         } else if (bottomrtrims.find(c) != bottomrtrims.end()
2715                                                    && bottomrtrims.find(c)->second)
2716                                                 break;
2717                                 }
2718
2719                                 for (col_type j = cstart ; j < c ; ++j)
2720                                         if (column_info[j].alignment == LYX_ALIGN_DECIMAL)
2721                                                 ++offset;
2722                                 col_type lastcol = (*it1 == *it2) ? c + 1 + offset : columns.size() - c + offset;
2723                                 if (bottomrtrims.find(c) != bottomrtrims.end()
2724                                     && bottomrtrims.find(c)->second)
2725                                         trim += "r";
2726
2727                                 os << cline;
2728                                 if (!trim.empty())
2729                                         os << "(" << trim << ")";
2730                                 if (firstcol > lastcol)
2731                                         // This can happen with bidi (swapped columns)
2732                                         os << "{" << lastcol << '-' << firstcol << "}";
2733                                 else
2734                                         os << "{" << firstcol << '-' << lastcol << "}";
2735                                 if (c == columns.size() - 1)
2736                                         break;
2737                                 ++c;
2738                         }
2739                 }
2740         }
2741         os << "\n";
2742 }
2743
2744
2745 void Tabular::TeXCellPreamble(otexstream & os, idx_type cell,
2746                               bool & ismulticol, bool & ismultirow,
2747                               bool const bidi) const
2748 {
2749         row_type const r = cellRow(cell);
2750         if (is_long_tabular && row_info[r].caption)
2751                 return;
2752
2753         Tabular::VAlignment valign =  getVAlignment(cell, !isMultiColumn(cell));
2754         LyXAlignment align = getAlignment(cell, !isMultiColumn(cell));
2755         // figure out how to set the lines
2756         // we always set double lines to the right of the cell
2757         // or left in bidi RTL, respectively.
2758         col_type const c = cellColumn(cell);
2759         col_type const nextcol = c + columnSpan(cell);
2760         bool const decimal = column_info[c].alignment == LYX_ALIGN_DECIMAL;
2761         bool colright = columnRightLine(c);
2762         bool colleft = columnLeftLine(c);
2763         bool nextcolleft = nextcol < ncols() && columnLeftLine(nextcol);
2764         bool nextcellleft = nextcol < ncols()
2765                 && leftLine(cellIndex(r, nextcol));
2766         bool coldouble = colright && nextcolleft;
2767         bool celldouble = rightLine(cell) && nextcellleft;
2768
2769         ismulticol = (isMultiColumn(cell)
2770                       || (c == 0 && colleft != leftLine(cell))
2771                       || ((colright || nextcolleft) && !rightLine(cell) && !nextcellleft)
2772                       || (!colright && !nextcolleft && (rightLine(cell) || nextcellleft))
2773                       || (coldouble != celldouble))
2774                      && !decimal;
2775
2776         // we center in multicol when no decimal point
2777         if (decimal) {
2778                 docstring const align_d = column_info[c].decimal_point;
2779                 DocIterator const dit = separatorPos(cellInset(cell), align_d);
2780                 bool const nosep = !dit;
2781                 ismulticol |= nosep;
2782                 celldouble &= nosep;
2783         }
2784
2785         // up counter by 1 for each decimally aligned col since they use 2 latex cols
2786         int latexcolspan = columnSpan(cell);
2787         for (col_type col = c; col < c + columnSpan(cell); ++col)
2788                 if (column_info[col].alignment == LYX_ALIGN_DECIMAL)
2789                         ++latexcolspan;
2790
2791         if (ismulticol) {
2792                 os << "\\multicolumn{" << latexcolspan << "}{";
2793                 if (((bidi && c == getLastCellInRow(cellRow(0)) && rightLine(cell))
2794                      || (!bidi && c == 0 && leftLine(cell))))
2795                         os << '|';
2796                 if (bidi && celldouble)
2797                         // add extra vertical line if we want a double one
2798                         os << '|';
2799                 if (!cellInfo(cell).align_special.empty()) {
2800                         os << cellInfo(cell).align_special;
2801                 } else {
2802                         if (!getPWidth(cell).zero()) {
2803                                 switch (align) {
2804                                 case LYX_ALIGN_LEFT:
2805                                         os << ">{\\raggedright}";
2806                                         break;
2807                                 case LYX_ALIGN_RIGHT:
2808                                         os << ">{\\raggedleft}";
2809                                         break;
2810                                 case LYX_ALIGN_CENTER:
2811                                         os << ">{\\centering}";
2812                                         break;
2813                                 default:
2814                                         break;
2815                                 }
2816                                 switch (valign) {
2817                                 case LYX_VALIGN_TOP:
2818                                         os << 'p';
2819                                         break;
2820                                 case LYX_VALIGN_MIDDLE:
2821                                         os << 'm';
2822                                         break;
2823                                 case LYX_VALIGN_BOTTOM:
2824                                         os << 'b';
2825                                         break;
2826                                 }
2827                                 os << '{'
2828                                    << from_ascii(getPWidth(cell).asLatexString())
2829                                    << '}';
2830                         } else {
2831                                 switch (align) {
2832                                 case LYX_ALIGN_LEFT:
2833                                         os << 'l';
2834                                         break;
2835                                 case LYX_ALIGN_RIGHT:
2836                                         os << 'r';
2837                                         break;
2838                                 default:
2839                                         os << 'c';
2840                                         break;
2841                                 }
2842                         } // end if else !getPWidth
2843                 } // end if else !cellinfo_of_cell
2844                 if ((bidi && leftLine(cell)) || (!bidi && rightLine(cell)) || nextcellleft)
2845                         os << '|';
2846                 if (!bidi && celldouble)
2847                         // add extra vertical line if we want a double one
2848                         os << '|';
2849                 os << "}{";
2850         } // end if ismulticol
2851
2852         // we only need code for the first multirow cell
2853         ismultirow = isMultiRow(cell);
2854         if (ismultirow) {
2855                 os << "\\multirow{" << rowSpan(cell) << "}{";
2856                 if (!getPWidth(cell).zero())
2857                         os << from_ascii(getPWidth(cell).asLatexString());
2858                 else
2859                         // we need to set a default value
2860                         os << "*";
2861                 os << "}";
2862                 if (!getMROffset(cell).zero())
2863                         os << "[" << from_ascii(getMROffset(cell).asLatexString()) << "]";
2864                 os << "{";
2865         } // end if ismultirow
2866
2867         if (getRotateCell(cell) != 0)
2868                 os << "\\begin{turn}{" << convert<string>(getRotateCell(cell)) << "}\n";
2869
2870         if (getUsebox(cell) == BOX_PARBOX) {
2871                 os << "\\parbox[";
2872                 switch (valign) {
2873                 case LYX_VALIGN_TOP:
2874                         os << 't';
2875                         break;
2876                 case LYX_VALIGN_MIDDLE:
2877                         os << 'c';
2878                         break;
2879                 case LYX_VALIGN_BOTTOM:
2880                         os << 'b';
2881                         break;
2882                 }
2883                 os << "]{" << from_ascii(getPWidth(cell).asLatexString())
2884                    << "}{";
2885         } else if (getUsebox(cell) == BOX_MINIPAGE) {
2886                 os << "\\begin{minipage}[";
2887                 switch (valign) {
2888                 case LYX_VALIGN_TOP:
2889                         os << 't';
2890                         break;
2891                 case LYX_VALIGN_MIDDLE:
2892                         os << 'm';
2893                         break;
2894                 case LYX_VALIGN_BOTTOM:
2895                         os << 'b';
2896                         break;
2897                 }
2898                 os << "]{" << from_ascii(getPWidth(cell).asLatexString())
2899                    << "}\n";
2900         } else if (getRotateCell(cell) != 0 && getUsebox(cell) == BOX_VARWIDTH) {
2901                 os << "\\begin{varwidth}[";
2902                 switch (valign) {
2903                 case LYX_VALIGN_TOP:
2904                         os << 't';
2905                         break;
2906                 case LYX_VALIGN_MIDDLE:
2907                         os << 'm';
2908                         break;
2909                 case LYX_VALIGN_BOTTOM:
2910                         os << 'b';
2911                         break;
2912         }
2913         os << "]{\\linewidth}\n";
2914 }
2915 }
2916
2917
2918 void Tabular::TeXCellPostamble(otexstream & os, idx_type cell,
2919                                bool ismulticol, bool ismultirow) const
2920 {
2921         row_type const r = cellRow(cell);
2922         if (is_long_tabular && row_info[r].caption)
2923                 return;
2924
2925         // usual cells
2926         if (getUsebox(cell) == BOX_PARBOX)
2927                 os << '}';
2928         else if (getUsebox(cell) == BOX_MINIPAGE)
2929                 os << breakln << "\\end{minipage}";
2930         else if (getRotateCell(cell) != 0 && getUsebox(cell) == BOX_VARWIDTH)
2931                 os << breakln << "\\end{varwidth}";
2932         if (getRotateCell(cell) != 0)
2933                 os << breakln << "\\end{turn}";
2934         if (ismultirow)
2935                 os << '}';
2936         if (ismulticol)
2937                 os << '}';
2938 }
2939
2940
2941 void Tabular::TeXLongtableHeaderFooter(otexstream & os,
2942                                        OutputParams const & runparams,
2943                                        list<col_type> columns,
2944                                        list<col_type> logical_columns) const
2945 {
2946         if (!is_long_tabular)
2947                 return;
2948
2949         // caption handling
2950         // output caption which is in no header or footer
2951         if (haveLTCaption()) {
2952                 for (row_type r = 0; r < nrows(); ++r) {
2953                         if (row_info[r].caption &&
2954                             !row_info[r].endfirsthead && !row_info[r].endhead &&
2955                             !row_info[r].endfoot && !row_info[r].endlastfoot)
2956                                 TeXRow(os, r, runparams, columns, logical_columns);
2957                 }
2958         }
2959         // output first header info
2960         if (haveLTFirstHead()) {
2961                 if (endfirsthead.topDL)
2962                         os << "\\hline\n";
2963                 for (row_type r = 0; r < nrows(); ++r) {
2964                         if (row_info[r].endfirsthead)
2965                                 TeXRow(os, r, runparams, columns, logical_columns);
2966                 }
2967                 if (endfirsthead.bottomDL)
2968                         os << "\\hline\n";
2969                 os << "\\endfirsthead\n";
2970         }
2971         // output header info
2972         if (haveLTHead()) {
2973                 if (endfirsthead.empty && !haveLTFirstHead())
2974                         os << "\\endfirsthead\n";
2975                 if (endhead.topDL)
2976                         os << "\\hline\n";
2977                 for (row_type r = 0; r < nrows(); ++r) {
2978                         if (row_info[r].endhead)
2979                                 TeXRow(os, r, runparams, columns, logical_columns);
2980                 }
2981                 if (endhead.bottomDL)
2982                         os << "\\hline\n";
2983                 os << "\\endhead\n";
2984         }
2985         // output footer info
2986         if (haveLTFoot()) {
2987                 if (endfoot.topDL)
2988                         os << "\\hline\n";
2989                 for (row_type r = 0; r < nrows(); ++r) {
2990                         if (row_info[r].endfoot)
2991                                 TeXRow(os, r, runparams, columns, logical_columns);
2992                 }
2993                 if (endfoot.bottomDL)
2994                         os << "\\hline\n";
2995                 os << "\\endfoot\n";
2996                 if (endlastfoot.empty && !haveLTLastFoot())
2997                         os << "\\endlastfoot\n";
2998         }
2999         // output lastfooter info
3000         if (haveLTLastFoot()) {
3001                 if (endlastfoot.topDL)
3002                         os << "\\hline\n";
3003                 for (row_type r = 0; r < nrows(); ++r) {
3004                         if (row_info[r].endlastfoot)
3005                                 TeXRow(os, r, runparams, columns, logical_columns);
3006                 }
3007                 if (endlastfoot.bottomDL)
3008                         os << "\\hline\n";
3009                 os << "\\endlastfoot\n";
3010         }
3011 }
3012
3013
3014 bool Tabular::isValidRow(row_type row) const
3015 {
3016         if (!is_long_tabular)
3017                 return true;
3018         return !row_info[row].endhead && !row_info[row].endfirsthead
3019                 && !row_info[row].endfoot && !row_info[row].endlastfoot
3020                 && !row_info[row].caption;
3021 }
3022
3023
3024 void Tabular::TeXRow(otexstream & os, row_type row,
3025                      OutputParams const & runparams,
3026                      list<col_type> columns, list<col_type> logical_columns) const
3027 {
3028         //output the top line
3029         TeXTopHLine(os, row, columns, logical_columns);
3030
3031         if (row_info[row].top_space_default) {
3032                 if (use_booktabs)
3033                         os << "\\addlinespace\n";
3034                 else
3035                         os << "\\noalign{\\vskip\\doublerulesep}\n";
3036         } else if(!row_info[row].top_space.zero()) {
3037                 if (use_booktabs)
3038                         os << "\\addlinespace["
3039                            << from_ascii(row_info[row].top_space.asLatexString())
3040                            << "]\n";
3041                 else {
3042                         os << "\\noalign{\\vskip"
3043                            << from_ascii(row_info[row].top_space.asLatexString())
3044                            << "}\n";
3045                 }
3046         }
3047         bool ismulticol = false;
3048         bool ismultirow = false;
3049
3050         // The bidi package (loaded by polyglossia with XeTeX) reverses RTL table columns
3051         // Luabibdi (used by LuaTeX) behaves like classic
3052         bool const bidi_rtl =
3053                 runparams.local_font->isRightToLeft()
3054                 && runparams.useBidiPackage();
3055         bool const ct = !buffer().params().output_changes;
3056         idx_type lastcell =
3057                 bidi_rtl ? getFirstCellInRow(row, ct) : getLastCellInRow(row, ct);
3058
3059         for (auto const & c : columns) {
3060                 if (isPartOfMultiColumn(row, c))
3061                         continue;
3062
3063                 idx_type cell = cellIndex(row, c);
3064
3065                 if (isPartOfMultiRow(row, c)
3066                     && column_info[c].alignment != LYX_ALIGN_DECIMAL) {
3067                         if (cell != lastcell)
3068                                 os << " & ";
3069                         continue;
3070                 }
3071
3072                 TeXCellPreamble(os, cell, ismulticol, ismultirow, bidi_rtl);
3073                 InsetTableCell const * inset = cellInset(cell);
3074
3075                 Paragraph const & par = inset->paragraphs().front();
3076
3077                 os.texrow().forceStart(par.id(), 0);
3078
3079                 bool rtl = par.isRTL(buffer().params())
3080                         && !par.empty()
3081                         && getPWidth(cell).zero()
3082                         && !runparams.use_polyglossia;
3083
3084                 if (rtl) {
3085                         string const lang =
3086                                 par.getParLanguage(buffer().params())->lang();
3087                         if (lang == "farsi")
3088                                 os << "\\textFR{";
3089                         else if (lang == "arabic_arabi")
3090                                 os << "\\textAR{";
3091                         // currently, remaining RTL languages are
3092                         // arabic_arabtex and hebrew
3093                         else
3094                                 os << "\\R{";
3095                 }
3096                 // pass to the OutputParams that we are in a cell and
3097                 // which alignment we have set.
3098                 // InsetNewline needs this context information.
3099                 OutputParams newrp(runparams);
3100                 newrp.inTableCell = (getAlignment(cell) == LYX_ALIGN_BLOCK)
3101                                     ? OutputParams::PLAIN
3102                                     : OutputParams::ALIGNED;
3103
3104                 if (getAlignment(cell) == LYX_ALIGN_DECIMAL) {
3105                         // copy cell and split in 2
3106                         InsetTableCell head = InsetTableCell(*cellInset(cell));
3107                         head.setBuffer(const_cast<Buffer &>(buffer()));
3108                         DocIterator dit = cellInset(cell)->getText(0)->macrocontextPosition();
3109                         dit.pop_back();
3110                         dit.push_back(CursorSlice(head));
3111                         head.setMacrocontextPositionRecursive(dit);
3112                         bool hassep = false;
3113                         InsetTableCell tail = splitCell(head, column_info[c].decimal_point, hassep);
3114                         if (hassep) {
3115                                 tail.setBuffer(head.buffer());
3116                                 dit.pop_back();
3117                                 dit.push_back(CursorSlice(tail));
3118                                 tail.setMacrocontextPositionRecursive(dit);
3119                         }
3120                         if (bidi_rtl) {
3121                                 if (hassep) {
3122                                         tail.latex(os, newrp);
3123                                         os << '&';
3124                                 }
3125                                 head.latex(os, newrp);
3126                         } else {
3127                                 head.latex(os, newrp);
3128                                 if (hassep) {
3129                                         os << '&';
3130                                         tail.latex(os, newrp);
3131                                 }
3132                         }
3133                 } else if (ltCaption(row)) {
3134                         // Inside longtable caption rows, we must only output the caption inset
3135                         // with its content and omit anything outside of that (see #10791)
3136                         InsetIterator it = inset_iterator_begin(*const_cast<InsetTableCell *>(inset));
3137                         InsetIterator i_end = inset_iterator_end(*const_cast<InsetTableCell *>(inset));
3138                         for (; it != i_end; ++it) {
3139                                 if (it->lyxCode() != CAPTION_CODE)
3140                                         continue;
3141                                 it->latex(os, runparams);
3142                                 break;
3143                         }
3144                 } else if (!isPartOfMultiRow(row, c)) {
3145                         if (!runparams.nice)
3146                                 os.texrow().start(par.id(), 0);
3147                         inset->latex(os, newrp);
3148                 }
3149
3150                 runparams.encoding = newrp.encoding;
3151                 if (rtl)
3152                         os << '}';
3153
3154                 TeXCellPostamble(os, cell, ismulticol, ismultirow);
3155                 if (cell != lastcell) { // not last cell in row
3156                         if (runparams.nice)
3157                                 os << " & ";
3158                         else
3159                                 os << " &\n";
3160                 }
3161         }
3162         os << "\\tabularnewline";
3163         if (row_info[row].bottom_space_default) {
3164                 if (use_booktabs)
3165                         os << "\\addlinespace";
3166                 else
3167                         os << "[\\doublerulesep]";
3168         } else if (!row_info[row].bottom_space.zero()) {
3169                 if (use_booktabs)
3170                         os << "\\addlinespace";
3171                 os << '['
3172                    << from_ascii(row_info[row].bottom_space.asLatexString())
3173                    << ']';
3174         }
3175         os << '\n';
3176
3177         //output the bottom line
3178         TeXBottomHLine(os, row, columns, logical_columns);
3179
3180         if (row_info[row].interline_space_default) {
3181                 if (use_booktabs)
3182                         os << "\\addlinespace\n";
3183                 else
3184                         os << "\\noalign{\\vskip\\doublerulesep}\n";
3185         } else if (!row_info[row].interline_space.zero()) {
3186                 if (use_booktabs)
3187                         os << "\\addlinespace["
3188                            << from_ascii(row_info[row].interline_space.asLatexString())
3189                            << "]\n";
3190                 else
3191                         os << "\\noalign{\\vskip"
3192                            << from_ascii(row_info[row].interline_space.asLatexString())
3193                            << "}\n";
3194         }
3195 }
3196
3197
3198 void Tabular::latex(otexstream & os, OutputParams const & runparams) const
3199 {
3200         bool const is_tabular_star = !is_long_tabular && !tabular_width.zero()
3201                 && !hasVarwidthColumn();
3202         bool const is_xltabular = is_long_tabular
3203                 && (hasVarwidthColumn() || !tabular_width.zero());
3204         TexRow::RowEntry pos = TexRow::textEntry(runparams.lastid, runparams.lastpos);
3205
3206         //+---------------------------------------------------------------------
3207         //+                      first the opening preamble                    +
3208         //+---------------------------------------------------------------------
3209
3210         os << safebreakln;
3211         if (!TexRow::isNone(pos))
3212                 os.texrow().start(pos);
3213
3214         if (rotate != 0) {
3215                 if (is_long_tabular)
3216                         os << "\\begin{landscape}\n";
3217                 else
3218                         os << "\\begin{turn}{" << convert<string>(rotate) << "}\n";
3219         }
3220
3221         // The bidi package (loaded by polyglossia with XeTeX) swaps the column
3222         // order for RTL (#9686). Thus we use this list.
3223         bool const bidi_rtl =
3224                 runparams.local_font->isRightToLeft()
3225                 && runparams.useBidiPackage();
3226         list<col_type> columns;
3227         list<col_type> logical_columns;
3228         for (col_type cl = 0; cl < ncols(); ++cl) {
3229                 if (!buffer().params().output_changes && column_info[cl].change.deleted())
3230                         continue;
3231                 if (bidi_rtl)
3232                         columns.push_front(cl);
3233                 else
3234                         columns.push_back(cl);
3235                 // for some calculations, we need the logical (non-swapped)
3236                 // columns also in bidi.
3237                 logical_columns.push_back(cl);
3238         }
3239
3240         // If we use \cline or \cmidrule, we need to locally de-activate
3241         // the - character when using languages that activate it (e.g., Czech, Slovak).
3242         bool deactivate_chars = false;
3243         if ((runparams.use_babel || runparams.use_polyglossia)
3244             && contains(runparams.active_chars, '-')) {
3245                 bool have_clines = false;
3246                 // Check if we use \cline or \cmidrule
3247                 for (row_type row = 0; row < nrows(); ++row) {
3248                         col_type bset = 0, tset = 0;
3249                         for (auto const & c : columns) {
3250                                 idx_type const idx = cellIndex(row, c);
3251                                 if (bottomLineTrim(idx).first || bottomLineTrim(idx).second
3252                                     || topLineTrim(idx).first || topLineTrim(idx).second) {
3253                                         have_clines = true;
3254                                         break;
3255                                 }
3256                                 if (bottomLine(cellIndex(row, c)))
3257                                         ++bset;
3258                                 if (topLine(cellIndex(row, c)))
3259                                         ++tset;
3260                         }
3261                         if ((bset > 0 && bset < ncols()) || (tset > 0 && tset < ncols())) {
3262                                 have_clines = true;
3263                                 break;
3264                         }
3265                 }
3266                 if (have_clines) {
3267                         deactivate_chars = true;
3268                         os << "\\begingroup\n"
3269                            << "\\catcode`\\-=12\n";
3270                 }
3271         }
3272
3273         if (is_long_tabular) {
3274                 if (is_xltabular)
3275                         os << "\\begin{xltabular}";
3276                 else
3277                         os << "\\begin{longtable}";
3278                 switch (longtabular_alignment) {
3279                 case LYX_LONGTABULAR_ALIGN_LEFT:
3280                         os << "[l]";
3281                         break;
3282                 case LYX_LONGTABULAR_ALIGN_CENTER:
3283                         os << "[c]";
3284                         break;
3285                 case LYX_LONGTABULAR_ALIGN_RIGHT:
3286                         os << "[r]";
3287                         break;
3288                 }
3289                 if (is_xltabular) {
3290                         if (tabular_width.zero())
3291                                 os << "{" << from_ascii("\\columnwidth") << "}";
3292                         else
3293                                 os << "{" << from_ascii(tabular_width.asLatexString()) << "}";
3294                 }
3295         } else {
3296                 if (is_tabular_star)
3297                         os << "\\begin{tabular*}{" << from_ascii(tabular_width.asLatexString()) << "}";
3298                 else if (hasVarwidthColumn()) {
3299                         os << "\\begin{tabularx}{";
3300                         if (tabular_width.zero())
3301                                 os << from_ascii("\\columnwidth") << "}";
3302                         else
3303                                 os << from_ascii(tabular_width.asLatexString()) << "}";
3304                 } else
3305                         os << "\\begin{tabular}";
3306                 switch (tabular_valignment) {
3307                 case LYX_VALIGN_TOP:
3308                         os << "[t]";
3309                         break;
3310                 case LYX_VALIGN_MIDDLE:
3311                         break;
3312                 case LYX_VALIGN_BOTTOM:
3313                         os << "[b]";
3314                         break;
3315                 }
3316         }
3317
3318         os << "{";
3319
3320         if (is_tabular_star)
3321                 os << "@{\\extracolsep{\\fill}}";
3322
3323         for (auto const & c : columns) {
3324                 if ((bidi_rtl && columnRightLine(c)) || (!bidi_rtl && columnLeftLine(c)))
3325                         os << '|';
3326                 if (!column_info[c].align_special.empty()) {
3327                         os << column_info[c].align_special;
3328                 } else {
3329                         if (!column_info[c].p_width.zero()) {
3330                                 bool decimal = false;
3331                                 switch (column_info[c].alignment) {
3332                                 case LYX_ALIGN_LEFT:
3333                                         os << ">{\\raggedright}";
3334                                         break;
3335                                 case LYX_ALIGN_RIGHT:
3336                                         os << ">{\\raggedleft}";
3337                                         break;
3338                                 case LYX_ALIGN_CENTER:
3339                                         os << ">{\\centering}";
3340                                         break;
3341                                 case LYX_ALIGN_NONE:
3342                                 case LYX_ALIGN_BLOCK:
3343                                 case LYX_ALIGN_LAYOUT:
3344                                 case LYX_ALIGN_SPECIAL:
3345                                         break;
3346                                 case LYX_ALIGN_DECIMAL: {
3347                                         if (bidi_rtl)
3348                                                 os << ">{\\raggedright}";
3349                                         else
3350                                                 os << ">{\\raggedleft}";
3351                                         decimal = true;
3352                                         break;
3353                                 }
3354                                 }
3355
3356                                 char valign = 'p';
3357                                 switch (column_info[c].valignment) {
3358                                 case LYX_VALIGN_TOP:
3359                                         // this is the default
3360                                         break;
3361                                 case LYX_VALIGN_MIDDLE:
3362                                         valign = 'm';
3363                                         break;
3364                                 case LYX_VALIGN_BOTTOM:
3365                                         valign = 'b';
3366                                         break;
3367                                 }
3368                                 os << valign;
3369
3370                                 // Fixed-width cells with alignment at decimal separator
3371                                 // are output as two cells of half the width with the decimal
3372                                 // separator as column sep. This effectively puts the content
3373                                 // centered, which differs from the normal decimal sep alignment
3374                                 // and is not ideal, but we cannot do better ATM (see #9568).
3375                                 // FIXME: Implement proper decimal sep alignment, e.g. via siunitx.
3376                                 if (decimal) {
3377                                         docstring const halffixedwith =
3378                                                 from_ascii(Length(column_info[c].p_width.value() / 2,
3379                                                                   column_info[c].p_width.unit()).asLatexString());
3380                                         os << '{'
3381                                            << halffixedwith
3382                                            << '}'
3383                                            << "@{\\extracolsep{0pt}" << column_info[c].decimal_point << "}"
3384                                            << valign
3385                                            << '{'
3386                                            << halffixedwith
3387                                            << '}';
3388                                 } else
3389                                         os << '{'
3390                                            << from_ascii(column_info[c].p_width.asLatexString())
3391                                            << '}';
3392                         } else if (column_info[c].varwidth) {
3393                                 switch (column_info[c].alignment) {
3394                                 case LYX_ALIGN_LEFT:
3395                                         os << ">{\\raggedright\\arraybackslash}";
3396                                         break;
3397                                 case LYX_ALIGN_RIGHT:
3398                                         os << ">{\\raggedleft\\arraybackslash}";
3399                                         break;
3400                                 case LYX_ALIGN_CENTER:
3401                                         os << ">{\\centering\\arraybackslash}";
3402                                         break;
3403                                 case LYX_ALIGN_NONE:
3404                                 case LYX_ALIGN_BLOCK:
3405                                 case LYX_ALIGN_LAYOUT:
3406                                 case LYX_ALIGN_SPECIAL:
3407                                 case LYX_ALIGN_DECIMAL:
3408                                         break;
3409                                 }
3410                                 os << 'X';
3411                         } else if (isVTypeColumn(c)) {
3412                                 switch (column_info[c].alignment) {
3413                                 case LYX_ALIGN_LEFT:
3414                                         os << ">{\\raggedright}";
3415                                         break;
3416                                 case LYX_ALIGN_RIGHT:
3417                                         os << ">{\\raggedleft}";
3418                                         break;
3419                                 case LYX_ALIGN_CENTER:
3420                                         os << ">{\\centering}";
3421                                         break;
3422                                 case LYX_ALIGN_NONE:
3423                                 case LYX_ALIGN_BLOCK:
3424                                 case LYX_ALIGN_LAYOUT:
3425                                 case LYX_ALIGN_SPECIAL:
3426                                 case LYX_ALIGN_DECIMAL:
3427                                         break;
3428                                 }
3429                                 os << "V{\\linewidth}";
3430                         } else {
3431                                 switch (column_info[c].alignment) {
3432                                 case LYX_ALIGN_LEFT:
3433                                         os << 'l';
3434                                         break;
3435                                 case LYX_ALIGN_RIGHT:
3436                                         os << 'r';
3437                                         break;
3438                                 case LYX_ALIGN_DECIMAL:
3439                                         os << "r@{\\extracolsep{0pt}" << column_info[c].decimal_point << "}l";
3440                                         break;
3441                                 default:
3442                                         os << 'c';
3443                                         break;
3444                                 }
3445                         } // end if else !column_info[i].p_width
3446                 } // end if else !column_info[i].align_special
3447                 if ((bidi_rtl && columnLeftLine(c)) || (!bidi_rtl && columnRightLine(c)))
3448                         os << '|';
3449         }
3450         os << "}\n";
3451
3452         TeXLongtableHeaderFooter(os, runparams, columns, logical_columns);
3453
3454         //+---------------------------------------------------------------------
3455         //+                      the single row and columns (cells)            +
3456         //+---------------------------------------------------------------------
3457
3458         for (row_type r = 0; r < nrows(); ++r) {
3459                 if (!buffer().params().output_changes && row_info[r].change.deleted())
3460                         continue;
3461                 if (isValidRow(r)) {
3462                         TeXRow(os, r, runparams, columns, logical_columns);
3463                         if (is_long_tabular && row_info[r].newpage)
3464                                 os << "\\newpage\n";
3465                 }
3466         }
3467
3468         //+---------------------------------------------------------------------
3469         //+                      the closing of the tabular                    +
3470         //+---------------------------------------------------------------------
3471
3472         if (is_long_tabular) {
3473                 if (is_xltabular)
3474                         os << "\\end{xltabular}";
3475                 else
3476                         os << "\\end{longtable}";
3477         } else {
3478                 if (is_tabular_star)
3479                         os << "\\end{tabular*}";
3480                 else if (hasVarwidthColumn())
3481                         os << "\\end{tabularx}";
3482                 else
3483                         os << "\\end{tabular}";
3484         }
3485
3486         if (deactivate_chars)
3487                 // close the group
3488                 os << "\n\\endgroup\n";
3489
3490         if (rotate != 0) {
3491                 if (is_long_tabular)
3492                         os << breakln << "\\end{landscape}";
3493                 else
3494                         os << breakln << "\\end{turn}";
3495         }
3496
3497         if (!TexRow::isNone(pos))
3498                 os.texrow().start(pos);
3499 }
3500
3501
3502 void Tabular::docbookRow(XMLStream & xs, row_type row,
3503                    OutputParams const & runparams, bool header) const
3504 {
3505         switch (buffer().params().docbook_table_output) {
3506         case BufferParams::HTMLTable:
3507                 docbookRowAsHTML(xs, row, runparams, header);
3508                 break;
3509         case BufferParams::CALSTable:
3510                 docbookRowAsCALS(xs, row, runparams);
3511                 break;
3512         }
3513 }
3514
3515
3516 void Tabular::docbookRowAsHTML(XMLStream & xs, row_type row,
3517                    OutputParams const & runparams, bool header) const
3518 {
3519         string const celltag = header ? "th" : "td";
3520         idx_type cell = getFirstCellInRow(row);
3521
3522         xs << xml::StartTag("tr");
3523         xs << xml::CR();
3524         for (col_type c = 0; c < ncols(); ++c) {
3525                 if (isPartOfMultiColumn(row, c) || isPartOfMultiRow(row, c))
3526                         continue;
3527
3528                 stringstream attr;
3529
3530                 Length const cwidth = column_info[c].p_width;
3531                 if (!cwidth.zero()) {
3532                         string const hwidth = cwidth.asHTMLString();
3533                         attr << "style =\"width: " << hwidth << ";\" ";
3534                 }
3535
3536                 attr << "align='";
3537                 switch (getAlignment(cell)) {
3538                 case LYX_ALIGN_BLOCK:
3539                         attr << "justify";
3540                         break;
3541                 case LYX_ALIGN_DECIMAL: {
3542                         Language const *tlang = buffer().paragraphs().front().getParLanguage(buffer().params());
3543                         attr << "char' char='" << to_utf8(tlang->decimalSeparator());
3544                 }
3545                         break;
3546                 case LYX_ALIGN_LEFT:
3547                         attr << "left";
3548                         break;
3549                 case LYX_ALIGN_RIGHT:
3550                         attr << "right";
3551                         break;
3552                 default:
3553                         attr << "center";
3554                         break;
3555                 }
3556                 attr << "'";
3557                 attr << " valign='";
3558                 switch (getVAlignment(cell)) {
3559                 case LYX_VALIGN_TOP:
3560                         attr << "top";
3561                         break;
3562                 case LYX_VALIGN_BOTTOM:
3563                         attr << "bottom";
3564                         break;
3565                 case LYX_VALIGN_MIDDLE:
3566                         attr << "middle";
3567                 }
3568                 attr << "'";
3569
3570                 if (isMultiColumn(cell))
3571                         attr << " colspan='" << columnSpan(cell) << "'";
3572                 else if (isMultiRow(cell))
3573                         attr << " rowspan='" << rowSpan(cell) << "'";
3574
3575                 xs << xml::StartTag(celltag, attr.str(), true);
3576                 cellInset(cell)->docbook(xs, runparams);
3577                 xs << xml::EndTag(celltag);
3578                 xs << xml::CR();
3579                 ++cell;
3580         }
3581         xs << xml::EndTag("tr");
3582         xs << xml::CR();
3583 }
3584
3585
3586 void Tabular::docbookRowAsCALS(XMLStream & xs, row_type row,
3587                                 OutputParams const & runparams) const
3588 {
3589         idx_type cell = getFirstCellInRow(row);
3590
3591         xs << xml::StartTag("row");
3592         xs << xml::CR();
3593         for (col_type c = 0; c < ncols(); ++c) {
3594                 if (isPartOfMultiColumn(row, c) || isPartOfMultiRow(row, c))
3595                         continue;
3596
3597                 stringstream attr;
3598
3599                 attr << "align='";
3600                 switch (getAlignment(cell)) {
3601                 case LYX_ALIGN_BLOCK:
3602                         attr << "justify";
3603                         break;
3604                 case LYX_ALIGN_DECIMAL: {
3605                         Language const *tlang = buffer().paragraphs().front().getParLanguage(buffer().params());
3606                         attr << "char' char='" << to_utf8(tlang->decimalSeparator());
3607                 }
3608                         break;
3609                 case LYX_ALIGN_LEFT:
3610                         attr << "left";
3611                         break;
3612                 case LYX_ALIGN_RIGHT:
3613                         attr << "right";
3614                         break;
3615
3616                 default:
3617                         attr << "center";
3618                         break;
3619                 }
3620                 attr << "'";
3621                 attr << " valign='";
3622                 switch (getVAlignment(cell)) {
3623                 case LYX_VALIGN_TOP:
3624                         attr << "top";
3625                         break;
3626                 case LYX_VALIGN_BOTTOM:
3627                         attr << "bottom";
3628                         break;
3629                 case LYX_VALIGN_MIDDLE:
3630                         attr << "middle";
3631                 }
3632                 attr << "'";
3633
3634                 if (isMultiColumn(cell))
3635                         attr << " colspan='" << columnSpan(cell) << "'";
3636                 else if (isMultiRow(cell))
3637                         attr << " rowspan='" << rowSpan(cell) << "'";
3638                 else
3639                         attr << " colname='c" << (c + 1) << "'"; // Column numbering starts at 1.
3640
3641                 // All cases where there should be a line *below* this row.
3642                 if (row_info[row].bottom_space_default)
3643                         attr << " rowsep='1'";
3644
3645                 xs << xml::StartTag("entry", attr.str(), true);
3646                 cellInset(cell)->docbook(xs, runparams);
3647                 xs << xml::EndTag("entry");
3648                 xs << xml::CR();
3649                 ++cell;
3650         }
3651         xs << xml::EndTag("row");
3652         xs << xml::CR();
3653 }
3654
3655
3656 void Tabular::docbook(XMLStream & xs, OutputParams const & runparams) const
3657 {
3658         docstring ret;
3659
3660         // Some tables are inline. Likely limitation: cannot output a table within a table; is that really a limitation?
3661         if (!runparams.docbook_in_table) { // Check on the *outer* set of parameters, so that the table can be closed
3662                 // properly at the end of this function.
3663                 xs << xml::StartTag("informaltable");
3664                 xs << xml::CR();
3665         }
3666
3667         // "Formal" tables have a title and use the tag <table>; the distinction with <informaltable> is done outside.
3668         // HTML has the caption first with titles forbidden, and CALS has a title first.
3669         if (haveLTCaption()) {
3670                 std::string tag = ((buffer().params().docbook_table_output) == BufferParams::HTMLTable) ? "caption" : "title";
3671
3672                 xs << xml::StartTag(tag);
3673                 for (row_type r = 0; r < nrows(); ++r)
3674                         if (row_info[r].caption)
3675                                 docbookRow(xs, r, runparams);
3676                 xs << xml::EndTag(tag);
3677                 xs << xml::CR();
3678         }
3679
3680         // CALS header: describe all columns in this table. For names, take 'c' then the ID of the column.
3681         // Start at one, as is customary with CALS!
3682         if (buffer().params().docbook_table_output == BufferParams::CALSTable) {
3683                 for (col_type c = 0; c < ncols(); ++c) {
3684                         std::stringstream attr;
3685                         attr << "colnum='" << (c + 1) << "' ";
3686                         attr << "colname='c" << (c + 1) << "' ";
3687                         Length const cwidth = column_info[c].p_width;
3688                         if (!cwidth.zero())
3689                                 attr << "colwidth='" << cwidth.asHTMLString() << "' ";
3690                         attr << "rowheader='norowheader'"; // Last attribute, hence no space at the end.
3691
3692                         xs << xml::CompTag("colspec", attr.str());
3693                         xs << xml::CR();
3694                 }
3695         }
3696
3697         // Output the header of the table. For both HTML and CALS, this is surrounded by a thead.
3698         bool const havefirsthead = haveLTFirstHead(false);
3699         // if we have a first head, then we are going to ignore the
3700         // headers for the additional pages, since there aren't any
3701         // in DocBook. this test accomplishes that.
3702         bool const havehead = !havefirsthead && haveLTHead(false);
3703         if (havehead || havefirsthead) {
3704                 xs << xml::StartTag("thead") << xml::CR();
3705                 for (row_type r = 0; r < nrows(); ++r) {
3706                         if (((havefirsthead && row_info[r].endfirsthead) ||
3707                              (havehead && row_info[r].endhead)) &&
3708                             !row_info[r].caption) {
3709                                 docbookRow(xs, r, runparams, true); // TODO: HTML vs CALS
3710                         }
3711                 }
3712                 xs << xml::EndTag("thead");
3713                 xs << xml::CR();
3714         }
3715
3716         // Output the footer of the table. For both HTML and CALS, this is surrounded by a tfoot and output just after
3717         // the header (and before the body).
3718         bool const havelastfoot = haveLTLastFoot(false);
3719         // as before.
3720         bool const havefoot = !havelastfoot && haveLTFoot(false);
3721         if (havefoot || havelastfoot) {
3722                 xs << xml::StartTag("tfoot") << xml::CR();
3723                 for (row_type r = 0; r < nrows(); ++r) {
3724                         if (((havelastfoot && row_info[r].endlastfoot) ||
3725                              (havefoot && row_info[r].endfoot)) &&
3726                             !row_info[r].caption) {
3727                                 docbookRow(xs, r, runparams); // TODO: HTML vs CALS
3728                         }
3729                 }
3730                 xs << xml::EndTag("tfoot");
3731                 xs << xml::CR();
3732         }
3733
3734         // Output the main part of the table. The tbody container is mandatory for CALS, but optional for HTML (only if
3735         // there is no header and no footer). It never hurts to have it, though.
3736         xs << xml::StartTag("tbody");
3737         xs << xml::CR();
3738         for (row_type r = 0; r < nrows(); ++r)
3739                 if (isValidRow(r))
3740                         docbookRow(xs, r, runparams);
3741         xs << xml::EndTag("tbody");
3742         xs << xml::CR();
3743
3744         // If this method started the table tag, also make it close it.
3745         if (!runparams.docbook_in_table) {
3746                 xs << xml::EndTag("informaltable");
3747                 xs << xml::CR();
3748         }
3749 }
3750
3751
3752 docstring Tabular::xhtmlRow(XMLStream & xs, row_type row,
3753                            OutputParams const & runparams, bool header) const
3754 {
3755         docstring ret;
3756         string const celltag = header ? "th" : "td";
3757         idx_type cell = getFirstCellInRow(row);
3758
3759         xs << xml::StartTag("tr");
3760         for (col_type c = 0; c < ncols(); ++c) {
3761                 if (isPartOfMultiColumn(row, c) || isPartOfMultiRow(row, c))
3762                         continue;
3763
3764                 stringstream attr;
3765
3766                 Length const cwidth = column_info[c].p_width;
3767                 if (!cwidth.zero()) {
3768                         string const hwidth = cwidth.asHTMLString();
3769                         attr << "style =\"width: " << hwidth << ";\" ";
3770                 }
3771
3772                 attr << "align='";
3773                 switch (getAlignment(cell)) {
3774                 case LYX_ALIGN_LEFT:
3775                         attr << "left";
3776                         break;
3777                 case LYX_ALIGN_RIGHT:
3778                         attr << "right";
3779                         break;
3780                 default:
3781                         attr << "center";
3782                         break;
3783                 }
3784                 attr << "'";
3785                 attr << " valign='";
3786                 switch (getVAlignment(cell)) {
3787                 case LYX_VALIGN_TOP:
3788                         attr << "top";
3789                         break;
3790                 case LYX_VALIGN_BOTTOM:
3791                         attr << "bottom";
3792                         break;
3793                 case LYX_VALIGN_MIDDLE:
3794                         attr << "middle";
3795                 }
3796                 attr << "'";
3797
3798                 if (isMultiColumn(cell))
3799                         attr << " colspan='" << columnSpan(cell) << "'";
3800                 else if (isMultiRow(cell))
3801                         attr << " rowspan='" << rowSpan(cell) << "'";
3802
3803                 xs << xml::StartTag(celltag, attr.str(), true) << xml::CR();
3804                 ret += cellInset(cell)->xhtml(xs, runparams);
3805                 xs << xml::EndTag(celltag) << xml::CR();
3806                 ++cell;
3807         }
3808         xs << xml::EndTag("tr");
3809         return ret;
3810 }
3811
3812
3813 docstring Tabular::xhtml(XMLStream & xs, OutputParams const & runparams) const
3814 {
3815         docstring ret;
3816
3817         if (is_long_tabular) {
3818                 // we'll wrap it in a div, so as to deal with alignment
3819                 string align;
3820                 switch (longtabular_alignment) {
3821                 case LYX_LONGTABULAR_ALIGN_LEFT:
3822                         align = "left";
3823                         break;
3824                 case LYX_LONGTABULAR_ALIGN_CENTER:
3825                         align = "center";
3826                         break;
3827                 case LYX_LONGTABULAR_ALIGN_RIGHT:
3828                         align = "right";
3829                         break;
3830                 }
3831                 xs << xml::StartTag("div", "class='longtable' style='text-align: " + align + ";'");
3832                 xs << xml::CR();
3833                 // The caption flag wins over head/foot
3834                 if (haveLTCaption()) {
3835                         xs << xml::StartTag("div", "class='longtable-caption' style='text-align: " + align + ";'");
3836                         xs << xml::CR();
3837                         for (row_type r = 0; r < nrows(); ++r)
3838                                 if (row_info[r].caption)
3839                                         ret += xhtmlRow(xs, r, runparams);
3840                         xs << xml::EndTag("div");
3841                         xs << xml::CR();
3842                 }
3843         }
3844
3845         xs << xml::StartTag("table");
3846         xs << xml::CR();
3847
3848         // output header info
3849         bool const havefirsthead = haveLTFirstHead(false);
3850         // if we have a first head, then we are going to ignore the
3851         // headers for the additional pages, since there aren't any
3852         // in XHTML. this test accomplishes that.
3853         bool const havehead = !havefirsthead && haveLTHead(false);
3854         if (havehead || havefirsthead) {
3855                 xs << xml::StartTag("thead");
3856                 xs << xml::CR();
3857                 for (row_type r = 0; r < nrows(); ++r) {
3858                         if (((havefirsthead && row_info[r].endfirsthead) ||
3859                              (havehead && row_info[r].endhead)) &&
3860                             !row_info[r].caption) {
3861                                 ret += xhtmlRow(xs, r, runparams, true);
3862                         }
3863                 }
3864                 xs << xml::EndTag("thead");
3865                 xs << xml::CR();
3866         }
3867         // output footer info
3868         bool const havelastfoot = haveLTLastFoot(false);
3869         // as before.
3870         bool const havefoot = !havelastfoot && haveLTFoot(false);
3871         if (havefoot || havelastfoot) {
3872                 xs << xml::StartTag("tfoot") << xml::CR();
3873                 for (row_type r = 0; r < nrows(); ++r) {
3874                         if (((havelastfoot && row_info[r].endlastfoot) ||
3875                              (havefoot && row_info[r].endfoot)) &&
3876                             !row_info[r].caption) {
3877                                 ret += xhtmlRow(xs, r, runparams);
3878                         }
3879                 }
3880                 xs << xml::EndTag("tfoot");
3881                 xs << xml::CR();
3882         }
3883
3884         xs << xml::StartTag("tbody") << xml::CR();
3885         for (row_type r = 0; r < nrows(); ++r)
3886                 if (isValidRow(r))
3887                         ret += xhtmlRow(xs, r, runparams);
3888         xs << xml::EndTag("tbody");
3889         xs << xml::CR();
3890         xs << xml::EndTag("table");
3891         xs << xml::CR();
3892         if (is_long_tabular) {
3893                 xs << xml::EndTag("div");
3894                 xs << xml::CR();
3895         }
3896         return ret;
3897 }
3898
3899
3900 bool Tabular::plaintextTopHLine(odocstringstream & os, row_type row,
3901                                    vector<unsigned int> const & clen) const
3902 {
3903         idx_type const fcell = getFirstCellInRow(row);
3904         idx_type const n = numberOfCellsInRow(row) + fcell;
3905         idx_type tmp = 0;
3906
3907         for (idx_type i = fcell; i < n; ++i) {
3908                 if (topLine(i)) {
3909                         ++tmp;
3910                         break;
3911                 }
3912         }
3913         if (!tmp)
3914                 return false;
3915
3916         char_type ch;
3917         for (idx_type i = fcell; i < n; ++i) {
3918                 if (topLine(i)) {
3919                         if (leftLine(i))
3920                                 os << "+-";
3921                         else
3922                                 os << "--";
3923                         ch = '-';
3924                 } else {
3925                         os << "  ";
3926                         ch = ' ';
3927                 }
3928                 col_type column = cellColumn(i);
3929                 int len = clen[column];
3930                 while (column < ncols() - 1
3931                        && isPartOfMultiColumn(row, ++column))
3932                         len += clen[column] + 4;
3933                 os << docstring(len, ch);
3934                 if (topLine(i)) {
3935                         if (rightLine(i))
3936                                 os << "-+";
3937                         else
3938                                 os << "--";
3939                 } else {
3940                         os << "  ";
3941                 }
3942         }
3943         os << endl;
3944         return true;
3945 }
3946
3947
3948 bool Tabular::plaintextBottomHLine(odocstringstream & os, row_type row,
3949                                       vector<unsigned int> const & clen) const
3950 {
3951         idx_type const fcell = getFirstCellInRow(row);
3952         idx_type const n = numberOfCellsInRow(row) + fcell;
3953         idx_type tmp = 0;
3954
3955         for (idx_type i = fcell; i < n; ++i) {
3956                 if (bottomLine(i)) {
3957                         ++tmp;
3958                         break;
3959                 }
3960         }
3961         if (!tmp)
3962                 return false;
3963
3964         char_type ch;
3965         for (idx_type i = fcell; i < n; ++i) {
3966                 if (bottomLine(i)) {
3967                         if (leftLine(i))
3968                                 os << "+-";
3969                         else
3970                                 os << "--";
3971                         ch = '-';
3972                 } else {
3973                         os << "  ";
3974                         ch = ' ';
3975                 }
3976                 col_type column = cellColumn(i);
3977                 int len = clen[column];
3978                 while (column < ncols() - 1 && isPartOfMultiColumn(row, ++column))
3979                         len += clen[column] + 4;
3980                 os << docstring(len, ch);
3981                 if (bottomLine(i)) {
3982                         if (rightLine(i))
3983                                 os << "-+";
3984                         else
3985                                 os << "--";
3986                 } else {
3987                         os << "  ";
3988                 }
3989         }
3990         os << endl;
3991         return true;
3992 }
3993
3994
3995 void Tabular::plaintextPrintCell(odocstringstream & os,
3996                                OutputParams const & runparams,
3997                                idx_type cell, row_type row, col_type column,
3998                                vector<unsigned int> const & clen,
3999                                bool onlydata, size_t max_length) const
4000 {
4001         odocstringstream sstr;
4002         cellInset(cell)->plaintext(sstr, runparams, max_length);
4003
4004         if (onlydata) {
4005                 os << sstr.str();
4006                 return;
4007         }
4008
4009         if (leftLine(cell))
4010                 os << "| ";
4011         else
4012                 os << "  ";
4013
4014         unsigned int len1 = sstr.str().length();
4015         unsigned int len2 = clen[column];
4016         while (column < ncols() - 1 && isPartOfMultiColumn(row, ++column))
4017                 len2 += clen[column] + 4;
4018         len2 -= len1;
4019
4020         switch (getAlignment(cell)) {
4021         default:
4022         case LYX_ALIGN_LEFT:
4023                 len1 = 0;
4024                 break;
4025         case LYX_ALIGN_RIGHT:
4026                 len1 = len2;
4027                 len2 = 0;
4028                 break;
4029         case LYX_ALIGN_CENTER:
4030                 len1 = len2 / 2;
4031                 len2 -= len1;
4032                 break;
4033         }
4034
4035         os << docstring(len1, ' ') << sstr.str()
4036            << docstring(len2, ' ');
4037
4038         if (rightLine(cell))
4039                 os << " |";
4040         else
4041                 os << "  ";
4042 }
4043
4044
4045 void Tabular::plaintext(odocstringstream & os,
4046                            OutputParams const & runparams, int const depth,
4047                            bool onlydata, char_type delim, size_t max_length) const
4048 {
4049         // first calculate the width of the single columns
4050         vector<unsigned int> clen(ncols());
4051
4052         if (!onlydata) {
4053                 // first all non multicolumn cells!
4054                 for (col_type c = 0; c < ncols(); ++c) {
4055                         clen[c] = 0;
4056                         for (row_type r = 0; r < nrows(); ++r) {
4057                                 idx_type cell = cellIndex(r, c);
4058                                 if (isMultiColumn(cell))
4059                                         continue;
4060                                 odocstringstream sstr;
4061                                 cellInset(cell)->plaintext(sstr, runparams, max_length);
4062                                 if (clen[c] < sstr.str().length())
4063                                         clen[c] = sstr.str().length();
4064                         }
4065                 }
4066                 // then all multicolumn cells!
4067                 for (col_type c = 0; c < ncols(); ++c) {
4068                         for (row_type r = 0; r < nrows(); ++r) {
4069                                 idx_type cell = cellIndex(r, c);
4070                                 if (cell_info[r][c].multicolumn != CELL_BEGIN_OF_MULTICOLUMN)
4071                                         continue;
4072                                 odocstringstream sstr;
4073                                 cellInset(cell)->plaintext(sstr, runparams, max_length);
4074                                 int len = int(sstr.str().length());
4075                                 idx_type const n = columnSpan(cell);
4076                                 for (col_type k = c; len > 0 && k < c + n - 1; ++k)
4077                                         len -= clen[k];
4078                                 if (len > int(clen[c + n - 1]))
4079                                         clen[c + n - 1] = len;
4080                         }
4081                 }
4082         }
4083         idx_type cell = 0;
4084         for (row_type r = 0; r < nrows(); ++r) {
4085                 if (!onlydata && plaintextTopHLine(os, r, clen))
4086                         os << docstring(depth * 2, ' ');
4087                 for (col_type c = 0; c < ncols(); ++c) {
4088                         if (isPartOfMultiColumn(r, c) || isPartOfMultiRow(r,c))
4089                                 continue;
4090                         if (onlydata && c > 0)
4091                                 // we don't use operator<< for single UCS4 character.
4092                                 // see explanation in docstream.h
4093                                 os.put(delim);
4094                         plaintextPrintCell(os, runparams, cell, r, c, clen, onlydata, max_length);
4095                         ++cell;
4096                         if (os.str().size() > max_length)
4097                                 break;
4098                 }
4099                 os << endl;
4100                 if (!onlydata) {
4101                         os << docstring(depth * 2, ' ');
4102                         if (plaintextBottomHLine(os, r, clen))
4103                                 os << docstring(depth * 2, ' ');
4104                 }
4105                 if (os.str().size() > max_length)
4106                         break;
4107         }
4108 }
4109
4110
4111 shared_ptr<InsetTableCell> Tabular::cellInset(idx_type cell)
4112 {
4113         return cell_info[cellRow(cell)][cellColumn(cell)].inset;
4114 }
4115
4116
4117 shared_ptr<InsetTableCell> Tabular::cellInset(row_type row, col_type column)
4118 {
4119         return cell_info[row][column].inset;
4120 }
4121
4122
4123 InsetTableCell const * Tabular::cellInset(idx_type cell) const
4124 {
4125         return cell_info[cellRow(cell)][cellColumn(cell)].inset.get();
4126 }
4127
4128
4129 void Tabular::setCellInset(row_type row, col_type column,
4130                            shared_ptr<InsetTableCell> ins)
4131 {
4132         CellData & cd = cell_info[row][column];
4133         cd.inset = ins;
4134 }
4135
4136
4137 void Tabular::validate(LaTeXFeatures & features) const
4138 {
4139         features.require("NeedTabularnewline");
4140         if (use_booktabs)
4141                 features.require("booktabs");
4142         if (is_long_tabular && !hasVarwidthColumn()) {
4143                 if (tabular_width.zero())
4144                         features.require("longtable");
4145                 else
4146                         features.require("xltabular");
4147         }
4148         if (rotate && is_long_tabular)
4149                 features.require("lscape");
4150         if (needRotating())
4151                 features.require("rotating");
4152         if (hasVarwidthColumn()) {
4153                 if (is_long_tabular)
4154                         features.require("xltabular");
4155                 else
4156                         features.require("tabularx");
4157         }
4158         for (idx_type cell = 0; cell < numberofcells; ++cell) {
4159                 if (isMultiRow(cell))
4160                         features.require("multirow");
4161                 if (getUsebox(cell) == BOX_VARWIDTH)
4162                         features.require("varwidth");
4163                 if (getVAlignment(cell) != LYX_VALIGN_TOP
4164                     || !getPWidth(cell).zero()
4165                     || isVTypeColumn(cellColumn(cell)))
4166                         features.require("array");
4167                 // Tell footnote that we need a savenote
4168                 // environment in non-long tables or
4169                 // longtable headers/footers
4170                 else if (!is_long_tabular && !features.inFloat())
4171                         features.saveNoteEnv("tabular");
4172                 else if (!isValidRow(cellRow(cell)))
4173                         features.saveNoteEnv("longtable");
4174
4175                 cellInset(cell)->validate(features);
4176                 features.saveNoteEnv(string());
4177         }
4178 }
4179
4180
4181 Tabular::BoxType Tabular::useBox(idx_type cell) const
4182 {
4183         ParagraphList const & parlist = cellInset(cell)->paragraphs();
4184         if (parlist.size() > 1)
4185                 return BOX_VARWIDTH;
4186
4187         ParagraphList::const_iterator cit = parlist.begin();
4188         ParagraphList::const_iterator end = parlist.end();
4189
4190         for (; cit != end; ++cit)
4191                 for (int i = 0; i < cit->size(); ++i)
4192                         if (cit->isNewline(i) || cit->layout().isEnvironment())
4193                                 return BOX_VARWIDTH;
4194
4195         return BOX_NONE;
4196 }
4197
4198
4199 /////////////////////////////////////////////////////////////////////
4200 //
4201 // InsetTableCell
4202 //
4203 /////////////////////////////////////////////////////////////////////
4204
4205 InsetTableCell::InsetTableCell(Buffer * buf)
4206         : InsetText(buf, InsetText::PlainLayout), isFixedWidth(false),
4207           isMultiColumn(false), isMultiRow(false), contentAlign(LYX_ALIGN_CENTER)
4208 {}
4209
4210
4211 bool InsetTableCell::forcePlainLayout(idx_type) const
4212 {
4213         return isMultiRow || (isMultiColumn && !isFixedWidth);
4214 }
4215
4216
4217 bool InsetTableCell::allowParagraphCustomization(idx_type) const
4218 {
4219         return isFixedWidth;
4220 }
4221
4222
4223 bool InsetTableCell::forceLocalFontSwitch() const
4224 {
4225         return true;
4226 }
4227
4228
4229 bool InsetTableCell::getStatus(Cursor & cur, FuncRequest const & cmd,
4230         FuncStatus & status) const
4231 {
4232         bool enabled = true;
4233         switch (cmd.action()) {
4234         case LFUN_INSET_DISSOLVE:
4235                 enabled = false;
4236                 break;
4237         case LFUN_MATH_DISPLAY:
4238                 if (!hasFixedWidth()) {
4239                         enabled = false;
4240                         break;
4241                 } //fall-through
4242         default:
4243                 return InsetText::getStatus(cur, cmd, status);
4244         }
4245         status.setEnabled(enabled);
4246         return true;
4247 }
4248
4249 docstring InsetTableCell::asString(bool intoInsets)
4250 {
4251         docstring retval;
4252         if (paragraphs().empty())
4253                 return retval;
4254         ParagraphList::const_iterator it = paragraphs().begin();
4255         ParagraphList::const_iterator en = paragraphs().end();
4256         bool first = true;
4257         for (; it != en; ++it) {
4258                 if (!first)
4259                         retval += "\n";
4260                 else
4261                         first = false;
4262                 retval += it->asString(intoInsets ? AS_STR_INSETS : AS_STR_NONE);
4263         }
4264         return retval;
4265 }
4266
4267
4268 void InsetTableCell::addToToc(DocIterator const & di, bool output_active,
4269                                                           UpdateType utype, TocBackend & backend) const
4270 {
4271         InsetText::iterateForToc(di, output_active, utype, backend);
4272 }
4273
4274
4275 docstring InsetTableCell::xhtml(XMLStream & xs, OutputParams const & rp) const
4276 {
4277         if (!isFixedWidth)
4278                 return InsetText::insetAsXHTML(xs, rp, InsetText::JustText);
4279         return InsetText::xhtml(xs, rp);
4280 }
4281
4282
4283 void InsetTableCell::docbook(XMLStream & xs, OutputParams const & runparams) const
4284 {
4285         InsetText::docbook(xs, runparams);
4286 }
4287
4288
4289 void InsetTableCell::metrics(MetricsInfo & mi, Dimension & dim) const
4290 {
4291         TextMetrics & tm = mi.base.bv->textMetrics(&text());
4292         int const horiz_offset = leftOffset(mi.base.bv) + rightOffset(mi.base.bv);
4293
4294         // Hand font through to contained lyxtext:
4295         tm.font_.fontInfo() = mi.base.font;
4296         mi.base.textwidth -= horiz_offset;
4297
4298         // This can happen when a layout has a left and right margin,
4299         // and the view is made very narrow. We can't do better than
4300         // to draw it partly out of view (bug 5890).
4301         if (mi.base.textwidth < 1)
4302                 mi.base.textwidth = 1;
4303
4304         // We tell metrics here not to expand on multiple pars
4305         // This is the difference to InsetText::Metrics
4306         if (hasFixedWidth())
4307                 tm.metrics(mi, dim, mi.base.textwidth, false);
4308         else
4309                 tm.metrics(mi, dim, 0, false);
4310         mi.base.textwidth += horiz_offset;
4311         dim.asc += topOffset(mi.base.bv);
4312         dim.des += bottomOffset(mi.base.bv);
4313         dim.wid += horiz_offset;
4314 }
4315
4316
4317 /////////////////////////////////////////////////////////////////////
4318 //
4319 // InsetTabular
4320 //
4321 /////////////////////////////////////////////////////////////////////
4322
4323 InsetTabular::InsetTabular(Buffer * buf, row_type rows,
4324                            col_type columns)
4325         : Inset(buf), tabular(buf, max(rows, row_type(1)), max(columns, col_type(1))),
4326           rowselect_(false), colselect_(false)
4327 {
4328 }
4329
4330
4331 InsetTabular::InsetTabular(InsetTabular const & tab)
4332         : Inset(tab), tabular(tab.tabular),
4333           rowselect_(false), colselect_(false)
4334 {
4335 }
4336
4337
4338 InsetTabular::~InsetTabular()
4339 {
4340         hideDialogs("tabular", this);
4341 }
4342
4343
4344 void InsetTabular::setBuffer(Buffer & buf)
4345 {
4346         tabular.setBuffer(buf);
4347         Inset::setBuffer(buf);
4348 }
4349
4350
4351 bool InsetTabular::insetAllowed(InsetCode code) const
4352 {
4353         switch (code) {
4354         case FLOAT_CODE:
4355         case MARGIN_CODE:
4356         case MATHMACRO_CODE:
4357         case WRAP_CODE:
4358                 return false;
4359
4360         case CAPTION_CODE:
4361                 return tabular.is_long_tabular;
4362
4363         default:
4364                 return true;
4365         }
4366 }
4367
4368
4369 bool InsetTabular::allowsCaptionVariation(std::string const & newtype) const
4370 {
4371         return tabular.is_long_tabular &&
4372                 (newtype == "Standard" || newtype == "Unnumbered");
4373 }
4374
4375
4376 void InsetTabular::write(ostream & os) const
4377 {
4378         os << "Tabular" << endl;
4379         tabular.write(os);
4380 }
4381
4382
4383 string InsetTabular::contextMenu(BufferView const &, int, int) const
4384 {
4385         // FIXME: depending on the selection state,
4386         // we could offer a different menu.
4387         return cell(0)->contextMenuName() + ";" + contextMenuName();
4388 }
4389
4390
4391 string InsetTabular::contextMenuName() const
4392 {
4393         return "context-tabular";
4394 }
4395
4396
4397 void InsetTabular::read(Lexer & lex)
4398 {
4399         //bool const old_format = (lex.getString() == "\\LyXTable");
4400
4401         tabular.read(lex);
4402
4403         //if (old_format)
4404         //      return;
4405
4406         lex.next();
4407         string token = lex.getString();
4408         while (lex && token != "\\end_inset") {
4409                 lex.next();
4410                 token = lex.getString();
4411         }
4412         if (!lex)
4413                 lex.printError("Missing \\end_inset at this point. ");
4414 }
4415
4416
4417 int InsetTabular::rowFromY(Cursor & cur, int y) const
4418 {
4419         // top y coordinate of tabular
4420         int h = yo(cur.bv()) - tabular.rowAscent(0) + tabular.offsetVAlignment();
4421         row_type r = 0;
4422         for (; r < tabular.nrows() && y > h; ++r)
4423                 h += tabular.rowAscent(r) + tabular.rowDescent(r)
4424                         + tabular.interRowSpace(r);
4425
4426         return r - 1;
4427 }
4428
4429
4430 int InsetTabular::columnFromX(Cursor & cur, int x) const
4431 {
4432         // left x coordinate of tabular
4433         int w = xo(cur.bv()) + ADD_TO_TABULAR_WIDTH;
4434         col_type c = 0;
4435         for (; c < tabular.ncols() && x > w; ++c)
4436                 w += tabular.cellWidth(c);
4437         return c - 1;
4438 }
4439
4440
4441 void InsetTabular::metrics(MetricsInfo & mi, Dimension & dim) const
4442 {
4443         //lyxerr << "InsetTabular::metrics: " << mi.base.bv << " width: " <<
4444         //      mi.base.textwidth << "\n";
4445         LBUFERR(mi.base.bv);
4446
4447         for (row_type r = 0; r < tabular.nrows(); ++r) {
4448                 int maxasc = 0;
4449                 int maxdes = 0;
4450                 for (col_type c = 0; c < tabular.ncols(); ++c) {
4451                         if (tabular.isPartOfMultiColumn(r, c)
4452                                 || tabular.isPartOfMultiRow(r, c))
4453                                 // multicolumn or multirow cell, but not first one
4454                                 continue;
4455                         idx_type const cell = tabular.cellIndex(r, c);
4456                         Dimension dim0;
4457                         MetricsInfo m = mi;
4458                         Length const p_width = tabular.getPWidth(cell);
4459                         if (!p_width.zero())
4460                                 m.base.textwidth = mi.base.inPixels(p_width);
4461                         else if (tabular.column_info[c].varwidth)
4462                                 m.base.textwidth = tabular.column_info[c].width;
4463                         tabular.cellInset(cell)->metrics(m, dim0);
4464                         if (!p_width.zero() || tabular.column_info[c].varwidth)
4465                                 dim0.wid = m.base.textwidth;
4466                         tabular.cellInfo(cell).width = dim0.wid + 2 * WIDTH_OF_LINE
4467                                 + tabular.interColumnSpace(cell);
4468
4469                         // FIXME(?): do we need a second metrics call?
4470                         TextMetrics const & tm =
4471                                 mi.base.bv->textMetrics(tabular.cellInset(cell)->getText(0));
4472
4473                         // determine horizontal offset because of decimal align (if necessary)
4474                         int decimal_width = 0;
4475                         if (tabular.getAlignment(cell) == LYX_ALIGN_DECIMAL) {
4476                                 InsetTableCell tail = InsetTableCell(*tabular.cellInset(cell));
4477                                 tail.setBuffer(tabular.buffer());
4478                                 // we need to set macrocontext position everywhere
4479                                 // otherwise we crash with nested insets (e.g. footnotes)
4480                                 // after decimal point
4481                                 DocIterator dit = tabular.cellInset(cell)->getText(0)->macrocontextPosition();
4482                                 dit.pop_back();
4483                                 dit.push_back(CursorSlice(tail));
4484                                 tail.setMacrocontextPositionRecursive(dit);
4485
4486                                 // remove text leading decimal point
4487                                 docstring const align_d = tabular.column_info[c].decimal_point;
4488                                 dit = separatorPos(&tail, align_d);
4489
4490                                 pos_type const psize = tail.paragraphs().front().size();
4491                                 if (dit) {
4492                                         tail.paragraphs().front().eraseChars(0,
4493                                                 dit.pos() < psize ? dit.pos() + 1 : psize, false);
4494                                         Dimension dim1;
4495                                         tail.metrics(m, dim1);
4496                                         decimal_width = dim1.width();
4497                                 }
4498                         }
4499                         tabular.cell_info[r][c].decimal_hoffset = tm.width() - decimal_width;
4500                         tabular.cell_info[r][c].decimal_width = decimal_width;
4501
4502                         // with LYX_VALIGN_BOTTOM the descent is relative to the last par
4503                         // = descent of text in last par + bottomOffset:
4504                         int const lastpardes = tm.last().second->descent()
4505                                 + bottomOffset(mi.base.bv);
4506                         int offset = 0;
4507                         switch (tabular.getVAlignment(cell)) {
4508                                 case Tabular::LYX_VALIGN_TOP:
4509                                         break;
4510                                 case Tabular::LYX_VALIGN_MIDDLE:
4511                                         offset = -(dim0.des - lastpardes)/2;
4512                                         break;
4513                                 case Tabular::LYX_VALIGN_BOTTOM:
4514                                         offset = -(dim0.des - lastpardes);
4515                                         break;
4516                         }
4517                         tabular.cell_info[r][c].voffset = offset;
4518                         maxasc = max(maxasc, dim0.asc - offset);
4519                         maxdes = max(maxdes, dim0.des + offset);
4520                 }
4521                 int const top_space = tabular.row_info[r].top_space_default ?
4522                     default_line_space :
4523                     mi.base.inPixels(tabular.row_info[r].top_space);
4524                 tabular.setRowAscent(r, maxasc + ADD_TO_HEIGHT + top_space);
4525                 int const bottom_space = tabular.row_info[r].bottom_space_default ?
4526                     default_line_space :
4527                     mi.base.inPixels(tabular.row_info[r].bottom_space);
4528                 tabular.setRowDescent(r, maxdes + ADD_TO_HEIGHT + bottom_space);
4529         }
4530
4531         // We need to recalculate the metrics after column width calculation
4532         // with xtabular (possibly multiple times, so the call is recursive).
4533         if (tabular.updateColumnWidths(mi) && tabular.hasVarwidthColumn())
4534                 metrics(mi, dim);
4535         dim.asc = tabular.rowAscent(0) - tabular.offsetVAlignment();
4536         dim.des = tabular.height() - dim.asc;
4537         dim.wid = tabular.width() + 2 * ADD_TO_TABULAR_WIDTH;
4538 }
4539
4540
4541 bool InsetTabular::isCellSelected(Cursor & cur, row_type row, col_type col) const
4542 {
4543         if (&cur.inset() == this && cur.selection()) {
4544                 if (cur.selIsMultiCell()) {
4545                         row_type rs, re;
4546                         col_type cs, ce;
4547                         getSelection(cur, rs, re, cs, ce);
4548
4549                         idx_type const cell = tabular.cellIndex(row, col);
4550                         col_type const cspan = tabular.columnSpan(cell);
4551                         row_type const rspan = tabular.rowSpan(cell);
4552                         if (col + cspan - 1 >= cs && col <= ce
4553                                 && row + rspan - 1 >= rs && row <= re)
4554                                 return true;
4555                 } else
4556                         if (col == tabular.cellColumn(cur.idx())
4557                                 && row == tabular.cellRow(cur.idx())) {
4558                         CursorSlice const & beg = cur.selBegin();
4559                         CursorSlice const & end = cur.selEnd();
4560
4561                         if ((end.lastpos() > 0 || end.lastpit() > 0)
4562                                   && end.pos() == end.lastpos() && beg.pos() == 0
4563                                   && end.pit() == end.lastpit() && beg.pit() == 0)
4564                                 return true;
4565                 }
4566         }
4567         return false;
4568 }
4569
4570
4571 void InsetTabular::draw(PainterInfo & pi, int x, int y) const
4572 {
4573         x += ADD_TO_TABULAR_WIDTH;
4574
4575         BufferView * bv = pi.base.bv;
4576         Cursor & cur = pi.base.bv->cursor();
4577
4578         // FIXME: As the full background is painted in drawBackground(),
4579         // we have no choice but to do a full repaint for the Text cells.
4580         pi.full_repaint = true;
4581
4582         bool const original_selection_state = pi.selected;
4583
4584         idx_type idx = 0;
4585         
4586         // Save tabular change status
4587         Change tab_change = pi.change;
4588
4589         int yy = y + tabular.offsetVAlignment();
4590         for (row_type r = 0; r < tabular.nrows(); ++r) {
4591                 int nx = x;
4592                 for (col_type c = 0; c < tabular.ncols(); ++c) {
4593                         if (tabular.isPartOfMultiColumn(r, c))
4594                                 continue;
4595
4596                         idx = tabular.cellIndex(r, c);
4597
4598                         if (tabular.isPartOfMultiRow(r, c)) {
4599                                 nx += tabular.cellWidth(idx);
4600                                 continue;
4601                         }
4602
4603                         pi.selected |= isCellSelected(cur, r, c);
4604
4605                         // Mark deleted rows/columns
4606                         if (tabular.column_info[c].change.changed())
4607                                 pi.change = tabular.column_info[c].change;
4608                         else if (tabular.row_info[r].change.changed())
4609                                 pi.change = tabular.row_info[r].change;
4610                         else
4611                                 pi.change = tab_change;
4612
4613                         int const cx = nx + tabular.textHOffset(idx);
4614                         int const cy = yy + tabular.textVOffset(idx);
4615                         // Cache the Inset position.
4616                         bv->coordCache().insets().add(cell(idx).get(), cx, cy);
4617                         cell(idx)->draw(pi, cx, cy);
4618                         drawCellLines(pi, nx, yy, r, idx);
4619                         nx += tabular.cellWidth(idx);
4620                         pi.selected = original_selection_state;
4621                 }
4622
4623                 if (r + 1 < tabular.nrows())
4624                         yy += tabular.rowDescent(r) + tabular.rowAscent(r + 1)
4625                                 + tabular.interRowSpace(r + 1);
4626         }
4627 }
4628
4629
4630 void InsetTabular::drawBackground(PainterInfo & pi, int x, int y) const
4631 {
4632         x += ADD_TO_TABULAR_WIDTH;
4633         y += tabular.offsetVAlignment() - tabular.rowAscent(0);
4634         pi.pain.fillRectangle(x, y, tabular.width(), tabular.height(),
4635                 pi.backgroundColor(this));
4636 }
4637
4638
4639 void InsetTabular::drawSelection(PainterInfo & pi, int x, int y) const
4640 {
4641         Cursor & cur = pi.base.bv->cursor();
4642
4643         x += ADD_TO_TABULAR_WIDTH;
4644
4645         if (!cur.selection())
4646                 return;
4647         if (&cur.inset() != this)
4648                 return;
4649
4650         //resetPos(cur);
4651
4652         bool const full_cell_selected = isCellSelected(cur,
4653                 tabular.cellRow(cur.idx()), tabular.cellColumn(cur.idx()));
4654
4655         if (cur.selIsMultiCell() || full_cell_selected) {
4656                 for (row_type r = 0; r < tabular.nrows(); ++r) {
4657                         int xx = x;
4658                         for (col_type c = 0; c < tabular.ncols(); ++c) {
4659                                 if (tabular.isPartOfMultiColumn(r, c))
4660                                         continue;
4661
4662                                 idx_type const cell = tabular.cellIndex(r, c);
4663
4664                                 if (tabular.isPartOfMultiRow(r, c)) {
4665                                         xx += tabular.cellWidth(cell);
4666                                         continue;
4667                                 }
4668                                 int const w = tabular.cellWidth(cell);
4669                                 int const h = tabular.cellHeight(cell);
4670                                 int const yy = y - tabular.rowAscent(r) + tabular.offsetVAlignment();
4671                                 if (isCellSelected(cur, r, c))
4672                                         pi.pain.fillRectangle(xx, yy, w, h, Color_selection);
4673                                 xx += w;
4674                         }
4675                         if (r + 1 < tabular.nrows())
4676                                 y += tabular.rowDescent(r) + tabular.rowAscent(r + 1)
4677                                      + tabular.interRowSpace(r + 1);
4678                 }
4679
4680         }
4681         // FIXME: This code has no effect because InsetTableCell does not handle
4682         // drawSelection other than the trivial implementation in Inset.
4683         //else {
4684         //      x += cellXPos(cur.idx());
4685         //      x += tabular.textHOffset(cur.idx());
4686         //      cell(cur.idx())->drawSelection(pi, x, 0 /* ignored */);
4687         //}
4688 }
4689
4690
4691 namespace {
4692
4693 void tabline(PainterInfo const & pi, int x1, int y1, int x2, int y2, int lt, int rt,
4694              Color const incol, bool drawline, bool heavy = false)
4695 {
4696         Color const col = drawline ? incol : Color_tabularonoffline;
4697         if (drawline && lt > 0)
4698                 pi.pain.line(x1, y1, x1 + lt, y2, pi.textColor(Color_tabularonoffline),
4699                                          Painter::line_onoffdash,
4700                                          Painter::thin_line);
4701         pi.pain.line(x1 + lt, y1, x2 - rt, y2, pi.textColor(col),
4702                                  drawline ? Painter::line_solid : Painter::line_onoffdash,
4703                                  (heavy ? 2 : 1) * Painter::thin_line);
4704         if (drawline && rt > 0)
4705                 pi.pain.line(x2 - rt, y1, x2, y2, pi.textColor(Color_tabularonoffline),
4706                                          Painter::line_onoffdash,
4707                                          Painter::thin_line);
4708 }
4709
4710 }
4711
4712
4713 void InsetTabular::drawCellLines(PainterInfo & pi, int x, int y,
4714                                  row_type row, idx_type cell) const
4715 {
4716         y -= tabular.rowAscent(row);
4717         int const w = tabular.cellWidth(cell);
4718         int const h = tabular.cellHeight(cell);
4719         int lt = 0;
4720         int rt = 0;
4721
4722         col_type const col = tabular.cellColumn(cell);
4723
4724         // Colour the frame if rows/columns are added or deleted
4725         Color colour = Color_tabularline;
4726         if (tabular.column_info[col].change.changed()
4727             || tabular.row_info[row].change.changed())
4728                 colour = InsetTableCell(*tabular.cellInset(cell)).paragraphs().front().lookupChange(0).color();
4729
4730         // Top
4731         bool drawline = tabular.topLine(cell)
4732                 || (row > 0 && tabular.bottomLine(tabular.cellAbove(cell)));
4733         bool heavy = tabular.use_booktabs
4734                         && (row == 0 || (tabular.is_long_tabular && row == 1 && tabular.ltCaption(0)))
4735                         && tabular.rowTopLine(row);
4736         if (tabular.topLineTrim(cell).first
4737             || (row > 0 && tabular.bottomLineTrim(tabular.cellIndex(row - 1, col)).first))
4738                 lt = 10;
4739         if (tabular.topLineTrim(cell).second
4740             || (row > 0 && tabular.bottomLineTrim(tabular.cellIndex(row - 1, col)).second))
4741                 rt = 10;
4742         tabline(pi, x, y, x + w, y, lt, rt, colour, drawline, heavy);
4743
4744         // Bottom
4745         lt = rt = 0;
4746         drawline = tabular.bottomLine(cell);
4747         row_type const lastrow = tabular.nrows() - 1;
4748         // Consider multi-rows
4749         row_type r = row;
4750         while (r < lastrow && tabular.isMultiRow(tabular.cellIndex(r, col))
4751                 && tabular.isPartOfMultiRow(r + 1, col))
4752                 r++;
4753         heavy = tabular.use_booktabs
4754                 && ((row == lastrow && tabular.rowBottomLine(row))
4755                     || (r == lastrow && tabular.rowBottomLine(r)));
4756         if (tabular.bottomLineTrim(cell).first)
4757                 lt = 10;
4758         if (tabular.bottomLineTrim(cell).second)
4759                 rt = 10;
4760         tabline(pi, x, y + h, x + w, y + h, lt, rt, colour, drawline, heavy);
4761
4762         // Left
4763         drawline = tabular.leftLine(cell)
4764                 || (col > 0 && tabular.rightLine(tabular.cellIndex(row, col - 1)));
4765         tabline(pi, x, y, x, y + h, 0, 0, colour, drawline);
4766
4767         // Right
4768         x -= tabular.interColumnSpace(cell);
4769         col_type next_cell_col = col + 1;
4770         while (next_cell_col < tabular.ncols()
4771                 && tabular.isMultiColumn(tabular.cellIndex(row, next_cell_col)))
4772                 next_cell_col++;
4773         drawline = tabular.rightLine(cell)
4774                    || (next_cell_col < tabular.ncols()
4775                        && tabular.leftLine(tabular.cellIndex(row, next_cell_col)));
4776         tabline(pi, x + w, y, x + w, y + h, 0, 0, colour, drawline);
4777 }
4778
4779
4780 void InsetTabular::edit(Cursor & cur, bool front, EntryDirection)
4781 {
4782         //lyxerr << "InsetTabular::edit: " << this << endl;
4783         cur.finishUndo();
4784         cur.push(*this);
4785         if (front) {
4786                 if (isRightToLeft(cur))
4787                         cur.idx() = tabular.getLastCellInRow(0);
4788                 else
4789                         cur.idx() = 0;
4790                 cur.pit() = 0;
4791                 cur.pos() = 0;
4792         } else {
4793                 if (isRightToLeft(cur))
4794                         cur.idx() = tabular.getFirstCellInRow(tabular.nrows() - 1);
4795                 else
4796                         cur.idx() = tabular.numberofcells - 1;
4797                 cur.pit() = 0;
4798                 cur.pos() = cur.lastpos(); // FIXME crude guess
4799         }
4800         cur.setCurrentFont();
4801         // FIXME: this accesses the position cache before it is initialized
4802         //cur.bv().fitCursor();
4803 }
4804
4805
4806 void InsetTabular::updateBuffer(ParIterator const & it, UpdateType utype, bool const /*deleted*/)
4807 {
4808         // In a longtable, tell captions what the current float is
4809         Counters & cnts = buffer().masterBuffer()->params().documentClass().counters();
4810         string const saveflt = cnts.current_float();
4811         if (tabular.is_long_tabular) {
4812                 cnts.current_float("table");
4813                 // in longtables, we only step the counter once
4814                 cnts.step(from_ascii("table"), utype);
4815                 cnts.isLongtable(true);
4816         }
4817
4818         ParIterator it2 = it;
4819         it2.forwardPos();
4820         size_t const end = it2.nargs();
4821         for ( ; it2.idx() < end; it2.top().forwardIdx())
4822                 buffer().updateBuffer(it2, utype);
4823
4824         //reset afterwards
4825         if (tabular.is_long_tabular) {
4826                 cnts.current_float(saveflt);
4827                 cnts.isLongtable(false);
4828         }
4829 }
4830
4831
4832 void InsetTabular::addToToc(DocIterator const & cpit, bool output_active,
4833                                                         UpdateType utype, TocBackend & backend) const
4834 {
4835         DocIterator dit = cpit;
4836         dit.forwardPos();
4837         size_t const end = dit.nargs();
4838         for ( ; dit.idx() < end; dit.top().forwardIdx())
4839                 cell(dit.idx())->addToToc(dit, output_active, utype, backend);
4840 }
4841
4842
4843 bool InsetTabular::hitSelectRow(BufferView const & bv, int x) const
4844 {
4845         int const x0 = xo(bv) + ADD_TO_TABULAR_WIDTH;
4846         return x < x0 || x > x0 + tabular.width();
4847 }
4848
4849
4850 bool InsetTabular::hitSelectColumn(BufferView const & bv, int y) const
4851 {
4852         int const y0 = yo(bv) - tabular.rowAscent(0) + tabular.offsetVAlignment();
4853         // FIXME: using ADD_TO_TABULAR_WIDTH is not really correct since
4854         // there is no margin added vertically to tabular insets.
4855         // However, it works for now.
4856         return y < y0 + ADD_TO_TABULAR_WIDTH || y > y0 + tabular.height() - ADD_TO_TABULAR_WIDTH;
4857 }
4858
4859
4860 bool InsetTabular::clickable(BufferView const & bv, int x, int y) const
4861 {
4862         return hitSelectRow(bv, x) || hitSelectColumn(bv, y);
4863 }
4864
4865
4866 void InsetTabular::doDispatch(Cursor & cur, FuncRequest & cmd)
4867 {
4868         LYXERR(Debug::DEBUG, "# InsetTabular::doDispatch: cmd: " << cmd
4869                              << "\n  cur:" << cur);
4870         CursorSlice sl = cur.top();
4871         Cursor & bvcur = cur.bv().cursor();
4872
4873         FuncCode const act = cmd.action();
4874
4875         switch (act) {
4876
4877         case LFUN_MOUSE_PRESS: {
4878                 //lyxerr << "# InsetTabular::MousePress\n" << cur.bv().cursor() << endl;
4879                 // select row
4880                 if (hitSelectRow(cur.bv(), cmd.x())) {
4881                         row_type r = rowFromY(cur, cmd.y());
4882                         cur.idx() = tabular.getFirstCellInRow(r);
4883                         cur.pit() = 0;
4884                         cur.pos() = 0;
4885                         cur.resetAnchor();
4886                         cur.idx() = tabular.getLastCellInRow(r);
4887                         cur.pit() = cur.lastpit();
4888                         cur.pos() = cur.lastpos();
4889                         cur.selection(true);
4890                         bvcur = cur;
4891                         rowselect_ = true;
4892                         break;
4893                 }
4894                 // select column
4895                 if (hitSelectColumn(cur.bv(), cmd.y())) {
4896                         col_type c = columnFromX(cur, cmd.x());
4897                         cur.idx() = tabular.cellIndex(0, c);
4898                         cur.pit() = 0;
4899                         cur.pos() = 0;
4900                         cur.resetAnchor();
4901                         cur.idx() = tabular.cellIndex(tabular.nrows() - 1, c);
4902                         cur.pit() = cur.lastpit();
4903                         cur.pos() = cur.lastpos();
4904                         cur.selection(true);
4905                         bvcur = cur;
4906                         colselect_ = true;
4907                         break;
4908                 }
4909                 // do not reset cursor/selection if we have selected
4910                 // some cells (bug 2715).
4911                 if (cmd.button() == mouse_button::button3
4912                     && &bvcur.selBegin().inset() == this
4913                     && bvcur.selIsMultiCell())
4914                         ;
4915                 else
4916                         // Let InsetTableCell do it
4917                         cell(cur.idx())->dispatch(cur, cmd);
4918                 break;
4919         }
4920         case LFUN_MOUSE_MOTION:
4921                 //lyxerr << "# InsetTabular::MouseMotion\n" << bvcur << endl;
4922                 if (cmd.button() == mouse_button::button1) {
4923                         // only accept motions to places not deeper nested than the real anchor
4924                         if (!bvcur.realAnchor().hasPart(cur)) {
4925                                 cur.undispatched();
4926                                 break;
4927                         }
4928                         // select (additional) row
4929                         if (rowselect_) {
4930                                 row_type r = rowFromY(cur, cmd.y());
4931                                 cur.idx() = tabular.getLastCellInRow(r);
4932                                 // we need to reset the cursor's pit and pos now, as the old ones
4933                                 // may no longer be valid.
4934                                 cur.pit() = 0;
4935                                 cur.pos() = 0;
4936                                 bvcur.setCursor(cur);
4937                                 bvcur.selection(true);
4938                                 break;
4939                         }
4940                         // select (additional) column
4941                         if (colselect_) {
4942                                 col_type c = columnFromX(cur, cmd.x());
4943                                 cur.idx() = tabular.cellIndex(tabular.nrows() - 1, c);
4944                                 // we need to reset the cursor's pit and pos now, as the old ones
4945                                 // may no longer be valid.
4946                                 cur.pit() = 0;
4947                                 cur.pos() = 0;
4948                                 bvcur.setCursor(cur);
4949                                 bvcur.selection(true);
4950                                 break;
4951                         }
4952                         // only update if selection changes
4953                         if (bvcur.idx() == cur.idx() &&
4954                                 !(bvcur.realAnchor().idx() == cur.idx() && bvcur.pos() != cur.pos()))
4955                                 cur.noScreenUpdate();
4956                         setCursorFromCoordinates(cur, cmd.x(), cmd.y());
4957                         bvcur.setCursor(cur);
4958                         bvcur.selection(true);
4959                         // if this is a multicell selection, we just set the cursor to
4960                         // the beginning of the cell's text.
4961                         if (bvcur.selIsMultiCell()) {
4962                                 bvcur.pit() = bvcur.lastpit();
4963                                 bvcur.pos() = bvcur.lastpos();
4964                         }
4965                 }
4966                 break;
4967
4968         case LFUN_MOUSE_RELEASE:
4969                 rowselect_ = false;
4970                 colselect_ = false;
4971                 break;
4972
4973         case LFUN_CELL_BACKWARD:
4974                 movePrevCell(cur);
4975                 cur.selection(false);
4976                 break;
4977
4978         case LFUN_CELL_FORWARD:
4979                 moveNextCell(cur);
4980                 cur.selection(false);
4981                 break;
4982
4983         case LFUN_CHAR_FORWARD_SELECT:
4984         case LFUN_CHAR_FORWARD:
4985         case LFUN_CHAR_BACKWARD_SELECT:
4986         case LFUN_CHAR_BACKWARD:
4987         case LFUN_CHAR_RIGHT_SELECT:
4988         case LFUN_CHAR_RIGHT:
4989         case LFUN_CHAR_LEFT_SELECT:
4990         case LFUN_CHAR_LEFT:
4991         case LFUN_WORD_FORWARD:
4992         case LFUN_WORD_FORWARD_SELECT:
4993         case LFUN_WORD_BACKWARD:
4994         case LFUN_WORD_BACKWARD_SELECT:
4995         case LFUN_WORD_RIGHT:
4996         case LFUN_WORD_RIGHT_SELECT:
4997         case LFUN_WORD_LEFT:
4998         case LFUN_WORD_LEFT_SELECT: {
4999                 // determine whether we move to next or previous cell, where to enter
5000                 // the new cell from, and which command to "finish" (i.e., exit the
5001                 // inset) with:
5002                 bool next_cell;
5003                 EntryDirection entry_from = ENTRY_DIRECTION_IGNORE;
5004                 FuncCode finish_lfun;
5005
5006                 if (act == LFUN_CHAR_FORWARD
5007                                 || act == LFUN_CHAR_FORWARD_SELECT
5008                                 || act == LFUN_WORD_FORWARD
5009                                 || act == LFUN_WORD_FORWARD_SELECT) {
5010                         next_cell = true;
5011                         finish_lfun = LFUN_FINISHED_FORWARD;
5012                 }
5013                 else if (act == LFUN_CHAR_BACKWARD
5014                                 || act == LFUN_CHAR_BACKWARD_SELECT
5015                                 || act == LFUN_WORD_BACKWARD
5016                                 || act == LFUN_WORD_BACKWARD_SELECT) {
5017                         next_cell = false;
5018                         finish_lfun = LFUN_FINISHED_BACKWARD;
5019                 }
5020                 // LEFT or RIGHT commands --- the interpretation will depend on the
5021                 // table's direction.
5022                 else {
5023                         bool const right = act == LFUN_CHAR_RIGHT
5024                                 || act == LFUN_CHAR_RIGHT_SELECT
5025                                 || act == LFUN_WORD_RIGHT
5026                                 || act == LFUN_WORD_RIGHT_SELECT;
5027                         next_cell = isRightToLeft(cur) != right;
5028
5029                         if (lyxrc.visual_cursor)
5030                                 entry_from = right ? ENTRY_DIRECTION_LEFT:ENTRY_DIRECTION_RIGHT;
5031
5032                         finish_lfun = right ? LFUN_FINISHED_RIGHT : LFUN_FINISHED_LEFT;
5033                 }
5034
5035                 bool const select =     act == LFUN_CHAR_FORWARD_SELECT
5036                     || act == LFUN_CHAR_BACKWARD_SELECT
5037                     || act == LFUN_CHAR_RIGHT_SELECT
5038                     || act == LFUN_CHAR_LEFT_SELECT
5039                         || act == LFUN_WORD_FORWARD_SELECT
5040                         || act == LFUN_WORD_RIGHT_SELECT
5041                         || act == LFUN_WORD_BACKWARD_SELECT
5042                         || act == LFUN_WORD_LEFT_SELECT;
5043
5044                 // If we have a multicell selection or we're
5045                 // not doing some LFUN_*_SELECT thing anyway...
5046                 if (!cur.selIsMultiCell() || !select) {
5047                         col_type const c = tabular.cellColumn(cur.idx());
5048                         row_type const r = tabular.cellRow(cur.idx());
5049                         // Are we trying to select the whole cell and is the whole cell
5050                         // not yet selected?
5051                         bool const select_whole = select && !isCellSelected(cur, r, c) &&
5052                                 ((next_cell && cur.pit() == cur.lastpit()
5053                                 && cur.pos() == cur.lastpos())
5054                                 || (!next_cell && cur.pit() == 0 && cur.pos() == 0));
5055
5056                         bool const empty_cell = cur.lastpos() == 0 && cur.lastpit() == 0;
5057
5058                         // ...try to dispatch to the cell's inset.
5059                         cell(cur.idx())->dispatch(cur, cmd);
5060
5061                         // When we already have a selection we want to select the whole cell
5062                         // before going to the next cell.
5063                         if (select_whole && !empty_cell){
5064                                 getText(cur.idx())->selectAll(cur);
5065                                 cur.dispatched();
5066                                 cur.screenUpdateFlags(Update::Force | Update::FitCursor);
5067                                 break;
5068                         }
5069
5070                         // FIXME: When we support the selection of an empty cell, remove
5071                         // the !empty_cell from this condition. For now we jump to the next
5072                         // cell if the current cell is empty.
5073                         if (cur.result().dispatched() && !empty_cell)
5074                                 break;
5075                 }
5076
5077                 // move to next/prev cell, as appropriate
5078                 // note that we will always do this if we're selecting and we have
5079                 // a multicell selection
5080                 LYXERR(Debug::RTL, "entering " << (next_cell ? "next" : "previous")
5081                         << " cell from: " << int(entry_from));
5082                 if (next_cell)
5083                         moveNextCell(cur, entry_from);
5084                 else
5085                         movePrevCell(cur, entry_from);
5086                 // if we're exiting the table, call the appropriate FINISHED lfun
5087                 if (sl == cur.top()) {
5088                         cmd = FuncRequest(finish_lfun);
5089                         cur.undispatched();
5090                 } else
5091                         cur.dispatched();
5092
5093                 cur.screenUpdateFlags(Update::Force | Update::FitCursor);
5094                 break;
5095
5096         }
5097
5098         case LFUN_DOWN_SELECT:
5099         case LFUN_DOWN:
5100                 if (!(cur.selection() && cur.selIsMultiCell()))
5101                         cell(cur.idx())->dispatch(cur, cmd);
5102
5103                 cur.dispatched(); // override the cell's decision
5104                 if (sl == cur.top()) {
5105                         // if our Text didn't do anything to the cursor
5106                         // then we try to put the cursor into the cell below
5107                         // setting also the right targetX.
5108                         cur.selHandle(act == LFUN_DOWN_SELECT);
5109                         if (tabular.cellRow(cur.idx()) != tabular.nrows() - 1) {
5110                                 int const xtarget = cur.targetX();
5111                                 // WARNING: Once cur.idx() has been reset, the cursor is in
5112                                 // an inconsistent state until pos() has been set. Be careful
5113                                 // what you do with it!
5114                                 cur.idx() = tabular.cellBelow(cur.idx());
5115                                 cur.pit() = 0;
5116                                 TextMetrics const & tm =
5117                                         cur.bv().textMetrics(cell(cur.idx())->getText(0));
5118                                 cur.pos() = tm.x2pos(cur.pit(), 0, xtarget);
5119                                 cur.setCurrentFont();
5120                         }
5121                 }
5122                 if (sl == cur.top()) {
5123                         // we trick it to go to forward after leaving the
5124                         // tabular.
5125                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
5126                         cur.undispatched();
5127                 }
5128                 if (cur.selIsMultiCell()) {
5129                         cur.pit() = cur.lastpit();
5130                         cur.pos() = cur.lastpos();
5131                         cur.setCurrentFont();
5132                         cur.screenUpdateFlags(Update::Force | Update::FitCursor);
5133                         return;
5134                 }
5135                 cur.screenUpdateFlags(Update::Force | Update::FitCursor);
5136                 break;
5137
5138         case LFUN_UP_SELECT:
5139         case LFUN_UP:
5140                 if (!(cur.selection() && cur.selIsMultiCell()))
5141                         cell(cur.idx())->dispatch(cur, cmd);
5142                 cur.dispatched(); // override the cell's decision
5143                 if (sl == cur.top()) {
5144                         // if our Text didn't do anything to the cursor
5145                         // then we try to put the cursor into the cell above
5146                         // setting also the right targetX.
5147                         cur.selHandle(act == LFUN_UP_SELECT);
5148                         if (tabular.cellRow(cur.idx()) != 0) {
5149                                 int const xtarget = cur.targetX();
5150                                 // WARNING: Once cur.idx() has been reset, the cursor is in
5151                                 // an inconsistent state until pos() has been set. Be careful
5152                                 // what you do with it!
5153                                 cur.idx() = tabular.cellAbove(cur.idx());
5154                                 cur.pit() = cur.lastpit();
5155                                 Text const * text = cell(cur.idx())->getText(0);
5156                                 TextMetrics const & tm = cur.bv().textMetrics(text);
5157                                 ParagraphMetrics const & pm =
5158                                         tm.parMetrics(cur.lastpit());
5159                                 cur.pos() = tm.x2pos(cur.pit(), pm.rows().size()-1, xtarget);
5160                                 cur.setCurrentFont();
5161                         }
5162                 }
5163                 if (sl == cur.top()) {
5164                         cmd = FuncRequest(LFUN_UP);
5165                         cur.undispatched();
5166                 }
5167                 if (cur.selIsMultiCell()) {
5168                         cur.pit() = 0;
5169                         cur.pos() = cur.lastpos();
5170                         cur.setCurrentFont();
5171                         cur.screenUpdateFlags(Update::Force | Update::FitCursor);
5172                         return;
5173                 }
5174                 cur.screenUpdateFlags(Update::Force | Update::FitCursor);
5175                 break;
5176
5177         case LFUN_LAYOUT_TABULAR:
5178                 cur.bv().showDialog("tabular");
5179                 break;
5180
5181         case LFUN_INSET_MODIFY:
5182                 // we come from the dialog
5183                 if (cmd.getArg(0) == "tabular")
5184                         tabularFeatures(cur, cmd.getLongArg(1));
5185                 else
5186                         cur.undispatched();
5187                 break;
5188
5189         case LFUN_TABULAR_FEATURE:
5190                 tabularFeatures(cur, to_utf8(cmd.argument()));
5191                 break;
5192
5193         // insert file functions
5194         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
5195         case LFUN_FILE_INSERT_PLAINTEXT:
5196                 // FIXME UNICODE
5197                 if (FileName::isAbsolute(to_utf8(cmd.argument()))) {
5198                         docstring const tmpstr = cur.bv().contentsOfPlaintextFile(
5199                                 FileName(to_utf8(cmd.argument())));
5200                         if (tmpstr.empty())
5201                                 break;
5202                         cur.recordUndoInset();
5203                         if (insertPlaintextString(cur.bv(), tmpstr, false)) {
5204                                 // content has been replaced,
5205                                 // so cursor might be invalid
5206                                 cur.pos() = cur.lastpos();
5207                                 cur.pit() = cur.lastpit();
5208                                 bvcur.setCursor(cur);
5209                         } else
5210                                 cur.undispatched();
5211                 }
5212                 break;
5213
5214         case LFUN_CUT:
5215                 if (cur.selIsMultiCell()) {
5216                         if (copySelection(cur)) {
5217                                 cur.recordUndoInset();
5218                                 cutSelection(cur);
5219                         }
5220                 } else
5221                         cell(cur.idx())->dispatch(cur, cmd);
5222                 break;
5223
5224         case LFUN_SELF_INSERT:
5225                 if (cur.selIsMultiCell()) {
5226                         cur.recordUndoInset();
5227                         cutSelection(cur);
5228                         BufferView * bv = &cur.bv();
5229                         docstring::const_iterator cit = cmd.argument().begin();
5230                         docstring::const_iterator const end = cmd.argument().end();
5231                         for (; cit != end; ++cit)
5232                                 bv->translateAndInsert(*cit, getText(cur.idx()), cur);
5233
5234                         cur.resetAnchor();
5235                         bv->bookmarkEditPosition();
5236                 } else
5237                         cell(cur.idx())->dispatch(cur, cmd);
5238                 break;
5239
5240         case LFUN_CHAR_DELETE_BACKWARD:
5241         case LFUN_CHAR_DELETE_FORWARD:
5242                 if (cur.selIsMultiCell()) {
5243                         cur.recordUndoInset();
5244                         cutSelection(cur);
5245                 } else
5246                         cell(cur.idx())->dispatch(cur, cmd);
5247                 break;
5248
5249         case LFUN_COPY:
5250                 if (!cur.selection())
5251                         break;
5252                 if (cur.selIsMultiCell()) {
5253                         cur.finishUndo();
5254                         copySelection(cur);
5255                 } else
5256                         cell(cur.idx())->dispatch(cur, cmd);
5257                 break;
5258
5259         case LFUN_CLIPBOARD_PASTE:
5260         case LFUN_PRIMARY_SELECTION_PASTE: {
5261                 docstring const clip = (act == LFUN_CLIPBOARD_PASTE) ?
5262                         theClipboard().getAsText(Clipboard::PlainTextType) :
5263                         theSelection().get();
5264                 if (clip.empty())
5265                         break;
5266                 // pass to InsertPlaintextString, but
5267                 // only if we have multi-cell content
5268                 if (clip.find_first_of(from_ascii("\t\n")) != docstring::npos) {
5269                         cur.recordUndoInset();
5270                         if (insertPlaintextString(cur.bv(), clip, false)) {
5271                                 // content has been replaced,
5272                                 // so cursor might be invalid
5273                                 cur.pos() = cur.lastpos();
5274                                 cur.pit() = cur.lastpit();
5275                                 bvcur.setCursor(cur);
5276                                 break;
5277                         }
5278                 }
5279                 // Let the cell handle normal text
5280                 cell(cur.idx())->dispatch(cur, cmd);
5281                 break;
5282         }
5283
5284         case LFUN_PASTE:
5285                 if (!tabularStackDirty()) {
5286                         // Check if we have plain text or HTML with rows/columns.
5287                         // and if so, pass over to LFUN_CLIPBOARD_PASTE
5288                         if (theClipboard().hasTextContents(Clipboard::AnyTextType)
5289                             && !theClipboard().hasTextContents(Clipboard::LyXTextType)) {
5290                                 docstring const clip =
5291                                         theClipboard().getAsText(Clipboard::AnyTextType);
5292                                 if (clip.find_first_of(from_ascii("\t\n")) != docstring::npos) {
5293                                         FuncRequest ncmd = FuncRequest(LFUN_CLIPBOARD_PASTE, cmd.argument());
5294                                         doDispatch(cur, ncmd);
5295                                         break;
5296                                 }
5297                         }
5298                         else if (theClipboard().hasTextContents(Clipboard::LyXTextType)) {
5299                                 // This might be tabular data from another LyX instance. Check!
5300                                 docstring const clip =
5301                                         theClipboard().getAsText(Clipboard::PlainTextType);
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                         if (!cur.selIsMultiCell())
5309                                 cell(cur.idx())->dispatch(cur, cmd);
5310                         break;
5311                 }
5312                 if (theClipboard().isInternal()) {
5313                         cur.recordUndoInset();
5314                         pasteClipboard(cur);
5315                 }
5316                 break;
5317
5318         case LFUN_CHANGE_ACCEPT:
5319         case LFUN_CHANGE_REJECT:
5320         case LFUN_FONT_EMPH:
5321         case LFUN_FONT_BOLD:
5322         case LFUN_FONT_BOLDSYMBOL:
5323         case LFUN_FONT_ROMAN:
5324         case LFUN_FONT_NOUN:
5325         case LFUN_FONT_ITAL:
5326         case LFUN_FONT_FRAK:
5327         case LFUN_FONT_TYPEWRITER:
5328         case LFUN_FONT_SANS:
5329         case LFUN_TEXTSTYLE_APPLY:
5330         case LFUN_TEXTSTYLE_UPDATE:
5331         case LFUN_FONT_SIZE:
5332         case LFUN_FONT_UNDERLINE:
5333         case LFUN_FONT_STRIKEOUT:
5334         case LFUN_FONT_CROSSOUT:
5335         case LFUN_FONT_UNDERUNDERLINE:
5336         case LFUN_FONT_UNDERWAVE:
5337         case LFUN_LANGUAGE:
5338         case LFUN_PARAGRAPH_PARAMS_APPLY:
5339         case LFUN_PARAGRAPH_PARAMS:
5340         case LFUN_WORD_CAPITALIZE:
5341         case LFUN_WORD_UPCASE:
5342         case LFUN_WORD_LOWCASE:
5343         case LFUN_CHARS_TRANSPOSE: {
5344                 bool const ct = (act == LFUN_CHANGE_ACCEPT || act == LFUN_CHANGE_REJECT);
5345                 if (cur.selIsMultiCell()) {
5346                         row_type rs, re;
5347                         col_type cs, ce;
5348                         getSelection(cur, rs, re, cs, ce);
5349                         Cursor tmpcur = cur;
5350                         for (row_type r = rs; r <= re; ++r) {
5351                                 if (ct && cs == 0 && ce == tabular.ncols() - 1) {
5352                                         // whole row selected
5353                                         if (act == LFUN_CHANGE_ACCEPT) {
5354                                                 if (tabular.row_info[r].change.inserted())
5355                                                         tabular.row_info[r].change.setUnchanged();
5356                                                 else if (tabular.row_info[r].change.deleted()) {
5357                                                         tabular.deleteRow(r, true);
5358                                                         --re;
5359                                                         continue;
5360                                                 }
5361                                         } else {
5362                                                 if (tabular.row_info[r].change.deleted())
5363                                                         tabular.row_info[r].change.setUnchanged();
5364                                                 else if (tabular.row_info[r].change.inserted()) {
5365                                                         tabular.deleteRow(r, true);
5366                                                         --re;
5367                                                         continue;
5368                                                 }
5369                                         }
5370                                 }
5371                                 for (col_type c = cs; c <= ce; ++c) {
5372                                         if (ct && rs == 0 && re == tabular.nrows() - 1) {
5373                                                 // whole col selected
5374                                                 if (act == LFUN_CHANGE_ACCEPT) {
5375                                                         if (tabular.column_info[c].change.inserted())
5376                                                                 tabular.column_info[c].change.setUnchanged();
5377                                                         else if (tabular.column_info[c].change.deleted()) {
5378                                                                 tabular.deleteColumn(c, true);
5379                                                                 --ce;
5380                                                                 continue;
5381                                                         }
5382                                                 } else {
5383                                                         if (tabular.column_info[c].change.deleted())
5384                                                                 tabular.column_info[c].change.setUnchanged();
5385                                                         else if (tabular.column_info[c].change.inserted()) {
5386                                                                 tabular.deleteColumn(c, true);
5387                                                                 --ce;
5388                                                                 continue;
5389                                                         }
5390                                                 }
5391                                         }
5392                                         // cursor follows cell:
5393                                         tmpcur.idx() = tabular.cellIndex(r, c);
5394                                         // select this cell only:
5395                                         tmpcur.pit() = 0;
5396                                         tmpcur.pos() = 0;
5397                                         tmpcur.resetAnchor();
5398                                         tmpcur.pit() = tmpcur.lastpit();
5399                                         tmpcur.pos() = tmpcur.top().lastpos();
5400                                         tmpcur.setCursor(tmpcur);
5401                                         tmpcur.setSelection();
5402                                         cell(tmpcur.idx())->dispatch(tmpcur, cmd);
5403                                 }
5404                         }
5405                         if (ct) {
5406                                 tabular.updateIndexes();
5407                                 // cursor might be invalid
5408                                 cur.fixIfBroken();
5409                                 // change bar might need to be redrawn
5410                                 cur.screenUpdateFlags(Update::Force);
5411                                 cur.forceBufferUpdate();
5412                         }
5413                         break;
5414                 } else {
5415                         cell(cur.idx())->dispatch(cur, cmd);
5416                         break;
5417                 }
5418         }
5419
5420         case LFUN_CHANGE_NEXT:
5421         case LFUN_CHANGE_PREVIOUS: {
5422                 // BufferView::dispatch has already moved the cursor, we just
5423                 // need to select here if we have a changed row or column
5424                 if (tabular.row_info[tabular.cellRow(cur.idx())].change.changed()) {
5425                         // select row
5426                         cur.idx() = tabular.getFirstCellInRow(tabular.cellRow(cur.idx()));
5427                         cur.pit() = 0;
5428                         cur.pos() = 0;
5429                         cur.resetAnchor();
5430                         cur.idx() = tabular.getLastCellInRow(tabular.cellRow(cur.idx()));
5431                         cur.pit() = cur.lastpit();
5432                         cur.pos() = cur.lastpos();
5433                         cur.selection(true);
5434                         bvcur = cur;
5435                         rowselect_ = true;
5436                 }
5437                 else if (tabular.column_info[tabular.cellColumn(cur.idx())].change.changed()) {
5438                         // select column
5439                         cur.idx() = tabular.cellIndex(0, tabular.cellColumn(cur.idx()));
5440                         cur.pit() = 0;
5441                         cur.pos() = 0;
5442                         cur.resetAnchor();
5443                         cur.idx() = tabular.cellIndex(tabular.nrows() - 1, tabular.cellColumn(cur.idx()));
5444                         cur.pit() = cur.lastpit();
5445                         cur.pos() = cur.lastpos();
5446                         cur.selection(true);
5447                         bvcur = cur;
5448                         colselect_ = true;
5449                 }
5450                 break;
5451         }
5452
5453         case LFUN_INSET_SETTINGS:
5454                 // relay this lfun to Inset, not to the cell.
5455                 Inset::doDispatch(cur, cmd);
5456                 break;
5457
5458         default:
5459                 // we try to handle this event in the insets dispatch function.
5460                 cell(cur.idx())->dispatch(cur, cmd);
5461                 break;
5462         }
5463 }
5464
5465
5466 bool InsetTabular::getFeatureStatus(Cursor & cur, string const & s,
5467                       string const & argument, FuncStatus & status) const
5468 {
5469
5470                 int action = Tabular::LAST_ACTION;
5471                 int i = 0;
5472                 for (; tabularFeature[i].action != Tabular::LAST_ACTION; ++i) {
5473                         if (tabularFeature[i].feature == s) {
5474                                 action = tabularFeature[i].action;
5475                                 break;
5476                         }
5477                 }
5478                 if (action == Tabular::LAST_ACTION) {
5479                         status.clear();
5480                         status.setUnknown(true);
5481                         return true;
5482                 }
5483
5484                 row_type sel_row_start = 0;
5485                 row_type sel_row_end = 0;
5486                 col_type sel_col_start = 0;
5487                 col_type sel_col_end = 0;
5488                 Tabular::ltType dummyltt;
5489                 bool flag = true;
5490
5491                 getSelection(cur, sel_row_start, sel_row_end, sel_col_start, sel_col_end);
5492
5493                 switch (action) {
5494                 case Tabular::SET_PWIDTH:
5495                 case Tabular::SET_MPWIDTH:
5496                 case Tabular::TOGGLE_VARWIDTH_COLUMN:
5497                 case Tabular::SET_SPECIAL_COLUMN:
5498                 case Tabular::SET_SPECIAL_MULTICOLUMN:
5499                 case Tabular::APPEND_ROW:
5500                 case Tabular::APPEND_COLUMN:
5501                 case Tabular::DELETE_ROW:
5502                 case Tabular::DELETE_COLUMN:
5503                 case Tabular::COPY_ROW:
5504                 case Tabular::COPY_COLUMN:
5505                 case Tabular::SET_TOP_SPACE:
5506                 case Tabular::SET_BOTTOM_SPACE:
5507                 case Tabular::SET_INTERLINE_SPACE:
5508                         status.clear();
5509                         return true;
5510
5511                 case Tabular::SET_TABULAR_WIDTH:
5512                         status.setEnabled(!tabular.rotate
5513                                 && tabular.tabular_valignment == Tabular::LYX_VALIGN_MIDDLE);
5514                         break;
5515
5516                 case Tabular::MOVE_COLUMN_RIGHT:
5517                 case Tabular::MOVE_COLUMN_LEFT:
5518                 case Tabular::MOVE_ROW_DOWN:
5519                 case Tabular::MOVE_ROW_UP: {
5520                         if (cur.selection()) {
5521                                 status.message(_("Selections not supported."));
5522                                 status.setEnabled(false);
5523                                 break;
5524                         }
5525
5526                         if ((action == Tabular::MOVE_COLUMN_RIGHT &&
5527                                 tabular.ncols() == tabular.cellColumn(cur.idx()) + 1) ||
5528                             (action == Tabular::MOVE_COLUMN_LEFT &&
5529                                 tabular.cellColumn(cur.idx()) == 0) ||
5530                             (action == Tabular::MOVE_ROW_DOWN &&
5531                                 tabular.nrows() == tabular.cellRow(cur.idx()) + 1) ||
5532                             (action == Tabular::MOVE_ROW_UP &&
5533                                 tabular.cellRow(cur.idx()) == 0)) {
5534                                         status.setEnabled(false);
5535                                         break;
5536                         }
5537
5538                         if (action == Tabular::MOVE_COLUMN_RIGHT ||
5539                             action == Tabular::MOVE_COLUMN_LEFT) {
5540                                 if (tabular.hasMultiColumn(tabular.cellColumn(cur.idx())) ||
5541                                     tabular.hasMultiColumn(tabular.cellColumn(cur.idx()) +
5542                                         (action == Tabular::MOVE_COLUMN_RIGHT ? 1 : -1))) {
5543                                         status.message(_("Multi-column in current or"
5544                                                          " destination column."));
5545                                         status.setEnabled(false);
5546                                         break;
5547                                 }
5548                         }
5549
5550                         if (action == Tabular::MOVE_ROW_DOWN ||
5551                             action == Tabular::MOVE_ROW_UP) {
5552                                 if (tabular.hasMultiRow(tabular.cellRow(cur.idx())) ||
5553                                     tabular.hasMultiRow(tabular.cellRow(cur.idx()) +
5554                                         (action == Tabular::MOVE_ROW_DOWN ? 1 : -1))) {
5555                                         status.message(_("Multi-row in current or"
5556                                                          " destination row."));
5557                                         status.setEnabled(false);
5558                                         break;
5559                                 }
5560                         }
5561
5562                         status.setEnabled(true);
5563                         break;
5564                 }
5565
5566                 case Tabular::SET_DECIMAL_POINT:
5567                         status.setEnabled(
5568                                 tabular.getAlignment(cur.idx()) == LYX_ALIGN_DECIMAL);
5569                         break;
5570
5571                 case Tabular::SET_MULTICOLUMN:
5572                 case Tabular::UNSET_MULTICOLUMN:
5573                 case Tabular::MULTICOLUMN:
5574                         // If a row is set as longtable caption, it must not be allowed
5575                         // to unset that this row is a multicolumn.
5576                         status.setEnabled(sel_row_start == sel_row_end
5577                                 && !tabular.ltCaption(tabular.cellRow(cur.idx())));
5578                         status.setOnOff(tabular.isMultiColumn(cur.idx()));
5579                         break;
5580
5581                 case Tabular::SET_MULTIROW:
5582                 case Tabular::UNSET_MULTIROW:
5583                 case Tabular::MULTIROW:
5584                         // If a row is set as longtable caption, it must not be allowed
5585                         // to unset that this row is a multirow.
5586                         status.setEnabled(sel_col_start == sel_col_end
5587                                 && !tabular.ltCaption(tabular.cellRow(cur.idx())));
5588                         status.setOnOff(tabular.isMultiRow(cur.idx()));
5589                         break;
5590
5591                 case Tabular::SET_ALL_LINES:
5592                 case Tabular::UNSET_ALL_LINES:
5593                 case Tabular::SET_INNER_LINES:
5594                 case Tabular::SET_BORDER_LINES:
5595                         status.setEnabled(!tabular.ltCaption(tabular.cellRow(cur.idx())));
5596                         break;
5597
5598                 case Tabular::RESET_FORMAL_DEFAULT:
5599                         status.setEnabled(tabular.use_booktabs);
5600                         break;
5601
5602                 case Tabular::SET_LINE_TOP:
5603                 case Tabular::SET_LINE_BOTTOM:
5604                         status.setEnabled(!tabular.ltCaption(tabular.cellRow(cur.idx())));
5605                         break;
5606
5607                 case Tabular::SET_LINE_LEFT:
5608                 case Tabular::SET_LINE_RIGHT:
5609                         status.setEnabled(!tabular.use_booktabs
5610                                           && !tabular.ltCaption(tabular.cellRow(cur.idx())));
5611                         break;
5612
5613                 case Tabular::SET_LTRIM_TOP:
5614                 case Tabular::SET_RTRIM_TOP:
5615                         status.setEnabled(tabular.use_booktabs
5616                                           && tabular.cellRow(cur.idx()) != 0
5617                                           && !tabular.ltCaption(tabular.cellRow(cur.idx())));
5618                         break;
5619
5620                 case Tabular::SET_LTRIM_BOTTOM:
5621                 case Tabular::SET_RTRIM_BOTTOM:
5622                         status.setEnabled(tabular.use_booktabs
5623                                           && tabular.cellRow(cur.idx()) != tabular.nrows() - 1
5624                                           && !tabular.ltCaption(tabular.cellRow(cur.idx())));
5625                         break;
5626
5627                 case Tabular::TOGGLE_LINE_TOP:
5628                         status.setEnabled(!tabular.ltCaption(tabular.cellRow(cur.idx())));
5629                         status.setOnOff(tabular.topLine(cur.idx()));
5630                         break;
5631
5632                 case Tabular::TOGGLE_LINE_BOTTOM:
5633                         status.setEnabled(!tabular.ltCaption(tabular.cellRow(cur.idx())));
5634                         status.setOnOff(tabular.bottomLine(cur.idx()));
5635                         break;
5636
5637                 case Tabular::TOGGLE_LINE_LEFT:
5638                         status.setEnabled(!tabular.use_booktabs
5639                                           && !tabular.ltCaption(tabular.cellRow(cur.idx())));
5640                         status.setOnOff(tabular.leftLine(cur.idx()));
5641                         break;
5642
5643                 case Tabular::TOGGLE_LINE_RIGHT:
5644                         status.setEnabled(!tabular.use_booktabs
5645                                           && !tabular.ltCaption(tabular.cellRow(cur.idx())));
5646                         status.setOnOff(tabular.rightLine(cur.idx()));
5647                         break;
5648
5649                 case Tabular::TOGGLE_LTRIM_TOP:
5650                         status.setEnabled(tabular.use_booktabs
5651                                           && !tabular.ltCaption(tabular.cellRow(cur.idx())));
5652                         status.setOnOff(tabular.topLineTrim(cur.idx()).first);
5653                         break;
5654
5655                 case Tabular::TOGGLE_RTRIM_TOP:
5656                         status.setEnabled(tabular.use_booktabs
5657                                           && !tabular.ltCaption(tabular.cellRow(cur.idx())));
5658                         status.setOnOff(tabular.topLineTrim(cur.idx()).second);
5659                         break;
5660
5661                 case Tabular::TOGGLE_LTRIM_BOTTOM:
5662                         status.setEnabled(tabular.use_booktabs
5663                                           && !tabular.ltCaption(tabular.cellRow(cur.idx())));
5664                         status.setOnOff(tabular.bottomLineTrim(cur.idx()).first);
5665                         break;
5666
5667                 case Tabular::TOGGLE_RTRIM_BOTTOM:
5668                         status.setEnabled(tabular.use_booktabs
5669                                           && !tabular.ltCaption(tabular.cellRow(cur.idx())));
5670                         status.setOnOff(tabular.bottomLineTrim(cur.idx()).second);
5671                         break;
5672
5673                 // multirow cells only inherit the alignment of the column if the column has
5674                 // no width, otherwise they are left-aligned
5675                 // therefore allow always left but right and center only if there is no width
5676                 case Tabular::M_ALIGN_LEFT:
5677                         flag = false;
5678                         // fall through
5679                 case Tabular::ALIGN_LEFT:
5680                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_LEFT);
5681                         break;
5682
5683                 case Tabular::M_ALIGN_RIGHT:
5684                         flag = false;
5685                         // fall through
5686                 case Tabular::ALIGN_RIGHT:
5687                         status.setEnabled(!(tabular.isMultiRow(cur.idx())
5688                                 && !tabular.getPWidth(cur.idx()).zero()));
5689                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_RIGHT);
5690                         break;
5691
5692                 case Tabular::M_ALIGN_CENTER:
5693                         flag = false;
5694                         // fall through
5695                 case Tabular::ALIGN_CENTER:
5696                         status.setEnabled(!(tabular.isMultiRow(cur.idx())
5697                                 && !tabular.getPWidth(cur.idx()).zero()));
5698                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_CENTER);
5699                         break;
5700
5701                 case Tabular::ALIGN_BLOCK:
5702                         status.setEnabled(!tabular.getPWidth(cur.idx()).zero()
5703                                 && !tabular.isMultiRow(cur.idx()));
5704                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_BLOCK);
5705                         break;
5706
5707                 case Tabular::ALIGN_DECIMAL:
5708                         status.setEnabled(!tabular.isMultiRow(cur.idx())
5709                                 && !tabular.isMultiColumn(cur.idx()));
5710                         status.setOnOff(tabular.getAlignment(cur.idx(), true) == LYX_ALIGN_DECIMAL);
5711                         break;
5712
5713                 case Tabular::M_VALIGN_TOP:
5714                         flag = false;
5715                         // fall through
5716                 case Tabular::VALIGN_TOP:
5717                         status.setEnabled(!tabular.getPWidth(cur.idx()).zero()
5718                                 && !tabular.isMultiRow(cur.idx()));
5719                         status.setOnOff(
5720                                 tabular.getVAlignment(cur.idx(), flag) == Tabular::LYX_VALIGN_TOP);
5721                         break;
5722
5723                 case Tabular::M_VALIGN_BOTTOM:
5724                         flag = false;
5725                         // fall through
5726                 case Tabular::VALIGN_BOTTOM:
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_BOTTOM);
5731                         break;
5732
5733                 case Tabular::M_VALIGN_MIDDLE:
5734                         flag = false;
5735                         // fall through
5736                 case Tabular::VALIGN_MIDDLE:
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_MIDDLE);
5741                         break;
5742
5743                 case Tabular::SET_LONGTABULAR:
5744                 case Tabular::TOGGLE_LONGTABULAR:
5745                         // setting as longtable is not allowed when table is inside a float
5746                         if (cur.innerInsetOfType(FLOAT_CODE) != 0
5747                                 || cur.innerInsetOfType(WRAP_CODE) != 0)
5748                                 status.setEnabled(false);
5749                         else
5750                                 status.setEnabled(true);
5751                         status.setOnOff(tabular.is_long_tabular);
5752                         break;
5753
5754                 case Tabular::UNSET_LONGTABULAR:
5755                         status.setOnOff(!tabular.is_long_tabular);
5756                         break;
5757
5758                 case Tabular::TOGGLE_ROTATE_TABULAR:
5759                 case Tabular::SET_ROTATE_TABULAR:
5760                         status.setOnOff(tabular.rotate != 0);
5761                         break;
5762
5763                 case Tabular::TABULAR_VALIGN_TOP:
5764                         status.setEnabled(tabular.tabular_width.zero());
5765                         status.setOnOff(tabular.tabular_valignment
5766                                 == Tabular::LYX_VALIGN_TOP);
5767                         break;
5768                 case Tabular::TABULAR_VALIGN_MIDDLE:
5769                         status.setEnabled(tabular.tabular_width.zero());
5770                         status.setOnOff(tabular.tabular_valignment
5771                                 == Tabular::LYX_VALIGN_MIDDLE);
5772                         break;
5773                 case Tabular::TABULAR_VALIGN_BOTTOM:
5774                         status.setEnabled(tabular.tabular_width.zero());
5775                         status.setOnOff(tabular.tabular_valignment
5776                                 == Tabular::LYX_VALIGN_BOTTOM);
5777                         break;
5778
5779                 case Tabular::LONGTABULAR_ALIGN_LEFT:
5780                         status.setOnOff(tabular.longtabular_alignment
5781                                 == Tabular::LYX_LONGTABULAR_ALIGN_LEFT);
5782                         break;
5783                 case Tabular::LONGTABULAR_ALIGN_CENTER:
5784                         status.setOnOff(tabular.longtabular_alignment
5785                                 == Tabular::LYX_LONGTABULAR_ALIGN_CENTER);
5786                         break;
5787                 case Tabular::LONGTABULAR_ALIGN_RIGHT:
5788                         status.setOnOff(tabular.longtabular_alignment
5789                                 == Tabular::LYX_LONGTABULAR_ALIGN_RIGHT);
5790                         break;
5791
5792                 case Tabular::UNSET_ROTATE_TABULAR:
5793                         status.setOnOff(tabular.rotate == 0);
5794                         break;
5795
5796                 case Tabular::TOGGLE_ROTATE_CELL:
5797                 case Tabular::SET_ROTATE_CELL:
5798                         status.setOnOff(!oneCellHasRotationState(false,
5799                                 sel_row_start, sel_row_end, sel_col_start, sel_col_end));
5800                         break;
5801
5802                 case Tabular::UNSET_ROTATE_CELL:
5803                         status.setOnOff(!oneCellHasRotationState(true,
5804                                 sel_row_start, sel_row_end, sel_col_start, sel_col_end));
5805                         break;
5806
5807                 case Tabular::SET_USEBOX:
5808                         status.setOnOff(convert<int>(argument) == tabular.getUsebox(cur.idx()));
5809                         break;
5810
5811                 // every row can only be one thing:
5812                 // either a footer or header
5813                 case Tabular::SET_LTFIRSTHEAD:
5814                         status.setEnabled(sel_row_start == sel_row_end);
5815                         status.setOnOff(tabular.getRowOfLTFirstHead(sel_row_start, dummyltt));
5816                         break;
5817
5818                 case Tabular::UNSET_LTFIRSTHEAD:
5819                         status.setEnabled(sel_row_start == sel_row_end);
5820                         status.setOnOff(!tabular.getRowOfLTFirstHead(sel_row_start, dummyltt));
5821                         break;
5822
5823                 case Tabular::SET_LTHEAD:
5824                         status.setEnabled(sel_row_start == sel_row_end);
5825                         status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
5826                         break;
5827
5828                 case Tabular::UNSET_LTHEAD:
5829                         status.setEnabled(sel_row_start == sel_row_end);
5830                         status.setOnOff(!tabular.getRowOfLTHead(sel_row_start, dummyltt));
5831                         break;
5832
5833                 case Tabular::SET_LTFOOT:
5834                         status.setEnabled(sel_row_start == sel_row_end);
5835                         status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
5836                         break;
5837
5838                 case Tabular::UNSET_LTFOOT:
5839                         status.setEnabled(sel_row_start == sel_row_end);
5840                         status.setOnOff(!tabular.getRowOfLTFoot(sel_row_start, dummyltt));
5841                         break;
5842
5843                 case Tabular::SET_LTLASTFOOT:
5844                         status.setEnabled(sel_row_start == sel_row_end);
5845                         status.setOnOff(tabular.getRowOfLTLastFoot(sel_row_start, dummyltt));
5846                         break;
5847
5848                 case Tabular::UNSET_LTLASTFOOT:
5849                         status.setEnabled(sel_row_start == sel_row_end);
5850                         status.setOnOff(!tabular.getRowOfLTLastFoot(sel_row_start, dummyltt));
5851                         break;
5852
5853                 case Tabular::SET_LTNEWPAGE:
5854                         status.setOnOff(tabular.getLTNewPage(sel_row_start));
5855                         break;
5856                 case Tabular::UNSET_LTNEWPAGE:
5857                         status.setOnOff(!tabular.getLTNewPage(sel_row_start));
5858                         break;
5859
5860                 // only one row in head/firsthead/foot/lasthead can be the caption
5861                 // and a multirow cannot be set as caption
5862                 case Tabular::SET_LTCAPTION:
5863                         status.setEnabled(sel_row_start == sel_row_end
5864                                 && (!tabular.getRowOfLTFirstHead(sel_row_start, dummyltt)
5865                                  || !tabular.haveLTCaption(Tabular::CAPTION_FIRSTHEAD))
5866                                 && (!tabular.getRowOfLTHead(sel_row_start, dummyltt)
5867                                  || !tabular.haveLTCaption(Tabular::CAPTION_HEAD))
5868                                 && (!tabular.getRowOfLTFoot(sel_row_start, dummyltt)
5869                                  || !tabular.haveLTCaption(Tabular::CAPTION_FOOT))
5870                                 && (!tabular.getRowOfLTLastFoot(sel_row_start, dummyltt)
5871                                  || !tabular.haveLTCaption(Tabular::CAPTION_LASTFOOT))
5872                                 && !tabular.isMultiRow(sel_row_start));
5873                         status.setOnOff(tabular.ltCaption(sel_row_start));
5874                         break;
5875
5876                 case Tabular::UNSET_LTCAPTION:
5877                         status.setEnabled(sel_row_start == sel_row_end && tabular.ltCaption(sel_row_start));
5878                         break;
5879
5880                 case Tabular::TOGGLE_LTCAPTION:
5881                         status.setEnabled(sel_row_start == sel_row_end && (tabular.ltCaption(sel_row_start)
5882                                 || ((!tabular.getRowOfLTFirstHead(sel_row_start, dummyltt)
5883                                   || !tabular.haveLTCaption(Tabular::CAPTION_FIRSTHEAD))
5884                                  && (!tabular.getRowOfLTHead(sel_row_start, dummyltt)
5885                                   || !tabular.haveLTCaption(Tabular::CAPTION_HEAD))
5886                                  && (!tabular.getRowOfLTFoot(sel_row_start, dummyltt)
5887                                   || !tabular.haveLTCaption(Tabular::CAPTION_FOOT))
5888                                  && (!tabular.getRowOfLTLastFoot(sel_row_start, dummyltt)
5889                                   || !tabular.haveLTCaption(Tabular::CAPTION_LASTFOOT)))));
5890                         status.setOnOff(tabular.ltCaption(sel_row_start));
5891                         break;
5892
5893                 case Tabular::TOGGLE_BOOKTABS:
5894                 case Tabular::SET_BOOKTABS:
5895                         status.setOnOff(tabular.use_booktabs);
5896                         break;
5897
5898                 case Tabular::UNSET_BOOKTABS:
5899                         status.setOnOff(!tabular.use_booktabs);
5900                         break;
5901
5902                 default:
5903                         status.clear();
5904                         status.setEnabled(false);
5905                         break;
5906                 }
5907                 return true;
5908 }
5909
5910
5911 // function sets an object as defined in FuncStatus.h:
5912 // states OK, Unknown, Disabled, On, Off.
5913 bool InsetTabular::getStatus(Cursor & cur, FuncRequest const & cmd,
5914                              FuncStatus & status) const
5915 {
5916         switch (cmd.action()) {
5917         case LFUN_INSET_MODIFY:
5918                 if (cmd.getArg(0) != "tabular")
5919                         break;
5920                 if (cmd.getArg(1) == "for-dialog") {
5921                         // The dialog is asking the status of a command
5922                         if (&cur.inset() != this)
5923                                 break;
5924                         string action = cmd.getArg(2);
5925                         string arg = cmd.getLongArg(3);
5926                         return getFeatureStatus(cur, action, arg, status);
5927                 } else {
5928                         // We always enable the lfun if it is coming from the dialog
5929                         // because the dialog makes sure all the settings are valid,
5930                         // even though the first argument might not be valid now.
5931                         status.setEnabled(true);
5932                         return true;
5933                 }
5934
5935         case LFUN_TABULAR_FEATURE: {
5936                 if (&cur.inset() != this)
5937                         break;
5938                 string action = cmd.getArg(0);
5939                 string arg = cmd.getLongArg(1);
5940                 return getFeatureStatus(cur, action, arg, status);
5941         }
5942
5943         case LFUN_CAPTION_INSERT: {
5944                 // caption is only allowed in caption cell of longtable
5945                 if (!tabular.ltCaption(tabular.cellRow(cur.idx()))) {
5946                         status.setEnabled(false);
5947                         return true;
5948                 }
5949                 // only standard caption is allowed
5950                 string arg = cmd.getArg(0);
5951                 if (!arg.empty() && arg != "Standard") {
5952                         status.setEnabled(false);
5953                         return true;
5954                 }
5955                 // check if there is already a caption
5956                 bool have_caption = false;
5957                 InsetTableCell itc = InsetTableCell(*tabular.cellInset(cur.idx()));
5958                 ParagraphList::const_iterator pit = itc.paragraphs().begin();
5959                 ParagraphList::const_iterator pend = itc.paragraphs().end();
5960                 for (; pit != pend; ++pit) {
5961                         InsetList::const_iterator it  = pit->insetList().begin();
5962                         InsetList::const_iterator end = pit->insetList().end();
5963                         for (; it != end; ++it) {
5964                                 if (it->inset->lyxCode() == CAPTION_CODE) {
5965                                         have_caption = true;
5966                                         break;
5967                                 }
5968                         }
5969                 }
5970                 status.setEnabled(!have_caption);
5971                 return true;
5972         }
5973
5974         // These are only enabled inside tabular
5975         case LFUN_CELL_BACKWARD:
5976         case LFUN_CELL_FORWARD:
5977                 status.setEnabled(true);
5978                 return true;
5979
5980         // disable these with multiple cells selected
5981         case LFUN_INSET_INSERT:
5982         case LFUN_TABULAR_INSERT:
5983         case LFUN_TABULAR_STYLE_INSERT:
5984         case LFUN_FLEX_INSERT:
5985         case LFUN_FLOAT_INSERT:
5986         case LFUN_FLOAT_WIDE_INSERT:
5987         case LFUN_FOOTNOTE_INSERT:
5988         case LFUN_MARGINALNOTE_INSERT:
5989         case LFUN_MATH_INSERT:
5990         case LFUN_MATH_MODE:
5991         case LFUN_MATH_MUTATE:
5992         case LFUN_MATH_DISPLAY:
5993         case LFUN_NOTE_INSERT:
5994         case LFUN_ARGUMENT_INSERT:
5995         case LFUN_BOX_INSERT:
5996         case LFUN_BRANCH_INSERT:
5997         case LFUN_PHANTOM_INSERT:
5998         case LFUN_WRAP_INSERT:
5999         case LFUN_PREVIEW_INSERT:
6000         case LFUN_ERT_INSERT: {
6001                 if (cur.selIsMultiCell()) {
6002                         status.setEnabled(false);
6003                         return true;
6004                 } else
6005                         return cell(cur.idx())->getStatus(cur, cmd, status);
6006         }
6007
6008         case LFUN_CHANGE_ACCEPT:
6009         case LFUN_CHANGE_REJECT: {
6010                 if (cur.selIsMultiCell()) {
6011                         row_type rs, re;
6012                         col_type cs, ce;
6013                         getSelection(cur, rs, re, cs, ce);
6014                         for (row_type r = rs; r <= re; ++r) {
6015                                 if (tabular.row_info[r].change.changed()) {
6016                                         status.setEnabled(true);
6017                                         return true;
6018                                 }
6019                                 for (col_type c = cs; c <= ce; ++c) {
6020                                         if (tabular.column_info[c].change.changed()) {
6021                                                 status.setEnabled(true);
6022                                                 return true;
6023                                         }
6024                                 }
6025                         }
6026                 } else {
6027                         if (tabular.row_info[tabular.cellRow(cur.idx())].change.changed()) {
6028                                 status.setEnabled(true);
6029                                 return true;
6030                         }
6031                         else if (tabular.column_info[tabular.cellColumn(cur.idx())].change.changed()) {
6032                                 status.setEnabled(true);
6033                                 return true;
6034                         }
6035                 }
6036                 return cell(cur.idx())->getStatus(cur, cmd, status);
6037         }
6038
6039         // disable in non-fixed-width cells
6040         case LFUN_PARAGRAPH_BREAK:
6041                 // multirow does not allow paragraph breaks
6042                 if (tabular.isMultiRow(cur.idx())) {
6043                         status.setEnabled(false);
6044                         return true;
6045                 }
6046                 // fall through
6047         case LFUN_NEWLINE_INSERT:
6048                 if ((tabular.isMultiColumn(cur.idx()) || tabular.isMultiRow(cur.idx()))
6049                     && tabular.getPWidth(cur.idx()).zero()) {
6050                         status.setEnabled(false);
6051                         return true;
6052                 }
6053                 return cell(cur.idx())->getStatus(cur, cmd, status);
6054
6055         case LFUN_NEWPAGE_INSERT:
6056                 status.setEnabled(false);
6057                 return true;
6058
6059         case LFUN_PASTE:
6060                 if (tabularStackDirty() && theClipboard().isInternal()) {
6061                         if (cur.selIsMultiCell()) {
6062                                 row_type rs, re;
6063                                 col_type cs, ce;
6064                                 getSelection(cur, rs, re, cs, ce);
6065                                 if (paste_tabular && paste_tabular->ncols() == ce - cs + 1
6066                                           && paste_tabular->nrows() == re - rs + 1)
6067                                         status.setEnabled(true);
6068                                 else {
6069                                         status.setEnabled(false);
6070                                         status.message(_("Selection size should match clipboard content."));
6071                                 }
6072                         } else
6073                                 status.setEnabled(true);
6074                         return true;
6075                 }
6076                 return cell(cur.idx())->getStatus(cur, cmd, status);
6077
6078         case LFUN_INSET_SETTINGS:
6079                 // relay this lfun to Inset, not to the cell.
6080                 return Inset::getStatus(cur, cmd, status);
6081
6082         default:
6083                 // we try to handle this event in the insets dispatch function.
6084                 return cell(cur.idx())->getStatus(cur, cmd, status);
6085         }
6086         return false;
6087 }
6088
6089
6090 Inset::RowFlags InsetTabular::rowFlags() const
6091 {
6092                 if (tabular.is_long_tabular) {
6093                         switch (tabular.longtabular_alignment) {
6094                         case Tabular::LYX_LONGTABULAR_ALIGN_LEFT:
6095                                 return Display | AlignLeft;
6096                         case Tabular::LYX_LONGTABULAR_ALIGN_CENTER:
6097                                 return Display;
6098                         case Tabular::LYX_LONGTABULAR_ALIGN_RIGHT:
6099                                 return Display | AlignRight;
6100                         default:
6101                                 return Display;
6102                         }
6103                 } else
6104                         return Inline;
6105 }
6106
6107
6108 void InsetTabular::latex(otexstream & os, OutputParams const & runparams) const
6109 {
6110         tabular.latex(os, runparams);
6111 }
6112
6113
6114 int InsetTabular::plaintext(odocstringstream & os,
6115         OutputParams const & runparams, size_t max_length) const
6116 {
6117         os << '\n'; // output table on a new line
6118         int const dp = runparams.linelen > 0 ? runparams.depth : 0;
6119         tabular.plaintext(os, runparams, dp, false, 0, max_length);
6120         return PLAINTEXT_NEWLINE;
6121 }
6122
6123
6124 void InsetTabular::docbook(XMLStream & xs, OutputParams const & runparams) const
6125 {
6126         tabular.docbook(xs, runparams);
6127 }
6128
6129
6130 docstring InsetTabular::xhtml(XMLStream & xs, OutputParams const & rp) const
6131 {
6132         return tabular.xhtml(xs, rp);
6133 }
6134
6135
6136 void InsetTabular::validate(LaTeXFeatures & features) const
6137 {
6138         tabular.validate(features);
6139         features.useInsetLayout(getLayout());
6140 }
6141
6142
6143 shared_ptr<InsetTableCell const> InsetTabular::cell(idx_type idx) const
6144 {
6145         return tabular.cellInset(idx);
6146 }
6147
6148
6149 shared_ptr<InsetTableCell> InsetTabular::cell(idx_type idx)
6150 {
6151         return tabular.cellInset(idx);
6152 }
6153
6154
6155 void InsetTabular::cursorPos(BufferView const & bv,
6156                 CursorSlice const & sl, bool boundary, int & x, int & y) const
6157 {
6158         cell(sl.idx())->cursorPos(bv, sl, boundary, x, y);
6159
6160         // y offset     correction
6161         y += cellYPos(sl.idx());
6162         y += tabular.textVOffset(sl.idx());
6163         y += tabular.offsetVAlignment();
6164
6165         // x offset correction
6166         x += cellXPos(sl.idx());
6167         x += tabular.textHOffset(sl.idx());
6168         x += ADD_TO_TABULAR_WIDTH;
6169 }
6170
6171
6172 int InsetTabular::dist(BufferView & bv, idx_type const cell, int x, int y) const
6173 {
6174         int xx = 0;
6175         int yy = 0;
6176         Inset const & inset = *tabular.cellInset(cell);
6177         Point o = bv.coordCache().getInsets().xy(&inset);
6178         int const xbeg = o.x_ - tabular.textHOffset(cell);
6179         int const xend = xbeg + tabular.cellWidth(cell);
6180         row_type const row = tabular.cellRow(cell);
6181         int const ybeg = o.y_ - tabular.rowAscent(row)
6182                 - tabular.interRowSpace(row) - tabular.textVOffset(cell);
6183         int const yend = ybeg + tabular.cellHeight(cell);
6184
6185         if (x < xbeg)
6186                 xx = xbeg - x;
6187         else if (x > xend)
6188                 xx = x - xend;
6189
6190         if (y < ybeg)
6191                 yy = ybeg - y;
6192         else if (y > yend)
6193                 yy = y - yend;
6194
6195         //lyxerr << " xbeg=" << xbeg << "  xend=" << xend
6196         //       << " ybeg=" << ybeg << " yend=" << yend
6197         //       << " xx=" << xx << " yy=" << yy
6198         //       << " dist=" << xx + yy << endl;
6199         return xx + yy;
6200 }
6201
6202
6203 Inset * InsetTabular::editXY(Cursor & cur, int x, int y)
6204 {
6205         //lyxerr << "InsetTabular::editXY: " << this << endl;
6206         cur.push(*this);
6207         cur.idx() = getNearestCell(cur.bv(), x, y);
6208         return cur.bv().textMetrics(&cell(cur.idx())->text()).editXY(cur, x, y);
6209 }
6210
6211
6212 void InsetTabular::setCursorFromCoordinates(Cursor & cur, int x, int y) const
6213 {
6214         cur.idx() = getNearestCell(cur.bv(), x, y);
6215         cur.bv().textMetrics(&cell(cur.idx())->text()).setCursorFromCoordinates(cur, x, y);
6216 }
6217
6218
6219 InsetTabular::idx_type InsetTabular::getNearestCell(BufferView & bv, int x, int y) const
6220 {
6221         idx_type idx_min = 0;
6222         int dist_min = numeric_limits<int>::max();
6223         for (idx_type i = 0, n = nargs(); i != n; ++i) {
6224                 if (bv.coordCache().getInsets().has(tabular.cellInset(i).get())) {
6225                         int const d = dist(bv, i, x, y);
6226                         if (d < dist_min) {
6227                                 dist_min = d;
6228                                 idx_min = i;
6229                         }
6230                 }
6231         }
6232         return idx_min;
6233 }
6234
6235
6236 int InsetTabular::cellYPos(idx_type const cell) const
6237 {
6238         row_type row = tabular.cellRow(cell);
6239         int ly = 0;
6240         for (row_type r = 0; r < row; ++r)
6241                 ly += tabular.rowDescent(r) + tabular.rowAscent(r + 1)
6242                         + tabular.interRowSpace(r + 1);
6243         return ly;
6244 }
6245
6246
6247 int InsetTabular::cellXPos(idx_type const cell) const
6248 {
6249         col_type col = tabular.cellColumn(cell);
6250         int lx = 0;
6251         for (col_type c = 0; c < col; ++c)
6252                 lx += tabular.column_info[c].width;
6253         return lx;
6254 }
6255
6256
6257 void InsetTabular::moveNextCell(Cursor & cur, EntryDirection entry_from)
6258 {
6259         row_type const row = tabular.cellRow(cur.idx());
6260         col_type const col = tabular.cellColumn(cur.idx());
6261
6262         if (isRightToLeft(cur)) {
6263                 if (tabular.cellColumn(cur.idx()) == 0) {
6264                         if (row == tabular.nrows() - 1)
6265                                 return;
6266                         cur.idx() = tabular.cellBelow(tabular.getLastCellInRow(row));
6267                 } else {
6268                         if (cur.idx() == 0)
6269                                 return;
6270                         if (col == 0)
6271                                 cur.idx() = tabular.getLastCellInRow(row - 1);
6272                         else
6273                                 cur.idx() = tabular.cellIndex(row, col - 1);
6274                 }
6275         } else {
6276                 if (tabular.isLastCell(cur.idx()))
6277                         return;
6278                 if (cur.idx() == tabular.getLastCellInRow(row))
6279                         cur.idx() = tabular.cellIndex(row + 1, 0);
6280                 else {
6281                         col_type const colnextcell = col + tabular.columnSpan(cur.idx());
6282                         cur.idx() = tabular.cellIndex(row, colnextcell);
6283                 }
6284         }
6285
6286         cur.boundary(false);
6287
6288         if (cur.selIsMultiCell()) {
6289                 cur.pit() = cur.lastpit();
6290                 cur.pos() = cur.lastpos();
6291                 return;
6292         }
6293
6294         cur.pit() = 0;
6295         cur.pos() = 0;
6296
6297         // in visual mode, place cursor at extreme left or right
6298
6299         switch(entry_from) {
6300
6301         case ENTRY_DIRECTION_RIGHT:
6302                 cur.posVisToRowExtremity(false /* !left */);
6303                 break;
6304         case ENTRY_DIRECTION_LEFT:
6305                 cur.posVisToRowExtremity(true /* left */);
6306                 break;
6307         case ENTRY_DIRECTION_IGNORE:
6308                 // nothing to do in this case
6309                 break;
6310
6311         }
6312         cur.setCurrentFont();
6313 }
6314
6315
6316 void InsetTabular::movePrevCell(Cursor & cur, EntryDirection entry_from)
6317 {
6318         row_type const row = tabular.cellRow(cur.idx());
6319         col_type const col = tabular.cellColumn(cur.idx());
6320
6321         if (isRightToLeft(cur)) {
6322                 if (cur.idx() == tabular.getLastCellInRow(row)) {
6323                         if (row == 0)
6324                                 return;
6325                         cur.idx() = tabular.getFirstCellInRow(row);
6326                         cur.idx() = tabular.cellAbove(cur.idx());
6327                 } else {
6328                         if (tabular.isLastCell(cur.idx()))
6329                                 return;
6330                         if (cur.idx() == tabular.getLastCellInRow(row))
6331                                 cur.idx() = tabular.cellIndex(row + 1, 0);
6332                         else
6333                                 cur.idx() = tabular.cellIndex(row, col + 1);
6334                 }
6335         } else {
6336                 if (cur.idx() == 0) // first cell
6337                         return;
6338                 if (col == 0)
6339                         cur.idx() = tabular.getLastCellInRow(row - 1);
6340                 else
6341                         cur.idx() = tabular.cellIndex(row, col - 1);
6342         }
6343
6344         if (cur.selIsMultiCell()) {
6345                 cur.pit() = cur.lastpit();
6346                 cur.pos() = cur.lastpos();
6347                 return;
6348         }
6349
6350         cur.pit() = cur.lastpit();
6351         cur.pos() = cur.lastpos();
6352
6353         // in visual mode, place cursor at extreme left or right
6354
6355         switch(entry_from) {
6356
6357         case ENTRY_DIRECTION_RIGHT:
6358                 cur.posVisToRowExtremity(false /* !left */);
6359                 break;
6360         case ENTRY_DIRECTION_LEFT:
6361                 cur.posVisToRowExtremity(true /* left */);
6362                 break;
6363         case ENTRY_DIRECTION_IGNORE:
6364                 // nothing to do in this case
6365                 break;
6366
6367         }
6368         cur.setCurrentFont();
6369 }
6370
6371
6372 void InsetTabular::tabularFeatures(Cursor & cur, string const & argument)
6373 {
6374         cur.recordUndoInset(this);
6375
6376         istringstream is(argument);
6377         // limit the size of strings we read to avoid memory problems
6378         is >> setw(65636);
6379         string s;
6380         // Safe guard.
6381         size_t safe_guard = 0;
6382         for (;;) {
6383                 if (is.eof())
6384                         return;
6385                 safe_guard++;
6386                 if (safe_guard > 1000) {
6387                         LYXERR0("parameter max count reached!");
6388                         return;
6389                 }
6390                 is >> s;
6391                 Tabular::Feature action = Tabular::LAST_ACTION;
6392
6393                 size_t i = 0;
6394                 for (; tabularFeature[i].action != Tabular::LAST_ACTION; ++i) {
6395                         if (s != tabularFeature[i].feature)
6396                                 continue;
6397                         action = tabularFeature[i].action;
6398                         break;
6399                 }
6400                 if (action == Tabular::LAST_ACTION) {
6401                         LYXERR0("Feature not found " << s);
6402                         continue;
6403                 }
6404                 string val;
6405                 if (tabularFeature[i].need_value)
6406                         is >> val;
6407                 LYXERR(Debug::DEBUG, "Feature: " << s << "\t\tvalue: " << val);
6408                 tabularFeatures(cur, action, val);
6409         }
6410 }
6411
6412
6413 static void checkLongtableSpecial(Tabular::ltType & ltt,
6414                           string const & special, bool & flag)
6415 {
6416         if (special == "dl_above") {
6417                 ltt.topDL = flag;
6418                 ltt.set = false;
6419         } else if (special == "dl_below") {
6420                 ltt.bottomDL = flag;
6421                 ltt.set = false;
6422         } else if (special == "empty") {
6423                 ltt.empty = flag;
6424                 ltt.set = false;
6425         } else if (flag) {
6426                 ltt.empty = false;
6427                 ltt.set = true;
6428         }
6429 }
6430
6431
6432 bool InsetTabular::oneCellHasRotationState(bool rotated,
6433                 row_type row_start, row_type row_end,
6434                 col_type col_start, col_type col_end) const
6435 {
6436         for (row_type r = row_start; r <= row_end; ++r)
6437                 for (col_type c = col_start; c <= col_end; ++c)
6438                         if (rotated) {
6439                                 if (tabular.getRotateCell(tabular.cellIndex(r, c)) != 0)
6440                                         return true;
6441                         } else {
6442                                 if (tabular.getRotateCell(tabular.cellIndex(r, c)) == 0)
6443                                         return true;
6444                         }
6445         return false;
6446 }
6447
6448
6449 void InsetTabular::tabularFeatures(Cursor & cur,
6450         Tabular::Feature feature, string const & value)
6451 {
6452         col_type sel_col_start;
6453         col_type sel_col_end;
6454         row_type sel_row_start;
6455         row_type sel_row_end;
6456         bool setLines = false;
6457         bool setLinesInnerOnly = false;
6458         LyXAlignment setAlign = LYX_ALIGN_LEFT;
6459         Tabular::VAlignment setVAlign = Tabular::LYX_VALIGN_TOP;
6460
6461         switch (feature) {
6462
6463         case Tabular::M_ALIGN_LEFT:
6464         case Tabular::ALIGN_LEFT:
6465                 setAlign = LYX_ALIGN_LEFT;
6466                 break;
6467
6468         case Tabular::M_ALIGN_RIGHT:
6469         case Tabular::ALIGN_RIGHT:
6470                 setAlign = LYX_ALIGN_RIGHT;
6471                 break;
6472
6473         case Tabular::M_ALIGN_CENTER:
6474         case Tabular::ALIGN_CENTER:
6475                 setAlign = LYX_ALIGN_CENTER;
6476                 break;
6477
6478         case Tabular::ALIGN_BLOCK:
6479                 setAlign = LYX_ALIGN_BLOCK;
6480                 break;
6481
6482         case Tabular::ALIGN_DECIMAL:
6483                 setAlign = LYX_ALIGN_DECIMAL;
6484                 break;
6485
6486         case Tabular::M_VALIGN_TOP:
6487         case Tabular::VALIGN_TOP:
6488                 setVAlign = Tabular::LYX_VALIGN_TOP;
6489                 break;
6490
6491         case Tabular::M_VALIGN_BOTTOM:
6492         case Tabular::VALIGN_BOTTOM:
6493                 setVAlign = Tabular::LYX_VALIGN_BOTTOM;
6494                 break;
6495
6496         case Tabular::M_VALIGN_MIDDLE:
6497         case Tabular::VALIGN_MIDDLE:
6498                 setVAlign = Tabular::LYX_VALIGN_MIDDLE;
6499                 break;
6500
6501         default:
6502                 break;
6503         }
6504
6505         getSelection(cur, sel_row_start, sel_row_end, sel_col_start, sel_col_end);
6506         row_type const row = tabular.cellRow(cur.idx());
6507         col_type const column = tabular.cellColumn(cur.idx());
6508         bool flag = true;
6509         Tabular::ltType ltt;
6510
6511         switch (feature) {
6512
6513         case Tabular::SET_TABULAR_WIDTH:
6514                 tabular.setTabularWidth(Length(value));
6515                 break;
6516
6517         case Tabular::SET_PWIDTH: {
6518                 Length const len(value);
6519                 for (col_type c = sel_col_start; c <= sel_col_end; ++c) {
6520                         tabular.setColumnPWidth(cur, tabular.cellIndex(row, c), len);
6521                         if (len.zero()
6522                             && tabular.getAlignment(tabular.cellIndex(row, c), true) == LYX_ALIGN_BLOCK)
6523                                 tabularFeatures(cur, Tabular::ALIGN_CENTER, string());
6524                 }
6525                 break;
6526         }
6527
6528         case Tabular::SET_MPWIDTH:
6529                 tabular.setMColumnPWidth(cur, cur.idx(), Length(value));
6530                 break;
6531
6532         case Tabular::TOGGLE_VARWIDTH_COLUMN: {
6533                 bool const varwidth = value == "on";
6534                 for (col_type c = sel_col_start; c <= sel_col_end; ++c)
6535                         tabular.toggleVarwidth(tabular.cellIndex(row, c), varwidth);
6536                 break;
6537         }
6538
6539         case Tabular::SET_MROFFSET:
6540                 tabular.setMROffset(cur, cur.idx(), Length(value));
6541                 break;
6542
6543         case Tabular::SET_SPECIAL_COLUMN:
6544         case Tabular::SET_SPECIAL_MULTICOLUMN:
6545                 if (value == "none")
6546                         tabular.setAlignSpecial(cur.idx(), docstring(), feature);
6547                 else
6548                         tabular.setAlignSpecial(cur.idx(), from_utf8(value), feature);
6549                 break;
6550
6551         case Tabular::APPEND_ROW:
6552                 // append the row into the tabular
6553                 tabular.appendRow(row);
6554                 break;
6555
6556         case Tabular::APPEND_COLUMN:
6557                 // append the column into the tabular
6558                 tabular.appendColumn(column);
6559                 cur.idx() = tabular.cellIndex(row, column);
6560                 break;
6561
6562         case Tabular::DELETE_ROW:
6563                 if (sel_row_end == tabular.nrows() - 1 && sel_row_start != 0) {
6564                         for (col_type c = 0; c < tabular.ncols(); c++) {
6565                                 tabular.setBottomLine(tabular.cellIndex(sel_row_start - 1, c),
6566                                         tabular.bottomLine(tabular.cellIndex(sel_row_end, c)));
6567                                 tabular.setBottomLineTrim(tabular.cellIndex(sel_row_start - 1, c),
6568                                         tabular.bottomLineTrim(tabular.cellIndex(sel_row_end, c)));
6569                         }
6570                 }
6571
6572                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
6573                         tabular.deleteRow(sel_row_start);
6574                 if (sel_row_start >= tabular.nrows())
6575                         --sel_row_start;
6576                 cur.idx() = tabular.cellIndex(sel_row_start, column);
6577                 cur.pit() = 0;
6578                 cur.pos() = 0;
6579                 cur.selection(false);
6580                 break;
6581
6582         case Tabular::DELETE_COLUMN:
6583                 if (sel_col_end == tabular.ncols() - 1 && sel_col_start != 0) {
6584                         for (row_type r = 0; r < tabular.nrows(); r++)
6585                                 tabular.setRightLine(tabular.cellIndex(r, sel_col_start - 1),
6586                                         tabular.rightLine(tabular.cellIndex(r, sel_col_end)));
6587                 }
6588
6589                 if (sel_col_start == 0 && sel_col_end != tabular.ncols() - 1) {
6590                         for (row_type r = 0; r < tabular.nrows(); r++)
6591                                 tabular.setLeftLine(tabular.cellIndex(r, sel_col_end + 1),
6592                                         tabular.leftLine(tabular.cellIndex(r, 0)));
6593                 }
6594
6595                 for (col_type c = sel_col_start; c <= sel_col_end; ++c)
6596                         tabular.deleteColumn(sel_col_start);
6597                 if (sel_col_start >= tabular.ncols())
6598                         --sel_col_start;
6599                 cur.idx() = tabular.cellIndex(row, sel_col_start);
6600                 cur.pit() = 0;
6601                 cur.pos() = 0;
6602                 cur.selection(false);
6603                 break;
6604
6605         case Tabular::COPY_ROW:
6606                 tabular.copyRow(row);
6607                 break;
6608
6609         case Tabular::COPY_COLUMN:
6610                 tabular.copyColumn(column);
6611                 cur.idx() = tabular.cellIndex(row, column);
6612                 break;
6613
6614         case Tabular::MOVE_COLUMN_RIGHT:
6615                 tabular.moveColumn(column, Tabular::RIGHT);
6616                 cur.idx() = tabular.cellIndex(row, column + 1);
6617                 break;
6618
6619         case Tabular::MOVE_COLUMN_LEFT:
6620                 tabular.moveColumn(column, Tabular::LEFT);
6621                 cur.idx() = tabular.cellIndex(row, column - 1);
6622                 break;
6623
6624         case Tabular::MOVE_ROW_DOWN:
6625                 tabular.moveRow(row, Tabular::DOWN);
6626                 cur.idx() = tabular.cellIndex(row + 1, column);
6627                 break;
6628
6629         case Tabular::MOVE_ROW_UP:
6630                 tabular.moveRow(row, Tabular::UP);
6631                 cur.idx() = tabular.cellIndex(row - 1, column);
6632                 break;
6633
6634         case Tabular::SET_LINE_TOP:
6635         case Tabular::TOGGLE_LINE_TOP: {
6636                 bool lineSet = (feature == Tabular::SET_LINE_TOP)
6637                                ? (value == "true") : !tabular.topLine(cur.idx());
6638                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
6639                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
6640                                 tabular.setTopLine(tabular.cellIndex(r, c), lineSet);
6641                 break;
6642         }
6643
6644         case Tabular::SET_LINE_BOTTOM:
6645         case Tabular::TOGGLE_LINE_BOTTOM: {
6646                 bool lineSet = (feature == Tabular::SET_LINE_BOTTOM)
6647                                ? (value == "true") : !tabular.bottomLine(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.setBottomLine(tabular.cellIndex(r, c), lineSet);
6651                 break;
6652         }
6653
6654         case Tabular::SET_LTRIM_TOP:
6655         case Tabular::TOGGLE_LTRIM_TOP: {
6656                 bool l = (feature == Tabular::SET_LTRIM_TOP)
6657                                ? (value == "true") : !tabular.topLineTrim(cur.idx()).first;
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.setTopLineLTrim(tabular.cellIndex(r, c), l);
6661                 break;
6662         }
6663
6664         case Tabular::SET_RTRIM_TOP:
6665         case Tabular::TOGGLE_RTRIM_TOP: {
6666                 bool l = (feature == Tabular::SET_RTRIM_TOP)
6667                                ? (value == "true") : !tabular.topLineTrim(cur.idx()).second;
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.setTopLineRTrim(tabular.cellIndex(r, c), l);
6671                 break;
6672         }
6673
6674         case Tabular::SET_LTRIM_BOTTOM:
6675         case Tabular::TOGGLE_LTRIM_BOTTOM: {
6676                 bool l = (feature == Tabular::SET_LTRIM_BOTTOM)
6677                                ? (value == "true") : !tabular.bottomLineTrim(cur.idx()).first;
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.setBottomLineLTrim(tabular.cellIndex(r, c), l);
6681                 break;
6682         }
6683
6684         case Tabular::SET_RTRIM_BOTTOM:
6685         case Tabular::TOGGLE_RTRIM_BOTTOM: {
6686                 bool l = (feature == Tabular::SET_RTRIM_BOTTOM)
6687                                ? (value == "true") : !tabular.bottomLineTrim(cur.idx()).second;
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.setBottomLineRTrim(tabular.cellIndex(r, c), l);
6691                 break;
6692         }
6693
6694         case Tabular::SET_LINE_LEFT:
6695         case Tabular::TOGGLE_LINE_LEFT: {
6696                 bool lineSet = (feature == Tabular::SET_LINE_LEFT)
6697                                ? (value == "true") : !tabular.leftLine(cur.idx());
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.setLeftLine(tabular.cellIndex(r, c), lineSet);
6701                 break;
6702         }
6703
6704         case Tabular::SET_LINE_RIGHT:
6705         case Tabular::TOGGLE_LINE_RIGHT: {
6706                 bool lineSet = (feature == Tabular::SET_LINE_RIGHT)
6707                                ? (value == "true") : !tabular.rightLine(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.setRightLine(tabular.cellIndex(r, c), lineSet);
6711                 break;
6712         }
6713
6714         case Tabular::M_ALIGN_LEFT:
6715         case Tabular::M_ALIGN_RIGHT:
6716         case Tabular::M_ALIGN_CENTER:
6717         case Tabular::ALIGN_LEFT:
6718         case Tabular::ALIGN_RIGHT:
6719         case Tabular::ALIGN_CENTER:
6720         case Tabular::ALIGN_BLOCK:
6721         case Tabular::ALIGN_DECIMAL:
6722                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
6723                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
6724                                 tabular.setAlignment(tabular.cellIndex(r, c), setAlign,
6725                                 !tabular.getPWidth(c).zero());
6726                 break;
6727
6728         case Tabular::M_VALIGN_TOP:
6729         case Tabular::M_VALIGN_BOTTOM:
6730         case Tabular::M_VALIGN_MIDDLE:
6731                 flag = false;
6732                 // fall through
6733         case Tabular::VALIGN_TOP:
6734         case Tabular::VALIGN_BOTTOM:
6735         case Tabular::VALIGN_MIDDLE:
6736                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
6737                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
6738                                 tabular.setVAlignment(tabular.cellIndex(r, c), setVAlign, flag);
6739                 break;
6740
6741         case Tabular::SET_MULTICOLUMN: {
6742                 if (!cur.selection()) {
6743                         // just multicol for one single cell
6744                         // check whether we are completely in a multicol
6745                         if (!tabular.isMultiColumn(cur.idx()))
6746                                 tabular.setMultiColumn(cur, cur.idx(), 1,
6747                                         tabular.rightLine(cur.idx()));
6748                         break;
6749                 }
6750                 // we have a selection so this means we just add all these
6751                 // cells to form a multicolumn cell
6752                 idx_type const s_start = cur.selBegin().idx();
6753                 row_type const col_start = tabular.cellColumn(s_start);
6754                 row_type const col_end = tabular.cellColumn(cur.selEnd().idx());
6755                 cur.idx() = tabular.setMultiColumn(cur, s_start, col_end - col_start + 1,
6756                                                    tabular.rightLine(cur.selEnd().idx()));
6757                 cur.pit() = 0;
6758                 cur.pos() = 0;
6759                 cur.selection(false);
6760                 break;
6761         }
6762
6763         case Tabular::UNSET_MULTICOLUMN: {
6764                 if (!cur.selection()) {
6765                         if (tabular.isMultiColumn(cur.idx()))
6766                                 tabular.unsetMultiColumn(cur.idx());
6767                 }
6768                 break;
6769         }
6770
6771         case Tabular::MULTICOLUMN: {
6772                 if (!cur.selection()) {
6773                         if (tabular.isMultiColumn(cur.idx()))
6774                                 tabularFeatures(cur, Tabular::UNSET_MULTICOLUMN);
6775                         else
6776                                 tabularFeatures(cur, Tabular::SET_MULTICOLUMN);
6777                         break;
6778                 }
6779                 bool merge = false;
6780                 for (col_type c = sel_col_start; c <= sel_col_end; ++c) {
6781                         row_type const r = sel_row_start;
6782                         if (!tabular.isMultiColumn(tabular.cellIndex(r, c))
6783                             || (r > sel_row_start && !tabular.isPartOfMultiColumn(r, c)))
6784                                 merge = true;
6785                 }
6786                 // If the selection contains at least one singlecol cell
6787                 // or multiple multicol cells,
6788                 // we assume the user will merge is to a single multicol
6789                 if (merge)
6790                         tabularFeatures(cur, Tabular::SET_MULTICOLUMN);
6791                 else
6792                         tabularFeatures(cur, Tabular::UNSET_MULTICOLUMN);
6793                 break;
6794         }
6795
6796         case Tabular::SET_MULTIROW: {
6797                 if (!cur.selection()) {
6798                         // just multirow for one single cell
6799                         // check whether we are completely in a multirow
6800                         if (!tabular.isMultiRow(cur.idx()))
6801                                 tabular.setMultiRow(cur, cur.idx(), 1,
6802                                                     tabular.bottomLine(cur.idx()),
6803                                                     tabular.getAlignment(cur.idx()));
6804                         break;
6805                 }
6806                 // we have a selection so this means we just add all this
6807                 // cells to form a multirow cell
6808                 idx_type const s_start = cur.selBegin().idx();
6809                 row_type const row_start = tabular.cellRow(s_start);
6810                 row_type const row_end = tabular.cellRow(cur.selEnd().idx());
6811                 cur.idx() = tabular.setMultiRow(cur, s_start, row_end - row_start + 1,
6812                                                 tabular.bottomLine(cur.selEnd().idx()),
6813                                                 tabular.getAlignment(cur.selEnd().idx()));
6814                 cur.pit() = 0;
6815                 cur.pos() = 0;
6816                 cur.selection(false);
6817                 break;
6818         }
6819
6820         case Tabular::UNSET_MULTIROW: {
6821                 if (!cur.selection()) {
6822                         if (tabular.isMultiRow(cur.idx()))
6823                                 tabular.unsetMultiRow(cur.idx());
6824                 }
6825                 break;
6826         }
6827
6828         case Tabular::MULTIROW: {
6829                 if (!cur.selection()) {
6830                         if (tabular.isMultiRow(cur.idx()))
6831                                 tabularFeatures(cur, Tabular::UNSET_MULTIROW);
6832                         else
6833                                 tabularFeatures(cur, Tabular::SET_MULTIROW);
6834                         break;
6835                 }
6836                 bool merge = false;
6837                 for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
6838                         col_type const c = sel_col_start;
6839                         if (!tabular.isMultiRow(tabular.cellIndex(r, c))
6840                             || (r > sel_row_start && !tabular.isPartOfMultiRow(r, c)))
6841                                 merge = true;
6842                 }
6843                 // If the selection contains at least one singlerow cell
6844                 // or multiple multirow cells,
6845                 // we assume the user will merge is to a single multirow
6846                 if (merge)
6847                         tabularFeatures(cur, Tabular::SET_MULTIROW);
6848                 else
6849                         tabularFeatures(cur, Tabular::UNSET_MULTIROW);
6850                 break;
6851         }
6852
6853         case Tabular::SET_INNER_LINES:
6854                 setLinesInnerOnly = true;
6855                 // fall through
6856         case Tabular::SET_ALL_LINES:
6857                 setLines = true;
6858                 // fall through
6859         case Tabular::UNSET_ALL_LINES:
6860                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
6861                         for (col_type c = sel_col_start; c <= sel_col_end; ++c) {
6862                                 idx_type const cell = tabular.cellIndex(r, c);
6863                                 if (!setLinesInnerOnly || r != sel_row_start)
6864                                         tabular.setTopLine(cell, setLines);
6865                                 if ((!setLinesInnerOnly || r != sel_row_end)
6866                                     && (!setLines || r == sel_row_end))
6867                                         tabular.setBottomLine(cell, setLines);
6868                                 if ((!setLinesInnerOnly || c != sel_col_end)
6869                                     && (!setLines || c == sel_col_end))
6870                                         tabular.setRightLine(cell, setLines);
6871                                 if ((!setLinesInnerOnly || c != sel_col_start))
6872                                         tabular.setLeftLine(cell, setLines);
6873                         }
6874                 break;
6875
6876         case Tabular::RESET_FORMAL_DEFAULT:
6877                 for (row_type r = 0; r < tabular.nrows(); ++r) {
6878                         bool const head_or_foot = r == 0 || r == tabular.nrows() - 1;
6879                         for (col_type c = 0; c < tabular.ncols(); ++c) {
6880                                 idx_type const cell = tabular.cellIndex(r, c);
6881                                 tabular.setTopLine(cell, head_or_foot);
6882                                 tabular.setBottomLine(cell, head_or_foot);
6883                         }
6884                 }
6885                 break;
6886
6887         case Tabular::SET_BORDER_LINES:
6888                 for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
6889                         tabular.setLeftLine(tabular.cellIndex(r, sel_col_start), true);
6890                         tabular.setRightLine(tabular.cellIndex(r, sel_col_end), true);
6891                 }
6892                 for (col_type c = sel_col_start; c <= sel_col_end; ++c) {
6893                         tabular.setTopLine(tabular.cellIndex(sel_row_start, c), true);
6894                         tabular.setBottomLine(tabular.cellIndex(sel_row_end, c), true);
6895                 }
6896                 break;
6897
6898         case Tabular::TOGGLE_LONGTABULAR:
6899                 if (tabular.is_long_tabular)
6900                         tabularFeatures(cur, Tabular::UNSET_LONGTABULAR);
6901                 else
6902                         tabular.is_long_tabular = true;
6903                 break;
6904
6905         case Tabular::SET_LONGTABULAR:
6906                 tabular.is_long_tabular = true;
6907                 break;
6908
6909         case Tabular::UNSET_LONGTABULAR:
6910                 for (row_type r = 0; r < tabular.nrows(); ++r) {
6911                         if (tabular.ltCaption(r)) {
6912                                 cur.idx() = tabular.cellIndex(r, 0);
6913                                 cur.pit() = 0;
6914                                 cur.pos() = 0;
6915                                 tabularFeatures(cur, Tabular::TOGGLE_LTCAPTION);
6916                         }
6917                 }
6918                 tabular.is_long_tabular = false;
6919                 break;
6920
6921         case Tabular::SET_ROTATE_TABULAR:
6922                 tabular.rotate = convert<int>(value);
6923                 break;
6924
6925         case Tabular::UNSET_ROTATE_TABULAR:
6926                 tabular.rotate = 0;
6927                 break;
6928
6929         case Tabular::TOGGLE_ROTATE_TABULAR:
6930                 // when pressing the rotate button we default to 90° rotation
6931                 tabular.rotate != 0 ? tabular.rotate = 0 : tabular.rotate = 90;
6932                 break;
6933
6934         case Tabular::TABULAR_VALIGN_TOP:
6935                 tabular.tabular_valignment = Tabular::LYX_VALIGN_TOP;
6936                 break;
6937
6938         case Tabular::TABULAR_VALIGN_MIDDLE:
6939                 tabular.tabular_valignment = Tabular::LYX_VALIGN_MIDDLE;
6940                 break;
6941
6942         case Tabular::TABULAR_VALIGN_BOTTOM:
6943                 tabular.tabular_valignment = Tabular::LYX_VALIGN_BOTTOM;
6944                 break;
6945
6946         case Tabular::LONGTABULAR_ALIGN_LEFT:
6947                 tabular.longtabular_alignment = Tabular::LYX_LONGTABULAR_ALIGN_LEFT;
6948                 break;
6949
6950         case Tabular::LONGTABULAR_ALIGN_CENTER:
6951                 tabular.longtabular_alignment = Tabular::LYX_LONGTABULAR_ALIGN_CENTER;
6952                 break;
6953
6954         case Tabular::LONGTABULAR_ALIGN_RIGHT:
6955                 tabular.longtabular_alignment = Tabular::LYX_LONGTABULAR_ALIGN_RIGHT;
6956                 break;
6957
6958         case Tabular::SET_ROTATE_CELL:
6959                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
6960                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
6961                                 tabular.setRotateCell(tabular.cellIndex(r, c), convert<int>(value));
6962                 break;
6963
6964         case Tabular::UNSET_ROTATE_CELL:
6965                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
6966                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
6967                                 tabular.setRotateCell(tabular.cellIndex(r, c), 0);
6968                 break;
6969
6970         case Tabular::TOGGLE_ROTATE_CELL:
6971                 {
6972                 bool oneNotRotated = oneCellHasRotationState(false,
6973                         sel_row_start, sel_row_end, sel_col_start, sel_col_end);
6974
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                                 // when pressing the rotate cell button we default to 90° rotation
6978                                 if (oneNotRotated)
6979                                         tabular.setRotateCell(tabular.cellIndex(r, c), 90);
6980                                 else
6981                                         tabular.setRotateCell(tabular.cellIndex(r, c), 0);
6982                         }
6983                 }
6984                 break;
6985
6986         case Tabular::SET_USEBOX: {
6987                 Tabular::BoxType val = Tabular::BoxType(convert<int>(value));
6988                 if (val == tabular.getUsebox(cur.idx()))
6989                         val = Tabular::BOX_NONE;
6990                 for (row_type r = sel_row_start; r <= sel_row_end; ++r)
6991                         for (col_type c = sel_col_start; c <= sel_col_end; ++c)
6992                                 tabular.setUsebox(tabular.cellIndex(r, c), val);
6993                 break;
6994         }
6995
6996         case Tabular::UNSET_LTFIRSTHEAD:
6997                 flag = false;
6998                 // fall through
6999         case Tabular::SET_LTFIRSTHEAD:
7000                 tabular.getRowOfLTFirstHead(row, ltt);
7001                 checkLongtableSpecial(ltt, value, flag);
7002                 tabular.setLTHead(row, flag, ltt, true);
7003                 break;
7004
7005         case Tabular::UNSET_LTHEAD:
7006                 flag = false;
7007                 // fall through
7008         case Tabular::SET_LTHEAD:
7009                 tabular.getRowOfLTHead(row, ltt);
7010                 checkLongtableSpecial(ltt, value, flag);
7011                 tabular.setLTHead(row, flag, ltt, false);
7012                 break;
7013
7014         case Tabular::UNSET_LTFOOT:
7015                 flag = false;
7016                 // fall through
7017         case Tabular::SET_LTFOOT:
7018                 tabular.getRowOfLTFoot(row, ltt);
7019                 checkLongtableSpecial(ltt, value, flag);
7020                 tabular.setLTFoot(row, flag, ltt, false);
7021                 break;
7022
7023         case Tabular::UNSET_LTLASTFOOT:
7024                 flag = false;
7025                 // fall through
7026         case Tabular::SET_LTLASTFOOT:
7027                 tabular.getRowOfLTLastFoot(row, ltt);
7028                 checkLongtableSpecial(ltt, value, flag);
7029                 tabular.setLTFoot(row, flag, ltt, true);
7030                 break;
7031
7032         case Tabular::UNSET_LTNEWPAGE:
7033                 flag = false;
7034                 // fall through
7035         case Tabular::SET_LTNEWPAGE:
7036                 tabular.setLTNewPage(row, flag);
7037                 break;
7038
7039         case Tabular::SET_LTCAPTION: {
7040                 if (tabular.ltCaption(row))
7041                         break;
7042                 cur.idx() = tabular.setLTCaption(cur, row, true);
7043                 cur.pit() = 0;
7044                 cur.pos() = 0;
7045                 cur.selection(false);
7046                 // If a row is set as caption, then also insert
7047                 // a caption. Otherwise the LaTeX output is broken.
7048                 // Select cell if it is non-empty
7049                 if (cur.lastpos() > 0 || cur.lastpit() > 0)
7050                         lyx::dispatch(FuncRequest(LFUN_INSET_SELECT_ALL));
7051                 lyx::dispatch(FuncRequest(LFUN_CAPTION_INSERT));
7052                 break;
7053         }
7054
7055         case Tabular::UNSET_LTCAPTION: {
7056                 if (!tabular.ltCaption(row))
7057                         break;
7058                 cur.idx() = tabular.setLTCaption(cur, row, false);
7059                 cur.pit() = 0;
7060                 cur.pos() = 0;
7061                 cur.selection(false);
7062                 FuncRequest fr(LFUN_INSET_DISSOLVE, "caption");
7063                 if (lyx::getStatus(fr).enabled())
7064                         lyx::dispatch(fr);
7065                 break;
7066         }
7067
7068         case Tabular::TOGGLE_LTCAPTION: {
7069                 if (tabular.ltCaption(row))
7070                         tabularFeatures(cur, Tabular::UNSET_LTCAPTION);
7071                 else
7072                         tabularFeatures(cur, Tabular::SET_LTCAPTION);
7073                 break;
7074         }
7075
7076         case Tabular::TOGGLE_BOOKTABS:
7077                 tabular.use_booktabs = !tabular.use_booktabs;
7078                 break;
7079
7080         case Tabular::SET_BOOKTABS:
7081                 tabular.use_booktabs = true;
7082                 break;
7083
7084         case Tabular::UNSET_BOOKTABS:
7085                 tabular.use_booktabs = false;
7086                 break;
7087
7088         case Tabular::SET_TOP_SPACE: {
7089                 Length len;
7090                 if (value == "default")
7091                         for (row_type r = sel_row_start; r <= sel_row_end; ++r)
7092                                 tabular.row_info[r].top_space_default = true;
7093                 else if (value == "none")
7094                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
7095                                 tabular.row_info[r].top_space_default = false;
7096                                 tabular.row_info[r].top_space = len;
7097                         }
7098                 else if (isValidLength(value, &len))
7099                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
7100                                 tabular.row_info[r].top_space_default = false;
7101                                 tabular.row_info[r].top_space = len;
7102                         }
7103                 break;
7104         }
7105
7106         case Tabular::SET_BOTTOM_SPACE: {
7107                 Length len;
7108                 if (value == "default")
7109                         for (row_type r = sel_row_start; r <= sel_row_end; ++r)
7110                                 tabular.row_info[r].bottom_space_default = true;
7111                 else if (value == "none")
7112                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
7113                                 tabular.row_info[r].bottom_space_default = false;
7114                                 tabular.row_info[r].bottom_space = len;
7115                         }
7116                 else if (isValidLength(value, &len))
7117                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
7118                                 tabular.row_info[r].bottom_space_default = false;
7119                                 tabular.row_info[r].bottom_space = len;
7120                         }
7121                 break;
7122         }
7123
7124         case Tabular::SET_INTERLINE_SPACE: {
7125                 Length len;
7126                 if (value == "default")
7127                         for (row_type r = sel_row_start; r <= sel_row_end; ++r)
7128                                 tabular.row_info[r].interline_space_default = true;
7129                 else if (value == "none")
7130                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
7131                                 tabular.row_info[r].interline_space_default = false;
7132                                 tabular.row_info[r].interline_space = len;
7133                         }
7134                 else if (isValidLength(value, &len))
7135                         for (row_type r = sel_row_start; r <= sel_row_end; ++r) {
7136                                 tabular.row_info[r].interline_space_default = false;
7137                                 tabular.row_info[r].interline_space = len;
7138                         }
7139                 break;
7140         }
7141
7142         case Tabular::SET_DECIMAL_POINT:
7143                 for (col_type c = sel_col_start; c <= sel_col_end; ++c)
7144                         tabular.column_info[c].decimal_point = from_utf8(value);
7145                 break;
7146
7147         // dummy stuff just to avoid warnings
7148         case Tabular::LAST_ACTION:
7149                 break;
7150         }
7151 }
7152
7153
7154 bool InsetTabular::copySelection(Cursor & cur)
7155 {
7156         if (!cur.selection())
7157                 return false;
7158
7159         row_type rs, re;
7160         col_type cs, ce;
7161         getSelection(cur, rs, re, cs, ce);
7162
7163         paste_tabular.reset(new Tabular(tabular));
7164
7165         for (row_type r = 0; r < rs; ++r)
7166                 paste_tabular->deleteRow(0, true);
7167
7168         row_type const rows = re - rs + 1;
7169         while (paste_tabular->nrows() > rows)
7170                 paste_tabular->deleteRow(rows, true);
7171
7172         for (col_type c = 0; c < cs; ++c)
7173                 paste_tabular->deleteColumn(0, true);
7174
7175         col_type const columns = ce - cs + 1;
7176         while (paste_tabular->ncols() > columns)
7177                 paste_tabular->deleteColumn(columns, true);
7178
7179         paste_tabular->setBuffer(tabular.buffer());
7180
7181         odocstringstream os;
7182         OutputParams const runparams(0);
7183         paste_tabular->plaintext(os, runparams, 0, true, '\t', INT_MAX);
7184         // Needed for the "Edit->Paste recent" menu and the system clipboard.
7185         cap::copySelection(cur, os.str());
7186
7187         // mark tabular stack dirty
7188         // FIXME: this is a workaround for bug 1919. Should be removed for 1.5,
7189         // when we (hopefully) have a one-for-all paste mechanism.
7190         // This must be called after cap::copySelection.
7191         dirtyTabularStack(true);
7192
7193         return true;
7194 }
7195
7196
7197 bool InsetTabular::pasteClipboard(Cursor & cur)
7198 {
7199         if (!paste_tabular)
7200                 return false;
7201         col_type actcol = tabular.cellColumn(cur.idx());
7202         row_type actrow = tabular.cellRow(cur.idx());
7203
7204         if (cur.selIsMultiCell()) {
7205                 row_type re;
7206                 col_type ce;
7207                 getSelection(cur, actrow, re, actcol, ce);
7208         }
7209
7210         col_type const oldncols = tabular.ncols();
7211         for (row_type r1 = 0, r2 = actrow; r1 < paste_tabular->nrows(); ++r1, ++r2) {
7212                 // Append rows if needed
7213                 if (r2 == tabular.nrows())
7214                         tabular.insertRow(r2 - 1, false);
7215                 for (col_type c1 = 0, c2 = actcol; c1 < paste_tabular->ncols(); ++c1, ++c2) {
7216                         // Append columns if needed
7217                         if (c2 == tabular.ncols())
7218                                 tabular.insertColumn(c2 - 1, false);
7219                         if (paste_tabular->isPartOfMultiColumn(r1, c1) &&
7220                               tabular.isPartOfMultiColumn(r2, c2))
7221                                 continue;
7222                         if (paste_tabular->isPartOfMultiColumn(r1, c1)) {
7223                                 --c2;
7224                                 continue;
7225                         }
7226                         if (tabular.isPartOfMultiColumn(r2, c2)) {
7227                                 --c1;
7228                                 continue;
7229                         }
7230                         shared_ptr<InsetTableCell> inset(
7231                                 new InsetTableCell(*paste_tabular->cellInset(r1, c1)));
7232                         tabular.setCellInset(r2, c2, inset);
7233                         // FIXME?: why do we need to do this explicitly? (EL)
7234                         tabular.cellInset(r2, c2)->setBuffer(tabular.buffer());
7235
7236                         if (!lyxrc.ct_markup_copied) {
7237                                 // do not paste deleted text
7238                                 inset->acceptChanges();
7239                                 inset->setChange(Change(buffer().params().track_changes ?
7240                                                 Change::INSERTED : Change::UNCHANGED));
7241                         }
7242                         cur.pos() = 0;
7243                         cur.pit() = 0;
7244                 }
7245         }
7246         // amend cursor position if cols have been appended
7247         cur.idx() += actrow * (tabular.ncols() - oldncols);
7248         return true;
7249 }
7250
7251
7252 void InsetTabular::cutSelection(Cursor & cur)
7253 {
7254         if (!cur.selection())
7255                 return;
7256
7257         row_type rs, re;
7258         col_type cs, ce;
7259         getSelection(cur, rs, re, cs, ce);
7260         for (row_type r = rs; r <= re; ++r) {
7261                 for (col_type c = cs; c <= ce; ++c) {
7262                         shared_ptr<InsetTableCell> t
7263                                 = cell(tabular.cellIndex(r, c));
7264                         if (buffer().params().track_changes)
7265                                 // FIXME: Change tracking (MG)
7266                                 t->setChange(Change(Change::DELETED));
7267                         else
7268                                 t->clear();
7269                 }
7270         }
7271
7272         // cursor position might be invalid now
7273         if (cur.pit() > cur.lastpit())
7274                 cur.pit() = cur.lastpit();
7275         if (cur.pos() > cur.lastpos())
7276                 cur.pos() = cur.lastpos();
7277         cur.clearSelection();
7278 }
7279
7280
7281 bool InsetTabular::isRightToLeft(Cursor & cur) const
7282 {
7283         // LASSERT: It might be better to abandon this Buffer.
7284         LASSERT(cur.depth() > 1, return false);
7285         Paragraph const & parentpar = cur[cur.depth() - 2].paragraph();
7286         pos_type const parentpos = cur[cur.depth() - 2].pos();
7287         return parentpar.getFontSettings(buffer().params(),
7288                                          parentpos).language()->rightToLeft();
7289 }
7290
7291
7292 docstring InsetTabular::asString(idx_type stidx, idx_type enidx,
7293                                  bool intoInsets)
7294 {
7295         LASSERT(stidx <= enidx, return docstring());
7296         docstring retval;
7297         col_type const col1 = tabular.cellColumn(stidx);
7298         col_type const col2 = tabular.cellColumn(enidx);
7299         row_type const row1 = tabular.cellRow(stidx);
7300         row_type const row2 = tabular.cellRow(enidx);
7301         bool first = true;
7302         for (col_type col = col1; col <= col2; col++)
7303                 for (row_type row = row1; row <= row2; row++) {
7304                         if (!first)
7305                                 retval += "\n";
7306                         else
7307                                 first = false;
7308                         retval += tabular.cellInset(row, col)->asString(intoInsets);
7309                 }
7310         return retval;
7311 }
7312
7313
7314 ParagraphList InsetTabular::asParList(idx_type stidx, idx_type enidx)
7315 {
7316         LASSERT(stidx <= enidx, return ParagraphList());
7317         ParagraphList retval;
7318         col_type const col1 = tabular.cellColumn(stidx);
7319         col_type const col2 = tabular.cellColumn(enidx);
7320         row_type const row1 = tabular.cellRow(stidx);
7321         row_type const row2 = tabular.cellRow(enidx);
7322         for (col_type col = col1; col <= col2; col++)
7323                 for (row_type row = row1; row <= row2; row++)
7324                         for (auto par : tabular.cellInset(row, col)->paragraphs())
7325                                 retval.push_back(par);
7326         return retval;
7327 }
7328
7329
7330 void InsetTabular::getSelection(Cursor & cur,
7331         row_type & rs, row_type & re, col_type & cs, col_type & ce) const
7332 {
7333         CursorSlice const & beg = cur.selBegin();
7334         CursorSlice const & end = cur.selEnd();
7335         cs = tabular.cellColumn(beg.idx());
7336         ce = tabular.cellColumn(end.idx());
7337         if (cs > ce)
7338                 swap(cs, ce);
7339
7340         rs = tabular.cellRow(beg.idx());
7341         re = tabular.cellRow(end.idx());
7342         if (rs > re)
7343                 swap(rs, re);
7344 }
7345
7346
7347 Text * InsetTabular::getText(int idx) const
7348 {
7349         return size_t(idx) < nargs() ? cell(idx)->getText(0) : 0;
7350 }
7351
7352
7353 bool InsetTabular::isChanged() const
7354 {
7355         for (idx_type idx = 0; idx < nargs(); ++idx) {
7356                 if (cell(idx)->isChanged())
7357                         return true;
7358                 if (tabular.row_info[tabular.cellRow(idx)].change.changed())
7359                         return true;
7360                 if (tabular.column_info[tabular.cellColumn(idx)].change.changed())
7361                         return true;
7362         }
7363         return false;
7364 }
7365
7366
7367 void InsetTabular::setChange(Change const & change)
7368 {
7369         for (idx_type idx = 0; idx < nargs(); ++idx)
7370                 cell(idx)->setChange(change);
7371 }
7372
7373
7374 void InsetTabular::acceptChanges()
7375 {
7376         for (idx_type idx = 0; idx < nargs(); ++idx)
7377                 cell(idx)->acceptChanges();
7378         for (row_type row = 0; row < tabular.nrows(); ++row) {
7379                 if (tabular.row_info[row].change.inserted())
7380                         tabular.row_info[row].change.setUnchanged();
7381                 else if (tabular.row_info[row].change.deleted())
7382                         tabular.deleteRow(row, true);
7383         }
7384         for (col_type col = 0; col < tabular.ncols(); ++col) {
7385                 if (tabular.column_info[col].change.inserted())
7386                         tabular.column_info[col].change.setUnchanged();
7387                 else if (tabular.column_info[col].change.deleted())
7388                         tabular.deleteColumn(col, true);
7389         }
7390         tabular.updateIndexes();
7391 }
7392
7393
7394 void InsetTabular::rejectChanges()
7395 {
7396         for (idx_type idx = 0; idx < nargs(); ++idx)
7397                 cell(idx)->rejectChanges();
7398         for (row_type row = 0; row < tabular.nrows(); ++row) {
7399                 if (tabular.row_info[row].change.deleted())
7400                         tabular.row_info[row].change.setUnchanged();
7401                 else if (tabular.row_info[row].change.inserted())
7402                         tabular.deleteRow(row, true);
7403         }
7404         for (col_type col = 0; col < tabular.ncols(); ++col) {
7405                 if (tabular.column_info[col].change.deleted())
7406                         tabular.column_info[col].change.setUnchanged();
7407                 else if (tabular.column_info[col].change.inserted())
7408                         tabular.deleteColumn(col, true);
7409         }
7410         tabular.updateIndexes();
7411 }
7412
7413
7414 bool InsetTabular::allowParagraphCustomization(idx_type cell) const
7415 {
7416         return tabular.getPWidth(cell).zero();
7417 }
7418
7419
7420 bool InsetTabular::forcePlainLayout(idx_type cell) const
7421 {
7422         return tabular.isMultiColumn(cell) && !tabular.getPWidth(cell).zero();
7423 }
7424
7425
7426 bool InsetTabular::insertPlaintextString(BufferView & bv, docstring const & buf,
7427                                      bool usePaste)
7428 {
7429         if (buf.length() <= 0)
7430                 return true;
7431
7432         col_type cols = 1;
7433         row_type rows = 1;
7434         col_type maxCols = 1;
7435         size_t const len = buf.length();
7436         size_t p = 0;
7437
7438         while (p < len &&
7439                (p = buf.find_first_of(from_ascii("\t\n"), p)) != docstring::npos) {
7440                 switch (buf[p]) {
7441                 case '\t':
7442                         ++cols;
7443                         break;
7444                 case '\n':
7445                         if (p + 1 < len)
7446                                 ++rows;
7447                         maxCols = max(cols, maxCols);
7448                         cols = 1;
7449                         break;
7450                 }
7451                 ++p;
7452         }
7453         maxCols = max(cols, maxCols);
7454         Tabular * loctab;
7455         idx_type cell = 0;
7456         col_type ocol = 0;
7457         row_type row = 0;
7458         if (usePaste) {
7459                 paste_tabular.reset(new Tabular(buffer_, rows, maxCols));
7460                 loctab = paste_tabular.get();
7461                 dirtyTabularStack(true);
7462         } else {
7463                 loctab = &tabular;
7464                 cell = bv.cursor().idx();
7465                 ocol = tabular.cellColumn(cell);
7466                 row = tabular.cellRow(cell);
7467         }
7468
7469         size_t op = 0;
7470         idx_type cells = loctab->numberofcells;
7471         p = 0;
7472         cols = ocol;
7473         rows = loctab->nrows();
7474         col_type columns = loctab->ncols();
7475
7476         while (p < len &&
7477                (p = buf.find_first_of(from_ascii("\t\n"), p)) != docstring::npos)
7478         {
7479                 if (p >= len)
7480                         break;
7481                 switch (buf[p]) {
7482                 case '\t':
7483                         // append column if necessary
7484                         if (cols == columns) {
7485                                 loctab->appendColumn(cols - 1);
7486                                 columns = loctab->ncols();
7487                                 cells = loctab->numberofcells;
7488                                 ++cell;
7489                         }
7490                         if (cols < columns) {
7491                                 shared_ptr<InsetTableCell> inset = loctab->cellInset(cell);
7492                                 Font const font = bv.textMetrics(&inset->text()).
7493                                         displayFont(0, 0);
7494                                 inset->setText(buf.substr(op, p - op), font,
7495                                                buffer().params().track_changes);
7496                                 ++cols;
7497                                 ++cell;
7498                         }
7499                         break;
7500                 case '\n':
7501                         // we can only set this if we are not too far right
7502                         if (cols < columns) {
7503                                 shared_ptr<InsetTableCell> inset = tabular.cellInset(cell);
7504                                 Font const font = bv.textMetrics(&inset->text()).
7505                                         displayFont(0, 0);
7506                                 inset->setText(buf.substr(op, p - op), font,
7507                                                buffer().params().track_changes);
7508                         }
7509                         cols = ocol;
7510                         ++row;
7511                         // append row if necessary
7512                         if (row == rows && p < len - 1) {
7513                                 loctab->appendRow(row - 1);
7514                                 rows = loctab->nrows();
7515                                 cells = loctab->numberofcells;
7516                         }
7517                         if (row < rows)
7518                                 cell = loctab->cellIndex(row, cols);
7519                         break;
7520                 }
7521                 ++p;
7522                 op = p;
7523         }
7524         // check for the last cell if there is no trailing '\n'
7525         if (cell < cells && op < len) {
7526                 shared_ptr<InsetTableCell> inset = loctab->cellInset(cell);
7527                 Font const font = bv.textMetrics(&inset->text()).displayFont(0, 0);
7528                 inset->setText(buf.substr(op, len - op), font,
7529                         buffer().params().track_changes);
7530         }
7531         return true;
7532 }
7533
7534
7535 void InsetTabular::addPreview(DocIterator const & inset_pos,
7536         PreviewLoader & loader) const
7537 {
7538         DocIterator cell_pos = inset_pos;
7539
7540         cell_pos.push_back(CursorSlice(*const_cast<InsetTabular *>(this)));
7541         for (row_type r = 0; r < tabular.nrows(); ++r) {
7542                 for (col_type c = 0; c < tabular.ncols(); ++c) {
7543                         cell_pos.top().idx() = tabular.cellIndex(r, c);
7544                         tabular.cellInset(r, c)->addPreview(cell_pos, loader);
7545                 }
7546         }
7547 }
7548
7549
7550 bool InsetTabular::completionSupported(Cursor const & cur) const
7551 {
7552         Cursor const & bvCur = cur.bv().cursor();
7553         if (&bvCur.inset() != this)
7554                 return false;
7555         return cur.text()->completionSupported(cur);
7556 }
7557
7558
7559 bool InsetTabular::inlineCompletionSupported(Cursor const & cur) const
7560 {
7561         return completionSupported(cur);
7562 }
7563
7564
7565 bool InsetTabular::automaticInlineCompletion() const
7566 {
7567         return lyxrc.completion_inline_text;
7568 }
7569
7570
7571 bool InsetTabular::automaticPopupCompletion() const
7572 {
7573         return lyxrc.completion_popup_text;
7574 }
7575
7576
7577 bool InsetTabular::showCompletionCursor() const
7578 {
7579         return lyxrc.completion_cursor_text;
7580 }
7581
7582
7583 CompletionList const * InsetTabular::createCompletionList(Cursor const & cur) const
7584 {
7585         return completionSupported(cur) ? cur.text()->createCompletionList(cur) : 0;
7586 }
7587
7588
7589 docstring InsetTabular::completionPrefix(Cursor const & cur) const
7590 {
7591         if (!completionSupported(cur))
7592                 return docstring();
7593         return cur.text()->completionPrefix(cur);
7594 }
7595
7596
7597 bool InsetTabular::insertCompletion(Cursor & cur, docstring const & s, bool finished)
7598 {
7599         if (!completionSupported(cur))
7600                 return false;
7601
7602         return cur.text()->insertCompletion(cur, s, finished);
7603 }
7604
7605
7606 void InsetTabular::completionPosAndDim(Cursor const & cur, int & x, int & y,
7607                                     Dimension & dim) const
7608 {
7609         TextMetrics const & tm = cur.bv().textMetrics(cur.text());
7610         tm.completionPosAndDim(cur, x, y, dim);
7611 }
7612
7613
7614 void InsetTabular::string2params(string const & in, InsetTabular & inset)
7615 {
7616         istringstream data(in);
7617         Lexer lex;
7618         lex.setStream(data);
7619
7620         if (in.empty())
7621                 return;
7622
7623         string token;
7624         lex >> token;
7625         if (!lex || token != "tabular") {
7626                 LYXERR0("Expected arg 1 to be \"tabular\" in " << in);
7627                 return;
7628         }
7629
7630         // This is part of the inset proper that is usually swallowed
7631         // by Buffer::readInset
7632         lex >> token;
7633         if (!lex || token != "Tabular") {
7634                 LYXERR0("Expected arg 2 to be \"Tabular\" in " << in);
7635                 return;
7636         }
7637
7638         inset.read(lex);
7639 }
7640
7641
7642 string InsetTabular::params2string(InsetTabular const & inset)
7643 {
7644         ostringstream data;
7645         data << "tabular" << ' ';
7646         inset.write(data);
7647         data << "\\end_inset\n";
7648         return data.str();
7649 }
7650
7651
7652 void InsetTabular::setLayoutForHiddenCells(DocumentClass const & dc)
7653 {
7654         for (Tabular::col_type c = 0; c < tabular.ncols(); ++c) {
7655                 for (Tabular::row_type r = 0; r < tabular.nrows(); ++r) {
7656                         if (!tabular.isPartOfMultiColumn(r,c) &&
7657                             !tabular.isPartOfMultiRow(r,c))
7658                                 continue;
7659
7660                         ParagraphList & parlist = tabular.cellInset(r,c)->paragraphs();
7661                         ParagraphList::iterator it = parlist.begin();
7662                         ParagraphList::iterator const en = parlist.end();
7663                         for (; it != en; ++it)
7664                                         it->setLayout(dc.plainLayout());
7665                 }
7666         }
7667 }
7668
7669
7670 } // namespace lyx