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