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