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