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