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