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