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