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