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