]> git.lyx.org Git - lyx.git/blob - src/insets/InsetTabular.cpp
Remove all saveSelection calls and unify theSelection().setSelection. This is the...
[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 Jürgen Vigna
7  * \author Lars Gullik Bjønnes
8  * \author Matthias Ettrich
9  * \author José Matos
10  * \author Jean-Marc Lasgouttes
11  * \author Angus Leeming
12  * \author John Levon
13  * \author André Pönitz
14  * \author Jürgen Vigna
15  *
16  * Full author contact details are available in file CREDITS.
17  */
18
19 #include <config.h>
20
21 #include "InsetTabular.h"
22
23 #include "Buffer.h"
24 #include "BufferParams.h"
25 #include "BufferView.h"
26 #include "Cursor.h"
27 #include "CutAndPaste.h"
28 #include "CoordCache.h"
29 #include "debug.h"
30 #include "DispatchResult.h"
31 #include "FuncRequest.h"
32 #include "FuncStatus.h"
33 #include "gettext.h"
34 #include "Language.h"
35 #include "LaTeXFeatures.h"
36 #include "Color.h"
37 #include "callback.h"
38 #include "Lexer.h"
39 #include "MetricsInfo.h"
40 #include "OutputParams.h"
41 #include "Paragraph.h"
42 #include "paragraph_funcs.h"
43 #include "ParagraphParameters.h"
44 #include "Undo.h"
45
46 #include "support/convert.h"
47 #include "support/lstrings.h"
48
49 #include "frontends/alert.h"
50 #include "frontends/Clipboard.h"
51 #include "frontends/Painter.h"
52 #include "frontends/Selection.h"
53
54 #include <sstream>
55 #include <iostream>
56 #include <limits>
57
58
59 namespace lyx {
60
61 using support::prefixIs;
62 using support::ltrim;
63 using support::rtrim;
64 using support::suffixIs;
65
66 using boost::shared_ptr;
67 using boost::dynamic_pointer_cast;
68
69 using std::abs;
70 using std::auto_ptr;
71 using std::endl;
72 using std::getline;
73 using std::istream;
74 using std::istringstream;
75 using std::max;
76 using std::ostream;
77 using std::ostringstream;
78 using std::string;
79 using std::swap;
80 using std::vector;
81
82 #ifndef CXX_GLOBAL_CSTD
83 using std::strlen;
84 #endif
85
86 using cap::dirtyTabularStack;
87 using cap::tabularStackDirty;
88 using cap::saveSelection;
89
90 using graphics::PreviewLoader;
91
92 using frontend::Painter;
93 using frontend::Clipboard;
94
95 namespace Alert = frontend::Alert;
96
97
98 namespace {
99
100 int const ADD_TO_HEIGHT = 2;
101 int const ADD_TO_TABULAR_WIDTH = 2;
102 int const default_line_space = 10;
103 int const WIDTH_OF_LINE = 5;
104
105
106 ///
107 boost::scoped_ptr<Tabular> paste_tabular;
108
109
110 struct TabularFeature {
111         Tabular::Feature action;
112         string feature;
113 };
114
115
116 TabularFeature tabularFeature[] =
117 {
118         { Tabular::APPEND_ROW, "append-row" },
119         { Tabular::APPEND_COLUMN, "append-column" },
120         { Tabular::DELETE_ROW, "delete-row" },
121         { Tabular::DELETE_COLUMN, "delete-column" },
122         { Tabular::COPY_ROW, "copy-row" },
123         { Tabular::COPY_COLUMN, "copy-column" },
124         { Tabular::TOGGLE_LINE_TOP, "toggle-line-top" },
125         { Tabular::TOGGLE_LINE_BOTTOM, "toggle-line-bottom" },
126         { Tabular::TOGGLE_LINE_LEFT, "toggle-line-left" },
127         { Tabular::TOGGLE_LINE_RIGHT, "toggle-line-right" },
128         { Tabular::ALIGN_LEFT, "align-left" },
129         { Tabular::ALIGN_RIGHT, "align-right" },
130         { Tabular::ALIGN_CENTER, "align-center" },
131         { Tabular::ALIGN_BLOCK, "align-block" },
132         { Tabular::VALIGN_TOP, "valign-top" },
133         { Tabular::VALIGN_BOTTOM, "valign-bottom" },
134         { Tabular::VALIGN_MIDDLE, "valign-middle" },
135         { Tabular::M_TOGGLE_LINE_TOP, "m-toggle-line-top" },
136         { Tabular::M_TOGGLE_LINE_BOTTOM, "m-toggle-line-bottom" },
137         { Tabular::M_TOGGLE_LINE_LEFT, "m-toggle-line-left" },
138         { Tabular::M_TOGGLE_LINE_RIGHT, "m-toggle-line-right" },
139         { Tabular::M_ALIGN_LEFT, "m-align-left" },
140         { Tabular::M_ALIGN_RIGHT, "m-align-right" },
141         { Tabular::M_ALIGN_CENTER, "m-align-center" },
142         { Tabular::M_VALIGN_TOP, "m-valign-top" },
143         { Tabular::M_VALIGN_BOTTOM, "m-valign-bottom" },
144         { Tabular::M_VALIGN_MIDDLE, "m-valign-middle" },
145         { Tabular::MULTICOLUMN, "multicolumn" },
146         { Tabular::SET_ALL_LINES, "set-all-lines" },
147         { Tabular::UNSET_ALL_LINES, "unset-all-lines" },
148         { Tabular::SET_LONGTABULAR, "set-longtabular" },
149         { Tabular::UNSET_LONGTABULAR, "unset-longtabular" },
150         { Tabular::SET_PWIDTH, "set-pwidth" },
151         { Tabular::SET_MPWIDTH, "set-mpwidth" },
152         { Tabular::SET_ROTATE_TABULAR, "set-rotate-tabular" },
153         { Tabular::UNSET_ROTATE_TABULAR, "unset-rotate-tabular" },
154         { Tabular::TOGGLE_ROTATE_TABULAR, "toggle-rotate-tabular" },
155         { Tabular::SET_ROTATE_CELL, "set-rotate-cell" },
156         { Tabular::UNSET_ROTATE_CELL, "unset-rotate-cell" },
157         { Tabular::TOGGLE_ROTATE_CELL, "toggle-rotate-cell" },
158         { Tabular::SET_USEBOX, "set-usebox" },
159         { Tabular::SET_LTHEAD, "set-lthead" },
160         { Tabular::UNSET_LTHEAD, "unset-lthead" },
161         { Tabular::SET_LTFIRSTHEAD, "set-ltfirsthead" },
162         { Tabular::UNSET_LTFIRSTHEAD, "unset-ltfirsthead" },
163         { Tabular::SET_LTFOOT, "set-ltfoot" },
164         { Tabular::UNSET_LTFOOT, "unset-ltfoot" },
165         { Tabular::SET_LTLASTFOOT, "set-ltlastfoot" },
166         { Tabular::UNSET_LTLASTFOOT, "unset-ltlastfoot" },
167         { Tabular::SET_LTNEWPAGE, "set-ltnewpage" },
168         { Tabular::SET_SPECIAL_COLUMN, "set-special-column" },
169         { Tabular::SET_SPECIAL_MULTI, "set-special-multi" },
170         { Tabular::SET_BOOKTABS, "set-booktabs" },
171         { Tabular::UNSET_BOOKTABS, "unset-booktabs" },
172         { Tabular::SET_TOP_SPACE, "set-top-space" },
173         { Tabular::SET_BOTTOM_SPACE, "set-bottom-space" },
174         { Tabular::SET_INTERLINE_SPACE, "set-interline-space" },
175         { Tabular::LAST_ACTION, "" }
176 };
177
178
179 class FeatureEqual : public std::unary_function<TabularFeature, bool> {
180 public:
181         FeatureEqual(Tabular::Feature feature)
182                 : feature_(feature) {}
183         bool operator()(TabularFeature const & tf) const {
184                 return tf.action == feature_;
185         }
186 private:
187         Tabular::Feature feature_;
188 };
189
190
191 template <class T>
192 string const write_attribute(string const & name, T const & t)
193 {
194         string const s = tostr(t);
195         return s.empty() ? s : " " + name + "=\"" + s + "\"";
196 }
197
198 template <>
199 string const write_attribute(string const & name, string const & t)
200 {
201         return t.empty() ? t : " " + name + "=\"" + t + "\"";
202 }
203
204
205 template <>
206 string const write_attribute(string const & name, docstring const & t)
207 {
208         return t.empty() ? string() : " " + name + "=\"" + to_utf8(t) + "\"";
209 }
210
211
212 template <>
213 string const write_attribute(string const & name, bool const & b)
214 {
215         // we write only true attribute values so we remove a bit of the
216         // file format bloat for tabulars.
217         return b ? write_attribute(name, convert<string>(b)) : string();
218 }
219
220
221 template <>
222 string const write_attribute(string const & name, int const & i)
223 {
224         // we write only true attribute values so we remove a bit of the
225         // file format bloat for tabulars.
226         return i ? write_attribute(name, convert<string>(i)) : string();
227 }
228
229
230 template <>
231 string const write_attribute(string const & name, Tabular::idx_type const & i)
232 {
233         // we write only true attribute values so we remove a bit of the
234         // file format bloat for tabulars.
235         return i ? write_attribute(name, convert<string>(i)) : string();
236 }
237
238
239 template <>
240 string const write_attribute(string const & name, Length const & value)
241 {
242         // we write only the value if we really have one same reson as above.
243         return value.zero() ? string() : write_attribute(name, value.asString());
244 }
245
246
247 string const tostr(LyXAlignment const & num)
248 {
249         switch (num) {
250         case LYX_ALIGN_NONE:
251                 return "none";
252         case LYX_ALIGN_BLOCK:
253                 return "block";
254         case LYX_ALIGN_LEFT:
255                 return "left";
256         case LYX_ALIGN_CENTER:
257                 return "center";
258         case LYX_ALIGN_RIGHT:
259                 return "right";
260         case LYX_ALIGN_LAYOUT:
261                 return "layout";
262         case LYX_ALIGN_SPECIAL:
263                 return "special";
264         }
265         return string();
266 }
267
268
269 string const tostr(Tabular::VAlignment const & num)
270 {
271         switch (num) {
272         case Tabular::LYX_VALIGN_TOP:
273                 return "top";
274         case Tabular::LYX_VALIGN_MIDDLE:
275                 return "middle";
276         case Tabular::LYX_VALIGN_BOTTOM:
277                 return "bottom";
278         }
279         return string();
280 }
281
282
283 string const tostr(Tabular::BoxType const & num)
284 {
285         switch (num) {
286         case Tabular::BOX_NONE:
287                 return "none";
288         case Tabular::BOX_PARBOX:
289                 return "parbox";
290         case Tabular::BOX_MINIPAGE:
291                 return "minipage";
292         }
293         return string();
294 }
295
296
297 // I would have liked a fromstr template a lot better. (Lgb)
298 bool string2type(string const str, LyXAlignment & num)
299 {
300         if (str == "none")
301                 num = LYX_ALIGN_NONE;
302         else if (str == "block")
303                 num = LYX_ALIGN_BLOCK;
304         else if (str == "left")
305                 num = LYX_ALIGN_LEFT;
306         else if (str == "center")
307                 num = LYX_ALIGN_CENTER;
308         else if (str == "right")
309                 num = LYX_ALIGN_RIGHT;
310         else
311                 return false;
312         return true;
313 }
314
315
316 bool string2type(string const str, Tabular::VAlignment & num)
317 {
318         if (str == "top")
319                 num = Tabular::LYX_VALIGN_TOP;
320         else if (str == "middle" )
321                 num = Tabular::LYX_VALIGN_MIDDLE;
322         else if (str == "bottom")
323                 num = Tabular::LYX_VALIGN_BOTTOM;
324         else
325                 return false;
326         return true;
327 }
328
329
330 bool string2type(string const str, Tabular::BoxType & num)
331 {
332         if (str == "none")
333                 num = Tabular::BOX_NONE;
334         else if (str == "parbox")
335                 num = Tabular::BOX_PARBOX;
336         else if (str == "minipage")
337                 num = Tabular::BOX_MINIPAGE;
338         else
339                 return false;
340         return true;
341 }
342
343
344 bool string2type(string const str, bool & num)
345 {
346         if (str == "true")
347                 num = true;
348         else if (str == "false")
349                 num = false;
350         else
351                 return false;
352         return true;
353 }
354
355
356 bool getTokenValue(string const & str, char const * token, string & ret)
357 {
358         ret.erase();
359         size_t token_length = strlen(token);
360         string::size_type pos = str.find(token);
361
362         if (pos == string::npos || pos + token_length + 1 >= str.length()
363                 || str[pos + token_length] != '=')
364                 return false;
365         pos += token_length + 1;
366         char ch = str[pos];
367         if (ch != '"' && ch != '\'') { // only read till next space
368                 ret += ch;
369                 ch = ' ';
370         }
371         while (pos < str.length() - 1 && str[++pos] != ch)
372                 ret += str[pos];
373
374         return true;
375 }
376
377
378 bool getTokenValue(string const & str, char const * token, docstring & ret)
379 {
380         string tmp;
381         bool const success = getTokenValue(str, token, tmp);
382         ret = from_utf8(tmp);
383         return success;
384 }
385
386
387 bool getTokenValue(string const & str, char const * token, int & num)
388 {
389         string tmp;
390         num = 0;
391         if (!getTokenValue(str, token, tmp))
392                 return false;
393         num = convert<int>(tmp);
394         return true;
395 }
396
397
398 bool getTokenValue(string const & str, char const * token, LyXAlignment & num)
399 {
400         string tmp;
401         return getTokenValue(str, token, tmp) && string2type(tmp, num);
402 }
403
404
405 bool getTokenValue(string const & str, char const * token,
406                                    Tabular::VAlignment & num)
407 {
408         string tmp;
409         return getTokenValue(str, token, tmp) && string2type(tmp, num);
410 }
411
412
413 bool getTokenValue(string const & str, char const * token,
414                                    Tabular::BoxType & num)
415 {
416         string tmp;
417         return getTokenValue(str, token, tmp) && string2type(tmp, num);
418 }
419
420
421 bool getTokenValue(string const & str, char const * token, bool & flag)
422 {
423         // set the flag always to false as this should be the default for bools
424         // not in the file-format.
425         flag = false;
426         string tmp;
427         return getTokenValue(str, token, tmp) && string2type(tmp, flag);
428 }
429
430
431 bool getTokenValue(string const & str, char const * token, Length & len)
432 {
433         // set the lenght to be zero() as default as this it should be if not
434         // in the file format.
435         len = Length();
436         string tmp;
437         return getTokenValue(str, token, tmp) && isValidLength(tmp, &len);
438 }
439
440
441 bool getTokenValue(string const & str, char const * token, Length & len, bool & flag)
442 {
443         len = Length();
444         flag = false;
445         string tmp;
446         if (!getTokenValue(str, token, tmp))
447                 return false;
448         if (tmp == "default") {
449                 flag = true;
450                 return  true;
451         }
452         return isValidLength(tmp, &len);
453 }
454
455
456 void l_getline(istream & is, string & str)
457 {
458         str.erase();
459         while (str.empty()) {
460                 getline(is, str);
461                 if (!str.empty() && str[str.length() - 1] == '\r')
462                         str.erase(str.length() - 1);
463         }
464 }
465
466 } // namespace
467
468
469 string const featureAsString(Tabular::Feature feature)
470 {
471         TabularFeature * end = tabularFeature +
472                 sizeof(tabularFeature) / sizeof(TabularFeature);
473         TabularFeature * it = std::find_if(tabularFeature, end,
474                                            FeatureEqual(feature));
475         return (it == end) ? string() : it->feature;
476 }
477
478
479
480 /////////////////////////////////////////////////////////////////////
481 //
482 // Tabular
483 //
484 /////////////////////////////////////////////////////////////////////
485
486
487 Tabular::cellstruct::cellstruct(BufferParams const & bp)
488         : cellno(0),
489           width_of_cell(0),
490           multicolumn(Tabular::CELL_NORMAL),
491           alignment(LYX_ALIGN_CENTER),
492           valignment(LYX_VALIGN_TOP),
493           top_line(true),
494           bottom_line(false),
495           left_line(true),
496           right_line(false),
497           usebox(BOX_NONE),
498           rotate(false),
499           inset(new InsetText(bp))
500 {}
501
502
503 Tabular::cellstruct::cellstruct(cellstruct const & cs)
504         : cellno(cs.cellno),
505           width_of_cell(cs.width_of_cell),
506           multicolumn(cs.multicolumn),
507           alignment(cs.alignment),
508           valignment(cs.valignment),
509           top_line(cs.top_line),
510           bottom_line(cs.bottom_line),
511           left_line(cs.left_line),
512           right_line(cs.right_line),
513           usebox(cs.usebox),
514           rotate(cs.rotate),
515           align_special(cs.align_special),
516           p_width(cs.p_width),
517           inset(dynamic_cast<InsetText*>(cs.inset->clone().release()))
518 {}
519
520
521 Tabular::cellstruct &
522 Tabular::cellstruct::operator=(cellstruct cs)
523 {
524         swap(cs);
525         return *this;
526 }
527
528
529 void
530 Tabular::cellstruct::swap(cellstruct & rhs)
531 {
532         std::swap(cellno, rhs.cellno);
533         std::swap(width_of_cell, rhs.width_of_cell);
534         std::swap(multicolumn, rhs.multicolumn);
535         std::swap(alignment, rhs.alignment);
536         std::swap(valignment, rhs.valignment);
537         std::swap(top_line, rhs.top_line);
538         std::swap(bottom_line, rhs.bottom_line);
539         std::swap(left_line, rhs.left_line);
540         std::swap(right_line, rhs.right_line);
541         std::swap(usebox, rhs.usebox);
542         std::swap(rotate, rhs.rotate);
543         std::swap(align_special, rhs.align_special);
544         p_width.swap(rhs.p_width);
545         inset.swap(rhs.inset);
546 }
547
548
549 Tabular::rowstruct::rowstruct()
550         : ascent_of_row(0),
551           descent_of_row(0),
552           top_line(true),
553           bottom_line(false),
554           top_space_default(false),
555           bottom_space_default(false),
556           interline_space_default(false),
557           endhead(false),
558           endfirsthead(false),
559           endfoot(false),
560           endlastfoot(false),
561           newpage(false)
562 {}
563
564
565 Tabular::columnstruct::columnstruct()
566         : alignment(LYX_ALIGN_CENTER),
567           valignment(LYX_VALIGN_TOP),
568           left_line(true),
569           right_line(false),
570           width_of_column(0)
571 {
572 }
573
574
575 Tabular::ltType::ltType()
576         : topDL(false),
577           bottomDL(false),
578           empty(false)
579 {}
580
581
582 Tabular::Tabular(BufferParams const & bp, row_type rows_arg,
583                        col_type columns_arg)
584 {
585         init(bp, rows_arg, columns_arg);
586 }
587
588
589 // activates all lines and sets all widths to 0
590 void Tabular::init(BufferParams const & bp, row_type rows_arg,
591                       col_type columns_arg)
592 {
593         rows_    = rows_arg;
594         columns_ = columns_arg;
595         row_info = row_vector(rows_);
596         column_info = column_vector(columns_);
597         cell_info = cell_vvector(rows_, cell_vector(columns_, cellstruct(bp)));
598         row_info.reserve(10);
599         column_info.reserve(10);
600         cell_info.reserve(100);
601         fixCellNums();
602         for (row_type i = 0; i < rows_; ++i)
603                 cell_info[i].back().right_line = true;
604         row_info.back().bottom_line = true;
605         row_info.front().bottom_line = true;
606         column_info.back().right_line = true;
607         is_long_tabular = false;
608         rotate = false;
609         use_booktabs = false;
610 }
611
612
613 void Tabular::fixCellNums()
614 {
615         idx_type cellno = 0;
616         for (row_type i = 0; i < rows_; ++i) {
617                 for (col_type j = 0; j < columns_; ++j) {
618                         // When debugging it can be nice to set
619                         // this to true.
620                         cell_info[i][j].inset->setDrawFrame(false);
621                         cell_info[i][j].cellno = cellno++;
622                 }
623                 cell_info[i].back().right_line = true;
624         }
625
626         set_row_column_number_info();
627 }
628
629
630 void Tabular::appendRow(BufferParams const & bp, idx_type const cell)
631 {
632         ++rows_;
633
634         row_type const row = row_of_cell(cell);
635
636         row_vector::iterator rit = row_info.begin() + row;
637         row_info.insert(rit, rowstruct());
638         // now set the values of the row before
639         row_info[row] = row_info[row + 1];
640
641         cell_vvector old(rows_ - 1);
642         for (row_type i = 0; i < rows_ - 1; ++i)
643                 swap(cell_info[i], old[i]);
644
645         cell_info = cell_vvector(rows_, cell_vector(columns_, cellstruct(bp)));
646
647         for (row_type i = 0; i <= row; ++i)
648                 swap(cell_info[i], old[i]);
649         for (row_type i = row + 2; i < rows_; ++i)
650                 swap(cell_info[i], old[i - 1]);
651
652         if (bp.trackChanges)
653                 for (col_type j = 0; j < columns_; ++j)
654                         cell_info[row + 1][j].inset->setChange(Change(Change::INSERTED));
655
656         set_row_column_number_info();
657 }
658
659
660 void Tabular::deleteRow(row_type const row)
661 {
662         // Not allowed to delete last row
663         if (rows_ == 1)
664                 return;
665
666         row_info.erase(row_info.begin() + row);
667         cell_info.erase(cell_info.begin() + row);
668         --rows_;
669         fixCellNums();
670 }
671
672
673 void Tabular::copyRow(BufferParams const & bp, row_type const row)
674 {
675         ++rows_;
676
677         row_info.insert(row_info.begin() + row, row_info[row]);
678         cell_info.insert(cell_info.begin() + row, cell_info[row]);
679
680         if (bp.trackChanges)
681                 for (col_type j = 0; j < columns_; ++j)
682                         cell_info[row + 1][j].inset->setChange(Change(Change::INSERTED));
683
684         set_row_column_number_info();
685 }
686
687
688 void Tabular::appendColumn(BufferParams const & bp, idx_type const cell)
689 {
690         ++columns_;
691
692         col_type const column = column_of_cell(cell);
693         column_vector::iterator cit = column_info.begin() + column + 1;
694         column_info.insert(cit, columnstruct());
695         // set the column values of the column before
696         column_info[column + 1] = column_info[column];
697
698         for (row_type i = 0; i < rows_; ++i) {
699                 cell_info[i].insert(cell_info[i].begin() + column + 1, cellstruct(bp));
700
701                 // care about multicolumns
702                 if (cell_info[i][column + 1].multicolumn == CELL_BEGIN_OF_MULTICOLUMN)
703                         cell_info[i][column + 1].multicolumn = CELL_PART_OF_MULTICOLUMN;
704
705                 if (column + 2 >= columns_
706                     || cell_info[i][column + 2].multicolumn != CELL_PART_OF_MULTICOLUMN)
707                         cell_info[i][column + 1].multicolumn = Tabular::CELL_NORMAL;
708         }
709         //++column;
710         for (row_type i = 0; i < rows_; ++i) {
711                 cell_info[i][column + 1].inset->clear();
712                 if (bp.trackChanges)
713                         cell_info[i][column + 1].inset->setChange(Change(Change::INSERTED));
714         }
715         fixCellNums();
716 }
717
718
719 void Tabular::deleteColumn(col_type const column)
720 {
721         // Not allowed to delete last column
722         if (columns_ == 1)
723                 return;
724
725         column_info.erase(column_info.begin() + column);
726         for (row_type i = 0; i < rows_; ++i)
727                 cell_info[i].erase(cell_info[i].begin() + column);
728         --columns_;
729         fixCellNums();
730 }
731
732
733 void Tabular::copyColumn(BufferParams const & bp, col_type const column)
734 {
735         ++columns_;
736
737         column_info.insert(column_info.begin() + column, column_info[column]);
738
739         for (row_type i = 0; i < rows_; ++i)
740                 cell_info[i].insert(cell_info[i].begin() + column, cell_info[i][column]);
741
742         if (bp.trackChanges)
743                 for (row_type i = 0; i < rows_; ++i)
744                         cell_info[i][column + 1].inset->setChange(Change(Change::INSERTED));
745         fixCellNums();
746 }
747
748
749 void Tabular::set_row_column_number_info()
750 {
751         numberofcells = 0;
752         for (row_type row = 0; row < rows_; ++row) {
753                 for (col_type column = 0; column < columns_; ++column) {
754                         if (cell_info[row][column].multicolumn
755                                 != Tabular::CELL_PART_OF_MULTICOLUMN)
756                                 ++numberofcells;
757                         if (numberofcells == 0)
758                                 // FIXME: Is this intended?
759                                 cell_info[row][column].cellno = npos;
760                         else
761                                 cell_info[row][column].cellno =
762                                         numberofcells - 1;
763                 }
764         }
765
766         rowofcell.resize(numberofcells);
767         columnofcell.resize(numberofcells);
768
769         row_type row = 0;
770         col_type column = 0;
771         for (idx_type c = 0;
772                  c < numberofcells && row < rows_ && column < columns_;) {
773                 rowofcell[c] = row;
774                 columnofcell[c] = column;
775                 ++c;
776                 do {
777                         ++column;
778                 } while (column < columns_ &&
779                                  cell_info[row][column].multicolumn
780                                  == Tabular::CELL_PART_OF_MULTICOLUMN);
781
782                 if (column == columns_) {
783                         column = 0;
784                         ++row;
785                 }
786         }
787
788         for (row_type row = 0; row < rows_; ++row) {
789                 for (col_type column = 0; column < columns_; ++column) {
790                         if (isPartOfMultiColumn(row,column))
791                                 continue;
792                         cell_info[row][column].inset->setAutoBreakRows(
793                                 !getPWidth(getCellNumber(row, column)).zero());
794                 }
795         }
796 }
797
798
799 Tabular::idx_type Tabular::getNumberOfCells() const
800 {
801         return numberofcells;
802 }
803
804
805 Tabular::idx_type Tabular::numberOfCellsInRow(idx_type const cell) const
806 {
807         row_type const row = row_of_cell(cell);
808         idx_type result = 0;
809         for (col_type i = 0; i < columns_; ++i)
810                 if (cell_info[row][i].multicolumn != Tabular::CELL_PART_OF_MULTICOLUMN)
811                         ++result;
812         return result;
813 }
814
815
816 bool Tabular::topLine(idx_type const cell, bool const wholerow) const
817 {
818         if (!wholerow && isMultiColumn(cell) &&
819             !(use_booktabs && row_of_cell(cell) == 0))
820                 return cellinfo_of_cell(cell).top_line;
821         return row_info[row_of_cell(cell)].top_line;
822 }
823
824
825 bool Tabular::bottomLine(idx_type const cell, bool wholerow) const
826 {
827         if (!wholerow && isMultiColumn(cell) &&
828             !(use_booktabs && isLastRow(cell)))
829                 return cellinfo_of_cell(cell).bottom_line;
830         return row_info[row_of_cell(cell)].bottom_line;
831 }
832
833
834 bool Tabular::leftLine(idx_type cell, bool wholecolumn) const
835 {
836         if (use_booktabs)
837                 return false;
838         if (!wholecolumn && isMultiColumn(cell) &&
839                 (isFirstCellInRow(cell) || isMultiColumn(cell-1)))
840                 return cellinfo_of_cell(cell).left_line;
841         return column_info[column_of_cell(cell)].left_line;
842 }
843
844
845 bool Tabular::rightLine(idx_type cell, bool wholecolumn) const
846 {
847         if (use_booktabs)
848                 return false;
849         if (!wholecolumn && isMultiColumn(cell) &&
850                 (isLastCellInRow(cell) || isMultiColumn(cell + 1)))
851                 return cellinfo_of_cell(cell).right_line;
852         return column_info[right_column_of_cell(cell)].right_line;
853 }
854
855
856 bool Tabular::topAlreadyDrawn(idx_type cell) const
857 {
858         row_type row = row_of_cell(cell);
859         if (row > 0 && !getAdditionalHeight(row)) {
860                 col_type column = column_of_cell(cell);
861                 --row;
862                 while (column
863                            && cell_info[row][column].multicolumn
864                            == Tabular::CELL_PART_OF_MULTICOLUMN)
865                         --column;
866                 if (cell_info[row][column].multicolumn == Tabular::CELL_NORMAL)
867                         return row_info[row].bottom_line;
868                 else
869                         return cell_info[row][column].bottom_line;
870         }
871         return false;
872 }
873
874
875 bool Tabular::leftAlreadyDrawn(idx_type cell) const
876 {
877         col_type column = column_of_cell(cell);
878         if (column > 0) {
879                 row_type row = row_of_cell(cell);
880                 while (--column &&
881                            (cell_info[row][column].multicolumn ==
882                                 Tabular::CELL_PART_OF_MULTICOLUMN));
883                 if (getAdditionalWidth(cell_info[row][column].cellno))
884                         return false;
885                 return rightLine(cell_info[row][column].cellno);
886         }
887         return false;
888 }
889
890
891 bool Tabular::isLastRow(idx_type cell) const
892 {
893         return row_of_cell(cell) == rows_ - 1;
894 }
895
896
897 int Tabular::getAdditionalHeight(row_type row) const
898 {
899         if (!row || row >= rows_)
900                 return 0;
901
902         bool top = true;
903         bool bottom = true;
904
905         for (col_type column = 0; column < columns_ && bottom; ++column) {
906                 switch (cell_info[row - 1][column].multicolumn) {
907                 case Tabular::CELL_BEGIN_OF_MULTICOLUMN:
908                         bottom = cell_info[row - 1][column].bottom_line;
909                         break;
910                 case Tabular::CELL_NORMAL:
911                         bottom = row_info[row - 1].bottom_line;
912                 }
913         }
914         for (col_type column = 0; column < columns_ && top; ++column) {
915                 switch (cell_info[row][column].multicolumn) {
916                 case Tabular::CELL_BEGIN_OF_MULTICOLUMN:
917                         top = cell_info[row][column].top_line;
918                         break;
919                 case Tabular::CELL_NORMAL:
920                         top = row_info[row].top_line;
921                 }
922         }
923         int const interline_space = row_info[row - 1].interline_space_default ?
924                 default_line_space :
925                 row_info[row - 1].interline_space.inPixels(width_of_tabular);
926         if (top && bottom)
927                 return interline_space + WIDTH_OF_LINE;
928         return interline_space;
929 }
930
931
932 int Tabular::getAdditionalWidth(idx_type cell) const
933 {
934         // internally already set in setWidthOfCell
935         // used to get it back in text.cpp
936         col_type const col = right_column_of_cell(cell);
937         row_type const row = row_of_cell(cell);
938         if (col < columns_ - 1 && rightLine(cell) &&
939                 leftLine(cell_info[row][col+1].cellno)) // column_info[col+1].left_line)
940         {
941                 return WIDTH_OF_LINE;
942         }
943         return 0;
944 }
945
946
947 // returns the maximum over all rows
948 int Tabular::getWidthOfColumn(idx_type cell) const
949 {
950         col_type const column1 = column_of_cell(cell);
951         col_type const column2 = right_column_of_cell(cell);
952         int result = 0;
953         for (col_type i = column1; i <= column2; ++i)
954                 result += column_info[i].width_of_column;
955         return result;
956 }
957
958
959 int Tabular::getWidthOfTabular() const
960 {
961         return width_of_tabular;
962 }
963
964
965 // returns true if a complete update is necessary, otherwise false
966 bool Tabular::setWidthOfMulticolCell(idx_type cell, int new_width)
967 {
968         if (!isMultiColumn(cell))
969                 return false;
970
971         row_type const row = row_of_cell(cell);
972         col_type const column1 = column_of_cell(cell);
973         col_type const column2 = right_column_of_cell(cell);
974         int const old_val = cell_info[row][column2].width_of_cell;
975
976         // first set columns to 0 so we can calculate the right width
977         for (col_type i = column1; i <= column2; ++i) {
978                 cell_info[row][i].width_of_cell = 0;
979         }
980         // set the width to MAX_WIDTH until width > 0
981         int width = new_width + 2 * WIDTH_OF_LINE;
982         col_type i = column1;
983         for (; i < column2 && width > column_info[i].width_of_column; ++i) {
984                 cell_info[row][i].width_of_cell = column_info[i].width_of_column;
985                 width -= column_info[i].width_of_column;
986         }
987         if (width > 0) {
988                 cell_info[row][i].width_of_cell = width;
989         }
990         if (old_val != cell_info[row][column2].width_of_cell) {
991                 // in this case we have to recalculate all multicolumn cells which
992                 // have this column as one of theirs but not as last one
993                 calculate_width_of_column_NMC(i);
994                 recalculateMulticolumnsOfColumn(i);
995                 calculate_width_of_column(i);
996         }
997         return true;
998 }
999
1000
1001 void Tabular::recalculateMulticolumnsOfColumn(col_type column)
1002 {
1003         // the last column does not have to be recalculated because all
1004         // multicolumns will have here there last multicolumn cell which
1005         // always will have the whole rest of the width of the cell.
1006         if (columns_ < 2 || column > (columns_ - 2))
1007                 return;
1008         for (row_type row = 0; row < rows_; ++row) {
1009                 int mc = cell_info[row][column].multicolumn;
1010                 int nmc = cell_info[row][column+1].multicolumn;
1011                 // we only have to update multicolumns which do not have this
1012                 // column as their last column!
1013                 if (mc == CELL_BEGIN_OF_MULTICOLUMN ||
1014                           (mc == CELL_PART_OF_MULTICOLUMN &&
1015                            nmc == CELL_PART_OF_MULTICOLUMN))
1016                 {
1017                         idx_type const cellno = cell_info[row][column].cellno;
1018                         setWidthOfMulticolCell(cellno,
1019                                                getWidthOfCell(cellno) - 2 * WIDTH_OF_LINE);
1020                 }
1021         }
1022 }
1023
1024
1025 void Tabular::setWidthOfCell(idx_type cell, int new_width)
1026 {
1027         row_type const row = row_of_cell(cell);
1028         col_type const column1 = column_of_cell(cell);
1029         bool tmp = false;
1030         int width = 0;
1031         int add_width = 0;
1032
1033         if (rightLine(cell_info[row][column1].cellno, true) &&
1034                 column1 < columns_ - 1 &&
1035                 leftLine(cell_info[row][column1+1].cellno, true))
1036         {
1037                 add_width = WIDTH_OF_LINE;
1038         }
1039
1040         if (getWidthOfCell(cell) == new_width + 2 * WIDTH_OF_LINE + add_width)
1041                 return;
1042
1043         if (isMultiColumnReal(cell)) {
1044                 tmp = setWidthOfMulticolCell(cell, new_width);
1045         } else {
1046                 width = new_width + 2 * WIDTH_OF_LINE + add_width;
1047                 cell_info[row][column1].width_of_cell = width;
1048                 tmp = calculate_width_of_column_NMC(column1);
1049                 if (tmp)
1050                         recalculateMulticolumnsOfColumn(column1);
1051         }
1052         if (tmp) {
1053                 for (col_type i = 0; i < columns_; ++i)
1054                         calculate_width_of_column(i);
1055                 calculate_width_of_tabular();
1056         }
1057 }
1058
1059
1060 void Tabular::setAlignment(idx_type cell, LyXAlignment align,
1061                               bool onlycolumn)
1062 {
1063         if (!isMultiColumn(cell) || onlycolumn)
1064                 column_info[column_of_cell(cell)].alignment = align;
1065         if (!onlycolumn)
1066                 cellinfo_of_cell(cell).alignment = align;
1067 }
1068
1069
1070 void Tabular::setVAlignment(idx_type cell, VAlignment align,
1071                                bool onlycolumn)
1072 {
1073         if (!isMultiColumn(cell) || onlycolumn)
1074                 column_info[column_of_cell(cell)].valignment = align;
1075         if (!onlycolumn)
1076                 cellinfo_of_cell(cell).valignment = align;
1077 }
1078
1079
1080 namespace {
1081
1082 /**
1083  * Allow line and paragraph breaks for fixed width cells or disallow them,
1084  * merge cell paragraphs and reset layout to standard for variable width
1085  * cells.
1086  */
1087 void toggleFixedWidth(Cursor & cur, InsetText * inset, bool fixedWidth)
1088 {
1089         inset->setAutoBreakRows(fixedWidth);
1090         if (fixedWidth)
1091                 return;
1092
1093         // merge all paragraphs to one
1094         BufferParams const & bp = cur.bv().buffer()->params();
1095         while (inset->paragraphs().size() > 1)
1096                 mergeParagraph(bp, inset->paragraphs(), 0);
1097
1098         // reset layout
1099         cur.push(*inset);
1100         // undo information has already been recorded
1101         inset->getText(0)->setLayout(*cur.bv().buffer(), 0, cur.lastpit() + 1,
1102                         bp.getTextClass().defaultLayoutName());
1103         cur.pop();
1104 }
1105
1106 }
1107
1108
1109 void Tabular::setColumnPWidth(Cursor & cur, idx_type cell,
1110                 Length const & width)
1111 {
1112         col_type const j = column_of_cell(cell);
1113
1114         column_info[j].p_width = width;
1115         for (row_type i = 0; i < rows_; ++i) {
1116                 idx_type const cell = getCellNumber(i, j);
1117                 // because of multicolumns
1118                 toggleFixedWidth(cur, getCellInset(cell).get(),
1119                                  !getPWidth(cell).zero());
1120         }
1121         // cur paragraph can become invalid after paragraphs were merged
1122         if (cur.pit() > cur.lastpit())
1123                 cur.pit() = cur.lastpit();
1124         // cur position can become invalid after newlines were removed
1125         if (cur.pos() > cur.lastpos())
1126                 cur.pos() = cur.lastpos();
1127 }
1128
1129
1130 bool Tabular::setMColumnPWidth(Cursor & cur, idx_type cell,
1131                 Length const & width)
1132 {
1133         if (!isMultiColumn(cell))
1134                 return false;
1135
1136         cellinfo_of_cell(cell).p_width = width;
1137         toggleFixedWidth(cur, getCellInset(cell).get(), !width.zero());
1138         // cur paragraph can become invalid after paragraphs were merged
1139         if (cur.pit() > cur.lastpit())
1140                 cur.pit() = cur.lastpit();
1141         // cur position can become invalid after newlines were removed
1142         if (cur.pos() > cur.lastpos())
1143                 cur.pos() = cur.lastpos();
1144         return true;
1145 }
1146
1147
1148 void Tabular::setAlignSpecial(idx_type cell, docstring const & special,
1149                                  Tabular::Feature what)
1150 {
1151         if (what == SET_SPECIAL_MULTI)
1152                 cellinfo_of_cell(cell).align_special = special;
1153         else
1154                 column_info[column_of_cell(cell)].align_special = special;
1155 }
1156
1157
1158 void Tabular::setAllLines(idx_type cell, bool line)
1159 {
1160         setTopLine(cell, line);
1161         setBottomLine(cell, line);
1162         setRightLine(cell, line);
1163         setLeftLine(cell, line);
1164 }
1165
1166
1167 void Tabular::setTopLine(idx_type cell, bool line, bool wholerow)
1168 {
1169         row_type const row = row_of_cell(cell);
1170         if (wholerow || !isMultiColumn(cell))
1171                 row_info[row].top_line = line;
1172         else
1173                 cellinfo_of_cell(cell).top_line = line;
1174 }
1175
1176
1177 void Tabular::setBottomLine(idx_type cell, bool line, bool wholerow)
1178 {
1179         if (wholerow || !isMultiColumn(cell))
1180                 row_info[row_of_cell(cell)].bottom_line = line;
1181         else
1182                 cellinfo_of_cell(cell).bottom_line = line;
1183 }
1184
1185
1186 void Tabular::setLeftLine(idx_type cell, bool line, bool wholecolumn)
1187 {
1188         if (wholecolumn || !isMultiColumn(cell))
1189                 column_info[column_of_cell(cell)].left_line = line;
1190         else
1191                 cellinfo_of_cell(cell).left_line = line;
1192 }
1193
1194
1195 void Tabular::setRightLine(idx_type cell, bool line, bool wholecolumn)
1196 {
1197         if (wholecolumn || !isMultiColumn(cell))
1198                 column_info[right_column_of_cell(cell)].right_line = line;
1199         else
1200                 cellinfo_of_cell(cell).right_line = line;
1201 }
1202
1203
1204 LyXAlignment Tabular::getAlignment(idx_type cell, bool onlycolumn) const
1205 {
1206         if (!onlycolumn && isMultiColumn(cell))
1207                 return cellinfo_of_cell(cell).alignment;
1208         return column_info[column_of_cell(cell)].alignment;
1209 }
1210
1211
1212 Tabular::VAlignment
1213 Tabular::getVAlignment(idx_type cell, bool onlycolumn) const
1214 {
1215         if (!onlycolumn && isMultiColumn(cell))
1216                 return cellinfo_of_cell(cell).valignment;
1217         return column_info[column_of_cell(cell)].valignment;
1218 }
1219
1220
1221 Length const Tabular::getPWidth(idx_type cell) const
1222 {
1223         if (isMultiColumn(cell))
1224                 return cellinfo_of_cell(cell).p_width;
1225         return column_info[column_of_cell(cell)].p_width;
1226 }
1227
1228
1229 Length const Tabular::getColumnPWidth(idx_type cell) const
1230 {
1231         return column_info[column_of_cell(cell)].p_width;
1232 }
1233
1234
1235 Length const Tabular::getMColumnPWidth(idx_type cell) const
1236 {
1237         if (isMultiColumn(cell))
1238                 return cellinfo_of_cell(cell).p_width;
1239         return Length();
1240 }
1241
1242
1243 docstring const Tabular::getAlignSpecial(idx_type cell, int what) const
1244 {
1245         if (what == SET_SPECIAL_MULTI)
1246                 return cellinfo_of_cell(cell).align_special;
1247         return column_info[column_of_cell(cell)].align_special;
1248 }
1249
1250
1251 int Tabular::getWidthOfCell(idx_type cell) const
1252 {
1253         row_type const row = row_of_cell(cell);
1254         col_type const column1 = column_of_cell(cell);
1255         col_type const column2 = right_column_of_cell(cell);
1256         int result = 0;
1257         for (col_type i = column1; i <= column2; ++i)
1258                 result += cell_info[row][i].width_of_cell;
1259         return result;
1260 }
1261
1262
1263 int Tabular::getBeginningOfTextInCell(idx_type cell) const
1264 {
1265         int x = 0;
1266
1267         switch (getAlignment(cell)) {
1268         case LYX_ALIGN_CENTER:
1269                 x += (getWidthOfColumn(cell) - getWidthOfCell(cell)) / 2;
1270                 break;
1271         case LYX_ALIGN_RIGHT:
1272                 x += getWidthOfColumn(cell) - getWidthOfCell(cell);
1273                 // + getAdditionalWidth(cell);
1274                 break;
1275         default:
1276                 // LYX_ALIGN_LEFT: nothing :-)
1277                 break;
1278         }
1279
1280         // the LaTeX Way :-(
1281         x += WIDTH_OF_LINE;
1282         return x;
1283 }
1284
1285
1286 bool Tabular::isFirstCellInRow(idx_type cell) const
1287 {
1288         return column_of_cell(cell) == 0;
1289 }
1290
1291
1292 Tabular::idx_type Tabular::getFirstCellInRow(row_type row) const
1293 {
1294         if (row > rows_ - 1)
1295                 row = rows_ - 1;
1296         return cell_info[row][0].cellno;
1297 }
1298
1299
1300 bool Tabular::isLastCellInRow(idx_type cell) const
1301 {
1302         return right_column_of_cell(cell) == columns_ - 1;
1303 }
1304
1305
1306 Tabular::idx_type Tabular::getLastCellInRow(row_type row) const
1307 {
1308         if (row > rows_ - 1)
1309                 row = rows_ - 1;
1310         return cell_info[row][columns_-1].cellno;
1311 }
1312
1313
1314 void Tabular::calculate_width_of_column(col_type column)
1315 {
1316         int maximum = 0;
1317         for (row_type i = 0; i < rows_; ++i)
1318                 maximum = max(cell_info[i][column].width_of_cell, maximum);
1319         column_info[column].width_of_column = maximum;
1320 }
1321
1322
1323 //
1324 // Calculate the columns regarding ONLY the normal cells and if this
1325 // column is inside a multicolumn cell then use it only if its the last
1326 // column of this multicolumn cell as this gives an added width to the
1327 // column, all the rest should be adapted!
1328 //
1329 bool Tabular::calculate_width_of_column_NMC(col_type column)
1330 {
1331         int const old_column_width = column_info[column].width_of_column;
1332         int max = 0;
1333         for (row_type i = 0; i < rows_; ++i) {
1334                 idx_type cell = getCellNumber(i, column);
1335                 bool ismulti = isMultiColumnReal(cell);
1336                 if ((!ismulti || column == right_column_of_cell(cell)) &&
1337                         cell_info[i][column].width_of_cell > max)
1338                 {
1339                         max = cell_info[i][column].width_of_cell;
1340                 }
1341         }
1342         column_info[column].width_of_column = max;
1343         return column_info[column].width_of_column != old_column_width;
1344 }
1345
1346
1347 void Tabular::calculate_width_of_tabular()
1348 {
1349         width_of_tabular = 0;
1350         for (col_type i = 0; i < columns_; ++i)
1351                 width_of_tabular += column_info[i].width_of_column;
1352 }
1353
1354
1355 Tabular::row_type Tabular::row_of_cell(idx_type cell) const
1356 {
1357         if (cell >= numberofcells)
1358                 return rows_ - 1;
1359         if (cell == npos)
1360                 return 0;
1361         return rowofcell[cell];
1362 }
1363
1364
1365 Tabular::col_type Tabular::column_of_cell(idx_type cell) const
1366 {
1367         if (cell >= numberofcells)
1368                 return columns_ - 1;
1369         if (cell == npos)
1370                 return 0;
1371         return columnofcell[cell];
1372 }
1373
1374
1375 Tabular::col_type Tabular::right_column_of_cell(idx_type cell) const
1376 {
1377         row_type const row = row_of_cell(cell);
1378         col_type column = column_of_cell(cell);
1379         while (column < columns_ - 1 &&
1380                    cell_info[row][column + 1].multicolumn == Tabular::CELL_PART_OF_MULTICOLUMN)
1381                 ++column;
1382         return column;
1383 }
1384
1385
1386 void Tabular::write(Buffer const & buf, ostream & os) const
1387 {
1388         // header line
1389         os << "<lyxtabular"
1390            << write_attribute("version", 3)
1391            << write_attribute("rows", rows_)
1392            << write_attribute("columns", columns_)
1393            << ">\n";
1394         // global longtable options
1395         os << "<features"
1396            << write_attribute("rotate", rotate)
1397            << write_attribute("booktabs", use_booktabs)
1398            << write_attribute("islongtable", is_long_tabular)
1399            << write_attribute("firstHeadTopDL", endfirsthead.topDL)
1400            << write_attribute("firstHeadBottomDL", endfirsthead.bottomDL)
1401            << write_attribute("firstHeadEmpty", endfirsthead.empty)
1402            << write_attribute("headTopDL", endhead.topDL)
1403            << write_attribute("headBottomDL", endhead.bottomDL)
1404            << write_attribute("footTopDL", endfoot.topDL)
1405            << write_attribute("footBottomDL", endfoot.bottomDL)
1406            << write_attribute("lastFootTopDL", endlastfoot.topDL)
1407            << write_attribute("lastFootBottomDL", endlastfoot.bottomDL)
1408            << write_attribute("lastFootEmpty", endlastfoot.empty)
1409            << ">\n";
1410         for (col_type j = 0; j < columns_; ++j) {
1411                 os << "<column"
1412                    << write_attribute("alignment", column_info[j].alignment)
1413                    << write_attribute("valignment", column_info[j].valignment)
1414                    << write_attribute("leftline", column_info[j].left_line)
1415                    << write_attribute("rightline", column_info[j].right_line)
1416                    << write_attribute("width", column_info[j].p_width.asString())
1417                    << write_attribute("special", column_info[j].align_special)
1418                    << ">\n";
1419         }
1420         for (row_type i = 0; i < rows_; ++i) {
1421                 os << "<row"
1422                    << write_attribute("topline", row_info[i].top_line)
1423                    << write_attribute("bottomline", row_info[i].bottom_line);
1424                 static const string def("default");
1425                 if (row_info[i].top_space_default)
1426                         os << write_attribute("topspace", def);
1427                 else
1428                         os << write_attribute("topspace", row_info[i].top_space);
1429                 if (row_info[i].bottom_space_default)
1430                         os << write_attribute("bottomspace", def);
1431                 else
1432                         os << write_attribute("bottomspace", row_info[i].bottom_space);
1433                 if (row_info[i].interline_space_default)
1434                         os << write_attribute("interlinespace", def);
1435                 else
1436                         os << write_attribute("interlinespace", row_info[i].interline_space);
1437                 os << write_attribute("endhead", row_info[i].endhead)
1438                    << write_attribute("endfirsthead", row_info[i].endfirsthead)
1439                    << write_attribute("endfoot", row_info[i].endfoot)
1440                    << write_attribute("endlastfoot", row_info[i].endlastfoot)
1441                    << write_attribute("newpage", row_info[i].newpage)
1442                    << ">\n";
1443                 for (col_type j = 0; j < columns_; ++j) {
1444                         os << "<cell"
1445                            << write_attribute("multicolumn", cell_info[i][j].multicolumn)
1446                            << write_attribute("alignment", cell_info[i][j].alignment)
1447                            << write_attribute("valignment", cell_info[i][j].valignment)
1448                            << write_attribute("topline", cell_info[i][j].top_line)
1449                            << write_attribute("bottomline", cell_info[i][j].bottom_line)
1450                            << write_attribute("leftline", cell_info[i][j].left_line)
1451                            << write_attribute("rightline", cell_info[i][j].right_line)
1452                            << write_attribute("rotate", cell_info[i][j].rotate)
1453                            << write_attribute("usebox", cell_info[i][j].usebox)
1454                            << write_attribute("width", cell_info[i][j].p_width)
1455                            << write_attribute("special", cell_info[i][j].align_special)
1456                            << ">\n";
1457                         os << "\\begin_inset ";
1458                         cell_info[i][j].inset->write(buf, os);
1459                         os << "\n\\end_inset\n"
1460                            << "</cell>\n";
1461                 }
1462                 os << "</row>\n";
1463         }
1464         os << "</lyxtabular>\n";
1465 }
1466
1467
1468 void Tabular::read(Buffer const & buf, Lexer & lex)
1469 {
1470         string line;
1471         istream & is = lex.getStream();
1472
1473         l_getline(is, line);
1474         if (!prefixIs(line, "<lyxtabular ")
1475                 && !prefixIs(line, "<Tabular ")) {
1476                 BOOST_ASSERT(false);
1477                 return;
1478         }
1479
1480         int version;
1481         if (!getTokenValue(line, "version", version))
1482                 return;
1483         BOOST_ASSERT(version >= 2);
1484
1485         int rows_arg;
1486         if (!getTokenValue(line, "rows", rows_arg))
1487                 return;
1488         int columns_arg;
1489         if (!getTokenValue(line, "columns", columns_arg))
1490                 return;
1491         init(buf.params(), rows_arg, columns_arg);
1492         l_getline(is, line);
1493         if (!prefixIs(line, "<features")) {
1494                 lyxerr << "Wrong tabular format (expected <features ...> got"
1495                        << line << ')' << endl;
1496                 return;
1497         }
1498         getTokenValue(line, "rotate", rotate);
1499         getTokenValue(line, "booktabs", use_booktabs);
1500         getTokenValue(line, "islongtable", is_long_tabular);
1501         getTokenValue(line, "firstHeadTopDL", endfirsthead.topDL);
1502         getTokenValue(line, "firstHeadBottomDL", endfirsthead.bottomDL);
1503         getTokenValue(line, "firstHeadEmpty", endfirsthead.empty);
1504         getTokenValue(line, "headTopDL", endhead.topDL);
1505         getTokenValue(line, "headBottomDL", endhead.bottomDL);
1506         getTokenValue(line, "footTopDL", endfoot.topDL);
1507         getTokenValue(line, "footBottomDL", endfoot.bottomDL);
1508         getTokenValue(line, "lastFootTopDL", endlastfoot.topDL);
1509         getTokenValue(line, "lastFootBottomDL", endlastfoot.bottomDL);
1510         getTokenValue(line, "lastFootEmpty", endlastfoot.empty);
1511
1512         for (col_type j = 0; j < columns_; ++j) {
1513                 l_getline(is,line);
1514                 if (!prefixIs(line,"<column")) {
1515                         lyxerr << "Wrong tabular format (expected <column ...> got"
1516                                << line << ')' << endl;
1517                         return;
1518                 }
1519                 getTokenValue(line, "alignment", column_info[j].alignment);
1520                 getTokenValue(line, "valignment", column_info[j].valignment);
1521                 getTokenValue(line, "leftline", column_info[j].left_line);
1522                 getTokenValue(line, "rightline", column_info[j].right_line);
1523                 getTokenValue(line, "width", column_info[j].p_width);
1524                 getTokenValue(line, "special", column_info[j].align_special);
1525         }
1526
1527         for (row_type i = 0; i < rows_; ++i) {
1528                 l_getline(is, line);
1529                 if (!prefixIs(line, "<row")) {
1530                         lyxerr << "Wrong tabular format (expected <row ...> got"
1531                                << line << ')' << endl;
1532                         return;
1533                 }
1534                 getTokenValue(line, "topline", row_info[i].top_line);
1535                 getTokenValue(line, "bottomline", row_info[i].bottom_line);
1536                 getTokenValue(line, "topspace", row_info[i].top_space,
1537                               row_info[i].top_space_default);
1538                 getTokenValue(line, "bottomspace", row_info[i].bottom_space,
1539                               row_info[i].bottom_space_default);
1540                 getTokenValue(line, "interlinespace", row_info[i].interline_space,
1541                               row_info[i].interline_space_default);
1542                 getTokenValue(line, "endfirsthead", row_info[i].endfirsthead);
1543                 getTokenValue(line, "endhead", row_info[i].endhead);
1544                 getTokenValue(line, "endfoot", row_info[i].endfoot);
1545                 getTokenValue(line, "endlastfoot", row_info[i].endlastfoot);
1546                 getTokenValue(line, "newpage", row_info[i].newpage);
1547                 for (col_type j = 0; j < columns_; ++j) {
1548                         l_getline(is, line);
1549                         if (!prefixIs(line, "<cell")) {
1550                                 lyxerr << "Wrong tabular format (expected <cell ...> got"
1551                                        << line << ')' << endl;
1552                                 return;
1553                         }
1554                         getTokenValue(line, "multicolumn", cell_info[i][j].multicolumn);
1555                         getTokenValue(line, "alignment", cell_info[i][j].alignment);
1556                         getTokenValue(line, "valignment", cell_info[i][j].valignment);
1557                         getTokenValue(line, "topline", cell_info[i][j].top_line);
1558                         getTokenValue(line, "bottomline", cell_info[i][j].bottom_line);
1559                         getTokenValue(line, "leftline", cell_info[i][j].left_line);
1560                         getTokenValue(line, "rightline", cell_info[i][j].right_line);
1561                         getTokenValue(line, "rotate", cell_info[i][j].rotate);
1562                         getTokenValue(line, "usebox", cell_info[i][j].usebox);
1563                         getTokenValue(line, "width", cell_info[i][j].p_width);
1564                         getTokenValue(line, "special", cell_info[i][j].align_special);
1565                         l_getline(is, line);
1566                         if (prefixIs(line, "\\begin_inset")) {
1567                                 cell_info[i][j].inset->read(buf, lex);
1568                                 l_getline(is, line);
1569                         }
1570                         if (!prefixIs(line, "</cell>")) {
1571                                 lyxerr << "Wrong tabular format (expected </cell> got"
1572                                        << line << ')' << endl;
1573                                 return;
1574                         }
1575                 }
1576                 l_getline(is, line);
1577                 if (!prefixIs(line, "</row>")) {
1578                         lyxerr << "Wrong tabular format (expected </row> got"
1579                                << line << ')' << endl;
1580                         return;
1581                 }
1582         }
1583         while (!prefixIs(line, "</lyxtabular>")) {
1584                 l_getline(is, line);
1585         }
1586         set_row_column_number_info();
1587 }
1588
1589
1590 bool Tabular::isMultiColumn(idx_type cell) const
1591 {
1592         return cellinfo_of_cell(cell).multicolumn != Tabular::CELL_NORMAL;
1593 }
1594
1595
1596 bool Tabular::isMultiColumnReal(idx_type cell) const
1597 {
1598         return column_of_cell(cell) != right_column_of_cell(cell) &&
1599                         cellinfo_of_cell(cell).multicolumn != Tabular::CELL_NORMAL;
1600 }
1601
1602
1603 Tabular::cellstruct & Tabular::cellinfo_of_cell(idx_type cell) const
1604 {
1605         return cell_info[row_of_cell(cell)][column_of_cell(cell)];
1606 }
1607
1608
1609 void Tabular::setMultiColumn(Buffer * buffer, idx_type cell,
1610                                 idx_type number)
1611 {
1612         cellstruct & cs = cellinfo_of_cell(cell);
1613         cs.multicolumn = CELL_BEGIN_OF_MULTICOLUMN;
1614         cs.alignment = column_info[column_of_cell(cell)].alignment;
1615         cs.top_line = row_info[row_of_cell(cell)].top_line;
1616         cs.bottom_line = row_info[row_of_cell(cell)].bottom_line;
1617         cs.left_line = column_info[column_of_cell(cell)].left_line;
1618         cs.right_line = column_info[column_of_cell(cell+number-1)].right_line;
1619         for (idx_type i = 1; i < number; ++i) {
1620                 cellstruct & cs1 = cellinfo_of_cell(cell + i);
1621                 cs1.multicolumn = CELL_PART_OF_MULTICOLUMN;
1622                 cs.inset->appendParagraphs(buffer, cs1.inset->paragraphs());
1623                 cs1.inset->clear();
1624         }
1625         set_row_column_number_info();
1626 }
1627
1628
1629 Tabular::idx_type Tabular::cells_in_multicolumn(idx_type cell) const
1630 {
1631         row_type const row = row_of_cell(cell);
1632         col_type column = column_of_cell(cell);
1633         idx_type result = 1;
1634         ++column;
1635         while (column < columns_ &&
1636                    cell_info[row][column].multicolumn == CELL_PART_OF_MULTICOLUMN)
1637         {
1638                 ++result;
1639                 ++column;
1640         }
1641         return result;
1642 }
1643
1644
1645 Tabular::idx_type Tabular::unsetMultiColumn(idx_type cell)
1646 {
1647         row_type const row = row_of_cell(cell);
1648         col_type column = column_of_cell(cell);
1649
1650         idx_type result = 0;
1651
1652         if (cell_info[row][column].multicolumn == CELL_BEGIN_OF_MULTICOLUMN) {
1653                 cell_info[row][column].multicolumn = CELL_NORMAL;
1654                 ++column;
1655                 while (column < columns_ &&
1656                            cell_info[row][column].multicolumn == CELL_PART_OF_MULTICOLUMN)
1657                 {
1658                         cell_info[row][column].multicolumn = CELL_NORMAL;
1659                         ++column;
1660                         ++result;
1661                 }
1662         }
1663         set_row_column_number_info();
1664         return result;
1665 }
1666
1667
1668 void Tabular::setBookTabs(bool what)
1669 {
1670         use_booktabs = what;
1671 }
1672
1673
1674 bool Tabular::useBookTabs() const
1675 {
1676         return use_booktabs;
1677 }
1678
1679
1680 void Tabular::setLongTabular(bool what)
1681 {
1682         is_long_tabular = what;
1683 }
1684
1685
1686 bool Tabular::isLongTabular() const
1687 {
1688         return is_long_tabular;
1689 }
1690
1691
1692 void Tabular::setRotateTabular(bool flag)
1693 {
1694         rotate = flag;
1695 }
1696
1697
1698 bool Tabular::getRotateTabular() const
1699 {
1700         return rotate;
1701 }
1702
1703
1704 void Tabular::setRotateCell(idx_type cell, bool flag)
1705 {
1706         cellinfo_of_cell(cell).rotate = flag;
1707 }
1708
1709
1710 bool Tabular::getRotateCell(idx_type cell) const
1711 {
1712         return cellinfo_of_cell(cell).rotate;
1713 }
1714
1715
1716 bool Tabular::needRotating() const
1717 {
1718         if (rotate)
1719                 return true;
1720         for (row_type i = 0; i < rows_; ++i)
1721                 for (col_type j = 0; j < columns_; ++j)
1722                         if (cell_info[i][j].rotate)
1723                                 return true;
1724         return false;
1725 }
1726
1727
1728 bool Tabular::isLastCell(idx_type cell) const
1729 {
1730         if (cell + 1 < numberofcells)
1731                 return false;
1732         return true;
1733 }
1734
1735
1736 Tabular::idx_type Tabular::getCellAbove(idx_type cell) const
1737 {
1738         if (row_of_cell(cell) > 0)
1739                 return cell_info[row_of_cell(cell)-1][column_of_cell(cell)].cellno;
1740         return cell;
1741 }
1742
1743
1744 Tabular::idx_type Tabular::getCellBelow(idx_type cell) const
1745 {
1746         if (row_of_cell(cell) + 1 < rows_)
1747                 return cell_info[row_of_cell(cell)+1][column_of_cell(cell)].cellno;
1748         return cell;
1749 }
1750
1751
1752 Tabular::idx_type Tabular::getLastCellAbove(idx_type cell) const
1753 {
1754         if (row_of_cell(cell) == 0)
1755                 return cell;
1756         if (!isMultiColumn(cell))
1757                 return getCellAbove(cell);
1758         return cell_info[row_of_cell(cell) - 1][right_column_of_cell(cell)].cellno;
1759 }
1760
1761
1762 Tabular::idx_type Tabular::getLastCellBelow(idx_type cell) const
1763 {
1764         if (row_of_cell(cell) + 1 >= rows_)
1765                 return cell;
1766         if (!isMultiColumn(cell))
1767                 return getCellBelow(cell);
1768         return cell_info[row_of_cell(cell) + 1][right_column_of_cell(cell)].cellno;
1769 }
1770
1771
1772 Tabular::idx_type Tabular::getCellNumber(row_type row,
1773                                                col_type column) const
1774 {
1775         BOOST_ASSERT(column != npos && column < columns_ &&
1776                      row    != npos && row    < rows_);
1777         return cell_info[row][column].cellno;
1778 }
1779
1780
1781 void Tabular::setUsebox(idx_type cell, BoxType type)
1782 {
1783         cellinfo_of_cell(cell).usebox = type;
1784 }
1785
1786
1787 Tabular::BoxType Tabular::getUsebox(idx_type cell) const
1788 {
1789         if (column_info[column_of_cell(cell)].p_width.zero() &&
1790                 !(isMultiColumn(cell) && !cellinfo_of_cell(cell).p_width.zero()))
1791                 return BOX_NONE;
1792         if (cellinfo_of_cell(cell).usebox > 1)
1793                 return cellinfo_of_cell(cell).usebox;
1794         return useParbox(cell);
1795 }
1796
1797
1798 ///
1799 //  This are functions used for the longtable support
1800 ///
1801 void Tabular::setLTHead(row_type row, bool flag, ltType const & hd,
1802                            bool first)
1803 {
1804         if (first) {
1805                 endfirsthead = hd;
1806                 if (hd.set)
1807                         row_info[row].endfirsthead = flag;
1808         } else {
1809                 endhead = hd;
1810                 if (hd.set)
1811                         row_info[row].endhead = flag;
1812         }
1813 }
1814
1815
1816 bool Tabular::getRowOfLTHead(row_type row, ltType & hd) const
1817 {
1818         hd = endhead;
1819         hd.set = haveLTHead();
1820         return row_info[row].endhead;
1821 }
1822
1823
1824 bool Tabular::getRowOfLTFirstHead(row_type row, ltType & hd) const
1825 {
1826         hd = endfirsthead;
1827         hd.set = haveLTFirstHead();
1828         return row_info[row].endfirsthead;
1829 }
1830
1831
1832 void Tabular::setLTFoot(row_type row, bool flag, ltType const & fd,
1833                            bool last)
1834 {
1835         if (last) {
1836                 endlastfoot = fd;
1837                 if (fd.set)
1838                         row_info[row].endlastfoot = flag;
1839         } else {
1840                 endfoot = fd;
1841                 if (fd.set)
1842                         row_info[row].endfoot = flag;
1843         }
1844 }
1845
1846
1847 bool Tabular::getRowOfLTFoot(row_type row, ltType & fd) const
1848 {
1849         fd = endfoot;
1850         fd.set = haveLTFoot();
1851         return row_info[row].endfoot;
1852 }
1853
1854
1855 bool Tabular::getRowOfLTLastFoot(row_type row, ltType & fd) const
1856 {
1857         fd = endlastfoot;
1858         fd.set = haveLTLastFoot();
1859         return row_info[row].endlastfoot;
1860 }
1861
1862
1863 void Tabular::setLTNewPage(row_type row, bool what)
1864 {
1865         row_info[row].newpage = what;
1866 }
1867
1868
1869 bool Tabular::getLTNewPage(row_type row) const
1870 {
1871         return row_info[row].newpage;
1872 }
1873
1874
1875 bool Tabular::haveLTHead() const
1876 {
1877         for (row_type i = 0; i < rows_; ++i)
1878                 if (row_info[i].endhead)
1879                         return true;
1880         return false;
1881 }
1882
1883
1884 bool Tabular::haveLTFirstHead() const
1885 {
1886         if (endfirsthead.empty)
1887                 return false;
1888         for (row_type i = 0; i < rows_; ++i)
1889                 if (row_info[i].endfirsthead)
1890                         return true;
1891         return false;
1892 }
1893
1894
1895 bool Tabular::haveLTFoot() const
1896 {
1897         for (row_type i = 0; i < rows_; ++i)
1898                 if (row_info[i].endfoot)
1899                         return true;
1900         return false;
1901 }
1902
1903
1904 bool Tabular::haveLTLastFoot() const
1905 {
1906         if (endlastfoot.empty)
1907                 return false;
1908         for (row_type i = 0; i < rows_; ++i)
1909                 if (row_info[i].endlastfoot)
1910                         return true;
1911         return false;
1912 }
1913
1914
1915 // end longtable support functions
1916
1917 void Tabular::setAscentOfRow(row_type row, int height)
1918 {
1919         if (row >= rows_ || row_info[row].ascent_of_row == height)
1920                 return;
1921         row_info[row].ascent_of_row = height;
1922 }
1923
1924
1925 void Tabular::setDescentOfRow(row_type row, int height)
1926 {
1927         if (row >= rows_ || row_info[row].descent_of_row == height)
1928                 return;
1929         row_info[row].descent_of_row = height;
1930 }
1931
1932
1933 int Tabular::getAscentOfRow(row_type row) const
1934 {
1935         if (row >= rows_)
1936                 return 0;
1937         return row_info[row].ascent_of_row;
1938 }
1939
1940
1941 int Tabular::getDescentOfRow(row_type row) const
1942 {
1943         BOOST_ASSERT(row < rows_);
1944         return row_info[row].descent_of_row;
1945 }
1946
1947
1948 int Tabular::getHeightOfTabular() const
1949 {
1950         int height = 0;
1951         for (row_type row = 0; row < rows_; ++row)
1952                 height += getAscentOfRow(row) + getDescentOfRow(row) +
1953                         getAdditionalHeight(row);
1954         return height;
1955 }
1956
1957
1958 bool Tabular::isPartOfMultiColumn(row_type row, col_type column) const
1959 {
1960         BOOST_ASSERT(row < rows_);
1961         BOOST_ASSERT(column < columns_);
1962         return cell_info[row][column].multicolumn == CELL_PART_OF_MULTICOLUMN;
1963 }
1964
1965
1966 int Tabular::TeXTopHLine(odocstream & os, row_type row) const
1967 {
1968         // FIXME: assert or return 0 as in TeXBottomHLine()?
1969         BOOST_ASSERT(row != npos);
1970         BOOST_ASSERT(row < rows_);
1971
1972         idx_type const fcell = getFirstCellInRow(row);
1973         idx_type const n = numberOfCellsInRow(fcell) + fcell;
1974         idx_type tmp = 0;
1975
1976         for (idx_type i = fcell; i < n; ++i) {
1977                 if (topLine(i))
1978                         ++tmp;
1979         }
1980         if (use_booktabs && row == 0) {
1981                 os << "\\toprule ";
1982         } else if (tmp == n - fcell) {
1983                 os << (use_booktabs ? "\\midrule " : "\\hline ");
1984         } else if (tmp) {
1985                 for (idx_type i = fcell; i < n; ++i) {
1986                         if (topLine(i)) {
1987                                 os << (use_booktabs ? "\\cmidrule{" : "\\cline{")
1988                                    << column_of_cell(i) + 1
1989                                    << '-'
1990                                    << right_column_of_cell(i) + 1
1991                                    << "} ";
1992                         }
1993                 }
1994         } else {
1995                 return 0;
1996         }
1997         os << "\n";
1998         return 1;
1999 }
2000
2001
2002 int Tabular::TeXBottomHLine(odocstream & os, row_type row) const
2003 {
2004         // FIXME: return 0 or assert as in TeXTopHLine()?
2005         if (row == npos || row >= rows_)
2006                 return 0;
2007
2008         idx_type const fcell = getFirstCellInRow(row);
2009         idx_type const n = numberOfCellsInRow(fcell) + fcell;
2010         idx_type tmp = 0;
2011
2012         for (idx_type i = fcell; i < n; ++i) {
2013                 if (bottomLine(i))
2014                         ++tmp;
2015         }
2016         if (use_booktabs && row == rows_ - 1) {
2017                 os << "\\bottomrule";
2018         } else if (tmp == n - fcell) {
2019                 os << (use_booktabs ? "\\midrule" : "\\hline");
2020         } else if (tmp) {
2021                 for (idx_type i = fcell; i < n; ++i) {
2022                         if (bottomLine(i)) {
2023                                 os << (use_booktabs ? "\\cmidrule{" : "\\cline{")
2024                                    << column_of_cell(i) + 1
2025                                    << '-'
2026                                    << right_column_of_cell(i) + 1
2027                                    << "} ";
2028                         }
2029                 }
2030         } else {
2031                 return 0;
2032         }
2033         os << "\n";
2034         return 1;
2035 }
2036
2037
2038 int Tabular::TeXCellPreamble(odocstream & os, idx_type cell) const
2039 {
2040         int ret = 0;
2041
2042         if (getRotateCell(cell)) {
2043                 os << "\\begin{sideways}\n";
2044                 ++ret;
2045         }
2046         if (isMultiColumn(cell)) {
2047                 os << "\\multicolumn{" << cells_in_multicolumn(cell) << "}{";
2048                 if (leftLine(cell) &&
2049                         (isFirstCellInRow(cell) ||
2050                          (!isMultiColumn(cell - 1) && !leftLine(cell, true) &&
2051                           !rightLine(cell - 1, true))))
2052                         os << '|';
2053                 if (!cellinfo_of_cell(cell).align_special.empty()) {
2054                         os << cellinfo_of_cell(cell).align_special;
2055                 } else {
2056                         if (!getPWidth(cell).zero()) {
2057                                 switch (getVAlignment(cell)) {
2058                                 case LYX_VALIGN_TOP:
2059                                         os << 'p';
2060                                         break;
2061                                 case LYX_VALIGN_MIDDLE:
2062                                         os << 'm';
2063                                         break;
2064                                 case LYX_VALIGN_BOTTOM:
2065                                         os << 'b';
2066                                         break;
2067                                 }
2068                                 os << '{'
2069                                    << from_ascii(getPWidth(cell).asLatexString())
2070                                    << '}';
2071                         } else {
2072                                 switch (getAlignment(cell)) {
2073                                 case LYX_ALIGN_LEFT:
2074                                         os << 'l';
2075                                         break;
2076                                 case LYX_ALIGN_RIGHT:
2077                                         os << 'r';
2078                                         break;
2079                                 default:
2080                                         os << 'c';
2081                                         break;
2082                                 }
2083                         } // end if else !getPWidth
2084                 } // end if else !cellinfo_of_cell
2085                 if (rightLine(cell))
2086                         os << '|';
2087                 if (((cell + 1) < numberofcells) && !isFirstCellInRow(cell+1) &&
2088                         leftLine(cell+1))
2089                         os << '|';
2090                 os << "}{";
2091                 }
2092         if (getUsebox(cell) == BOX_PARBOX) {
2093                 os << "\\parbox[";
2094                 switch (getVAlignment(cell)) {
2095                 case LYX_VALIGN_TOP:
2096                         os << 't';
2097                         break;
2098                 case LYX_VALIGN_MIDDLE:
2099                         os << 'c';
2100                         break;
2101                 case LYX_VALIGN_BOTTOM:
2102                         os << 'b';
2103                         break;
2104                 }
2105                 os << "]{" << from_ascii(getPWidth(cell).asLatexString())
2106                    << "}{";
2107         } else if (getUsebox(cell) == BOX_MINIPAGE) {
2108                 os << "\\begin{minipage}[";
2109                 switch (getVAlignment(cell)) {
2110                 case LYX_VALIGN_TOP:
2111                         os << 't';
2112                         break;
2113                 case LYX_VALIGN_MIDDLE:
2114                         os << 'm';
2115                         break;
2116                 case LYX_VALIGN_BOTTOM:
2117                         os << 'b';
2118                         break;
2119                 }
2120                 os << "]{" << from_ascii(getPWidth(cell).asLatexString())
2121                    << "}\n";
2122                 ++ret;
2123         }
2124         return ret;
2125 }
2126
2127
2128 int Tabular::TeXCellPostamble(odocstream & os, idx_type cell) const
2129 {
2130         int ret = 0;
2131
2132         // usual cells
2133         if (getUsebox(cell) == BOX_PARBOX)
2134                 os << '}';
2135         else if (getUsebox(cell) == BOX_MINIPAGE) {
2136                 os << "%\n\\end{minipage}";
2137                 ret += 2;
2138         }
2139         if (isMultiColumn(cell)) {
2140                 os << '}';
2141         }
2142         if (getRotateCell(cell)) {
2143                 os << "%\n\\end{sideways}";
2144                 ++ret;
2145         }
2146         return ret;
2147 }
2148
2149
2150 int Tabular::TeXLongtableHeaderFooter(odocstream & os, Buffer const & buf,
2151                                          OutputParams const & runparams) const
2152 {
2153         if (!is_long_tabular)
2154                 return 0;
2155
2156         int ret = 0;
2157         // output header info
2158         if (haveLTHead()) {
2159                 if (endhead.topDL) {
2160                         os << "\\hline\n";
2161                         ++ret;
2162                 }
2163                 for (row_type i = 0; i < rows_; ++i) {
2164                         if (row_info[i].endhead) {
2165                                 ret += TeXRow(os, i, buf, runparams);
2166                         }
2167                 }
2168                 if (endhead.bottomDL) {
2169                         os << "\\hline\n";
2170                         ++ret;
2171                 }
2172                 os << "\\endhead\n";
2173                 ++ret;
2174                 if (endfirsthead.empty) {
2175                         os << "\\endfirsthead\n";
2176                         ++ret;
2177                 }
2178         }
2179         // output firstheader info
2180         if (haveLTFirstHead()) {
2181                 if (endfirsthead.topDL) {
2182                         os << "\\hline\n";
2183                         ++ret;
2184                 }
2185                 for (row_type i = 0; i < rows_; ++i) {
2186                         if (row_info[i].endfirsthead) {
2187                                 ret += TeXRow(os, i, buf, runparams);
2188                         }
2189                 }
2190                 if (endfirsthead.bottomDL) {
2191                         os << "\\hline\n";
2192                         ++ret;
2193                 }
2194                 os << "\\endfirsthead\n";
2195                 ++ret;
2196         }
2197         // output footer info
2198         if (haveLTFoot()) {
2199                 if (endfoot.topDL) {
2200                         os << "\\hline\n";
2201                         ++ret;
2202                 }
2203                 for (row_type i = 0; i < rows_; ++i) {
2204                         if (row_info[i].endfoot) {
2205                                 ret += TeXRow(os, i, buf, runparams);
2206                         }
2207                 }
2208                 if (endfoot.bottomDL) {
2209                         os << "\\hline\n";
2210                         ++ret;
2211                 }
2212                 os << "\\endfoot\n";
2213                 ++ret;
2214                 if (endlastfoot.empty) {
2215                         os << "\\endlastfoot\n";
2216                         ++ret;
2217                 }
2218         }
2219         // output lastfooter info
2220         if (haveLTLastFoot()) {
2221                 if (endlastfoot.topDL) {
2222                         os << "\\hline\n";
2223                         ++ret;
2224                 }
2225                 for (row_type i = 0; i < rows_; ++i) {
2226                         if (row_info[i].endlastfoot) {
2227                                 ret += TeXRow(os, i, buf, runparams);
2228                         }
2229                 }
2230                 if (endlastfoot.bottomDL) {
2231                         os << "\\hline\n";
2232                         ++ret;
2233                 }
2234                 os << "\\endlastfoot\n";
2235                 ++ret;
2236         }
2237         return ret;
2238 }
2239
2240
2241 bool Tabular::isValidRow(row_type row) const
2242 {
2243         if (!is_long_tabular)
2244                 return true;
2245         return !row_info[row].endhead && !row_info[row].endfirsthead &&
2246                         !row_info[row].endfoot && !row_info[row].endlastfoot;
2247 }
2248
2249
2250 int Tabular::TeXRow(odocstream & os, row_type i, Buffer const & buf,
2251                        OutputParams const & runparams) const
2252 {
2253         idx_type cell = getCellNumber(i, 0);
2254         int ret = TeXTopHLine(os, i);
2255         if (row_info[i].top_space_default) {
2256                 if (use_booktabs)
2257                         os << "\\addlinespace\n";
2258                 else
2259                         os << "\\noalign{\\vskip\\doublerulesep}\n";
2260                 ++ret;
2261         } else if(!row_info[i].top_space.zero()) {
2262                 if (use_booktabs)
2263                         os << "\\addlinespace["
2264                            << from_ascii(row_info[i].top_space.asLatexString())
2265                            << "]\n";
2266                 else {
2267                         os << "\\noalign{\\vskip"
2268                            << from_ascii(row_info[i].top_space.asLatexString())
2269                            << "}\n";
2270                 }
2271                 ++ret;
2272         }
2273
2274         for (col_type j = 0; j < columns_; ++j) {
2275                 if (isPartOfMultiColumn(i, j))
2276                         continue;
2277                 ret += TeXCellPreamble(os, cell);
2278                 shared_ptr<InsetText> inset = getCellInset(cell);
2279
2280                 Paragraph const & par = inset->paragraphs().front();
2281                 bool rtl = par.isRightToLeftPar(buf.params())
2282                         && !par.empty()
2283                         && getPWidth(cell).zero();
2284
2285                 if (rtl) {
2286                         if (par.getParLanguage(buf.params())->lang() ==
2287                         "farsi")
2288                                 os << "\\textFR{";
2289                         else if (par.getParLanguage(buf.params())->lang() == "arabic_arabi")
2290                                 os << "\\textAR{";
2291                         // currently, remaning RTL languages are arabic_arabtex and hebrew
2292                         else
2293                                 os << "\\R{";
2294                 }
2295                 ret += inset->latex(buf, os, runparams);
2296                 if (rtl)
2297                         os << '}';
2298
2299                 ret += TeXCellPostamble(os, cell);
2300                 if (!isLastCellInRow(cell)) { // not last cell in row
2301                         os << " & ";
2302                 }
2303                 ++cell;
2304         }
2305         os << "\\tabularnewline";
2306         if (row_info[i].bottom_space_default) {
2307                 if (use_booktabs)
2308                         os << "\\addlinespace";
2309                 else
2310                         os << "[\\doublerulesep]";
2311         } else if (!row_info[i].bottom_space.zero()) {
2312                 if (use_booktabs)
2313                         os << "\\addlinespace";
2314                 os << '['
2315                    << from_ascii(row_info[i].bottom_space.asLatexString())
2316                    << ']';
2317         }
2318         os << '\n';
2319         ++ret;
2320         ret += TeXBottomHLine(os, i);
2321         if (row_info[i].interline_space_default) {
2322                 if (use_booktabs)
2323                         os << "\\addlinespace\n";
2324                 else
2325                         os << "\\noalign{\\vskip\\doublerulesep}\n";
2326                 ++ret;
2327         } else if (!row_info[i].interline_space.zero()) {
2328                 if (use_booktabs)
2329                         os << "\\addlinespace["
2330                            << from_ascii(row_info[i].interline_space.asLatexString())
2331                            << "]\n";
2332                 else
2333                         os << "\\noalign{\\vskip"
2334                            << from_ascii(row_info[i].interline_space.asLatexString())
2335                            << "}\n";
2336                 ++ret;
2337         }
2338         return ret;
2339 }
2340
2341
2342 int Tabular::latex(Buffer const & buf, odocstream & os,
2343                       OutputParams const & runparams) const
2344 {
2345         int ret = 0;
2346
2347         //+---------------------------------------------------------------------
2348         //+                      first the opening preamble                    +
2349         //+---------------------------------------------------------------------
2350
2351         if (rotate) {
2352                 os << "\\begin{sideways}\n";
2353                 ++ret;
2354         }
2355         if (is_long_tabular)
2356                 os << "\\begin{longtable}{";
2357         else
2358                 os << "\\begin{tabular}{";
2359         for (col_type i = 0; i < columns_; ++i) {
2360                 if (!use_booktabs && column_info[i].left_line)
2361                         os << '|';
2362                 if (!column_info[i].align_special.empty()) {
2363                         os << column_info[i].align_special;
2364                 } else {
2365                         if (!column_info[i].p_width.zero()) {
2366                                 switch (column_info[i].alignment) {
2367                                 case LYX_ALIGN_LEFT:
2368                                         os << ">{\\raggedright}";
2369                                         break;
2370                                 case LYX_ALIGN_RIGHT:
2371                                         os << ">{\\raggedleft}";
2372                                         break;
2373                                 case LYX_ALIGN_CENTER:
2374                                         os << ">{\\centering}";
2375                                         break;
2376                                 case LYX_ALIGN_NONE:
2377                                 case LYX_ALIGN_BLOCK:
2378                                 case LYX_ALIGN_LAYOUT:
2379                                 case LYX_ALIGN_SPECIAL:
2380                                         break;
2381                                 }
2382
2383                                 switch (column_info[i].valignment) {
2384                                 case LYX_VALIGN_TOP:
2385                                         os << 'p';
2386                                         break;
2387                                 case LYX_VALIGN_MIDDLE:
2388                                         os << 'm';
2389                                         break;
2390                                 case LYX_VALIGN_BOTTOM:
2391                                         os << 'b';
2392                                         break;
2393                         }
2394                                 os << '{'
2395                                    << from_ascii(column_info[i].p_width.asLatexString())
2396                                    << '}';
2397                         } else {
2398                                 switch (column_info[i].alignment) {
2399                                 case LYX_ALIGN_LEFT:
2400                                         os << 'l';
2401                                         break;
2402                                 case LYX_ALIGN_RIGHT:
2403                                         os << 'r';
2404                                         break;
2405                                 default:
2406                                         os << 'c';
2407                                         break;
2408                                 }
2409                         } // end if else !column_info[i].p_width
2410                 } // end if else !column_info[i].align_special
2411                 if (!use_booktabs && column_info[i].right_line)
2412                         os << '|';
2413         }
2414         os << "}\n";
2415         ++ret;
2416
2417         ret += TeXLongtableHeaderFooter(os, buf, runparams);
2418
2419         //+---------------------------------------------------------------------
2420         //+                      the single row and columns (cells)            +
2421         //+---------------------------------------------------------------------
2422
2423         for (row_type i = 0; i < rows_; ++i) {
2424                 if (isValidRow(i)) {
2425                         ret += TeXRow(os, i, buf, runparams);
2426                         if (is_long_tabular && row_info[i].newpage) {
2427                                 os << "\\newpage\n";
2428                                 ++ret;
2429                         }
2430                 }
2431         }
2432
2433         //+---------------------------------------------------------------------
2434         //+                      the closing of the tabular                    +
2435         //+---------------------------------------------------------------------
2436
2437         if (is_long_tabular)
2438                 os << "\\end{longtable}";
2439         else
2440                 os << "\\end{tabular}";
2441         if (rotate) {
2442                 os << "\n\\end{sideways}";
2443                 ++ret;
2444         }
2445
2446         return ret;
2447 }
2448
2449
2450 int Tabular::docbookRow(Buffer const & buf, odocstream & os, row_type row,
2451                            OutputParams const & runparams) const
2452 {
2453         int ret = 0;
2454         idx_type cell = getFirstCellInRow(row);
2455
2456         os << "<row>\n";
2457         for (col_type j = 0; j < columns_; ++j) {
2458                 if (isPartOfMultiColumn(row, j))
2459                         continue;
2460
2461                 os << "<entry align=\"";
2462                 switch (getAlignment(cell)) {
2463                 case LYX_ALIGN_LEFT:
2464                         os << "left";
2465                         break;
2466                 case LYX_ALIGN_RIGHT:
2467                         os << "right";
2468                         break;
2469                 default:
2470                         os << "center";
2471                         break;
2472                 }
2473
2474                 os << "\" valign=\"";
2475                 switch (getVAlignment(cell)) {
2476                 case LYX_VALIGN_TOP:
2477                         os << "top";
2478                         break;
2479                 case LYX_VALIGN_BOTTOM:
2480                         os << "bottom";
2481                         break;
2482                 case LYX_VALIGN_MIDDLE:
2483                         os << "middle";
2484                 }
2485                 os << '"';
2486
2487                 if (isMultiColumn(cell)) {
2488                         os << " namest=\"col" << j << "\" ";
2489                         os << "nameend=\"col" << j + cells_in_multicolumn(cell) - 1<< '"';
2490                 }
2491
2492                 os << '>';
2493                 ret += getCellInset(cell)->docbook(buf, os, runparams);
2494                 os << "</entry>\n";
2495                 ++cell;
2496         }
2497         os << "</row>\n";
2498         return ret;
2499 }
2500
2501
2502 int Tabular::docbook(Buffer const & buf, odocstream & os,
2503                         OutputParams const & runparams) const
2504 {
2505         int ret = 0;
2506
2507         //+---------------------------------------------------------------------
2508         //+                      first the opening preamble                    +
2509         //+---------------------------------------------------------------------
2510
2511         os << "<tgroup cols=\"" << columns_
2512            << "\" colsep=\"1\" rowsep=\"1\">\n";
2513
2514         for (col_type i = 0; i < columns_; ++i) {
2515                 os << "<colspec colname=\"col" << i << "\" align=\"";
2516                 switch (column_info[i].alignment) {
2517                 case LYX_ALIGN_LEFT:
2518                         os << "left";
2519                         break;
2520                 case LYX_ALIGN_RIGHT:
2521                         os << "right";
2522                         break;
2523                 default:
2524                         os << "center";
2525                         break;
2526                 }
2527                 os << '"';
2528                 if (runparams.flavor == OutputParams::XML)
2529                         os << '/';
2530                 os << ">\n";
2531                 ++ret;
2532         }
2533
2534         //+---------------------------------------------------------------------
2535         //+                      Long Tabular case                             +
2536         //+---------------------------------------------------------------------
2537
2538         // output header info
2539         if (haveLTHead() || haveLTFirstHead()) {
2540                 os << "<thead>\n";
2541                 ++ret;
2542                 for (row_type i = 0; i < rows_; ++i) {
2543                         if (row_info[i].endhead || row_info[i].endfirsthead) {
2544                                 ret += docbookRow(buf, os, i, runparams);
2545                         }
2546                 }
2547                 os << "</thead>\n";
2548                 ++ret;
2549         }
2550         // output footer info
2551         if (haveLTFoot() || haveLTLastFoot()) {
2552                 os << "<tfoot>\n";
2553                 ++ret;
2554                 for (row_type i = 0; i < rows_; ++i) {
2555                         if (row_info[i].endfoot || row_info[i].endlastfoot) {
2556                                 ret += docbookRow(buf, os, i, runparams);
2557                         }
2558                 }
2559                 os << "</tfoot>\n";
2560                 ++ret;
2561         }
2562
2563         //+---------------------------------------------------------------------
2564         //+                      the single row and columns (cells)            +
2565         //+---------------------------------------------------------------------
2566
2567         os << "<tbody>\n";
2568         ++ret;
2569         for (row_type i = 0; i < rows_; ++i) {
2570                 if (isValidRow(i)) {
2571                         ret += docbookRow(buf, os, i, runparams);
2572                 }
2573         }
2574         os << "</tbody>\n";
2575         ++ret;
2576         //+---------------------------------------------------------------------
2577         //+                      the closing of the tabular                    +
2578         //+---------------------------------------------------------------------
2579
2580         os << "</tgroup>";
2581         ++ret;
2582
2583         return ret;
2584 }
2585
2586
2587 bool Tabular::plaintextTopHLine(odocstream & os, row_type row,
2588                                    vector<unsigned int> const & clen) const
2589 {
2590         idx_type const fcell = getFirstCellInRow(row);
2591         idx_type const n = numberOfCellsInRow(fcell) + fcell;
2592         idx_type tmp = 0;
2593
2594         for (idx_type i = fcell; i < n; ++i) {
2595                 if (topLine(i)) {
2596                         ++tmp;
2597                         break;
2598                 }
2599         }
2600         if (!tmp)
2601                 return false;
2602
2603         char_type ch;
2604         for (idx_type i = fcell; i < n; ++i) {
2605                 if (topLine(i)) {
2606                         if (leftLine(i))
2607                                 os << "+-";
2608                         else
2609                                 os << "--";
2610                         ch = '-';
2611                 } else {
2612                         os << "  ";
2613                         ch = ' ';
2614                 }
2615                 col_type column = column_of_cell(i);
2616                 int len = clen[column];
2617                 while (column < columns_ - 1
2618                        && isPartOfMultiColumn(row, ++column))
2619                         len += clen[column] + 4;
2620                 os << docstring(len, ch);
2621                 if (topLine(i)) {
2622                         if (rightLine(i))
2623                                 os << "-+";
2624                         else
2625                                 os << "--";
2626                 } else {
2627                         os << "  ";
2628                 }
2629         }
2630         os << endl;
2631         return true;
2632 }
2633
2634
2635 bool Tabular::plaintextBottomHLine(odocstream & os, row_type row,
2636                                       vector<unsigned int> const & clen) const
2637 {
2638         idx_type const fcell = getFirstCellInRow(row);
2639         idx_type const n = numberOfCellsInRow(fcell) + fcell;
2640         idx_type tmp = 0;
2641
2642         for (idx_type i = fcell; i < n; ++i) {
2643                 if (bottomLine(i)) {
2644                         ++tmp;
2645                         break;
2646                 }
2647         }
2648         if (!tmp)
2649                 return false;
2650
2651         char_type ch;
2652         for (idx_type i = fcell; i < n; ++i) {
2653                 if (bottomLine(i)) {
2654                         if (leftLine(i))
2655                                 os << "+-";
2656                         else
2657                                 os << "--";
2658                         ch = '-';
2659                 } else {
2660                         os << "  ";
2661                         ch = ' ';
2662                 }
2663                 col_type column = column_of_cell(i);
2664                 int len = clen[column];
2665                 while (column < columns_ -1
2666                        && isPartOfMultiColumn(row, ++column))
2667                         len += clen[column] + 4;
2668                 os << docstring(len, ch);
2669                 if (bottomLine(i)) {
2670                         if (rightLine(i))
2671                                 os << "-+";
2672                         else
2673                                 os << "--";
2674                 } else {
2675                         os << "  ";
2676                 }
2677         }
2678         os << endl;
2679         return true;
2680 }
2681
2682
2683 void Tabular::plaintextPrintCell(Buffer const & buf, odocstream & os,
2684                                OutputParams const & runparams,
2685                                idx_type cell, row_type row, col_type column,
2686                                vector<unsigned int> const & clen,
2687                                bool onlydata) const
2688 {
2689         odocstringstream sstr;
2690         getCellInset(cell)->plaintext(buf, sstr, runparams);
2691
2692         if (onlydata) {
2693                 os << sstr.str();
2694                 return;
2695         }
2696
2697         if (leftLine(cell))
2698                 os << "| ";
2699         else
2700                 os << "  ";
2701
2702         unsigned int len1 = sstr.str().length();
2703         unsigned int len2 = clen[column];
2704         while (column < columns_ -1
2705                && isPartOfMultiColumn(row, ++column))
2706                 len2 += clen[column] + 4;
2707         len2 -= len1;
2708
2709         switch (getAlignment(cell)) {
2710         default:
2711         case LYX_ALIGN_LEFT:
2712                 len1 = 0;
2713                 break;
2714         case LYX_ALIGN_RIGHT:
2715                 len1 = len2;
2716                 len2 = 0;
2717                 break;
2718         case LYX_ALIGN_CENTER:
2719                 len1 = len2 / 2;
2720                 len2 -= len1;
2721                 break;
2722         }
2723
2724         os << docstring(len1, ' ') << sstr.str()
2725            << docstring(len2, ' ');
2726
2727         if (rightLine(cell))
2728                 os << " |";
2729         else
2730                 os << "  ";
2731 }
2732
2733
2734 void Tabular::plaintext(Buffer const & buf, odocstream & os,
2735                            OutputParams const & runparams, int const depth,
2736                            bool onlydata, unsigned char delim) const
2737 {
2738         // first calculate the width of the single columns
2739         vector<unsigned int> clen(columns_);
2740
2741         if (!onlydata) {
2742                 // first all non (real) multicolumn cells!
2743                 for (col_type j = 0; j < columns_; ++j) {
2744                         clen[j] = 0;
2745                         for (row_type i = 0; i < rows_; ++i) {
2746                                 idx_type cell = getCellNumber(i, j);
2747                                 if (isMultiColumnReal(cell))
2748                                         continue;
2749                                 odocstringstream sstr;
2750                                 getCellInset(cell)->plaintext(buf, sstr, runparams);
2751                                 if (clen[j] < sstr.str().length())
2752                                         clen[j] = sstr.str().length();
2753                         }
2754                 }
2755                 // then all (real) multicolumn cells!
2756                 for (col_type j = 0; j < columns_; ++j) {
2757                         for (row_type i = 0; i < rows_; ++i) {
2758                                 idx_type cell = getCellNumber(i, j);
2759                                 if (!isMultiColumnReal(cell) || isPartOfMultiColumn(i, j))
2760                                         continue;
2761                                 odocstringstream sstr;
2762                                 getCellInset(cell)->plaintext(buf, sstr, runparams);
2763                                 int len = int(sstr.str().length());
2764                                 idx_type const n = cells_in_multicolumn(cell);
2765                                 for (col_type k = j; len > 0 && k < j + n - 1; ++k)
2766                                         len -= clen[k];
2767                                 if (len > int(clen[j + n - 1]))
2768                                         clen[j + n - 1] = len;
2769                         }
2770                 }
2771         }
2772         idx_type cell = 0;
2773         for (row_type i = 0; i < rows_; ++i) {
2774                 if (!onlydata && plaintextTopHLine(os, i, clen))
2775                         os << docstring(depth * 2, ' ');
2776                 for (col_type j = 0; j < columns_; ++j) {
2777                         if (isPartOfMultiColumn(i, j))
2778                                 continue;
2779                         if (onlydata && j > 0)
2780                                 os << delim;
2781                         plaintextPrintCell(buf, os, runparams,
2782                                            cell, i, j, clen, onlydata);
2783                         ++cell;
2784                 }
2785                 os << endl;
2786                 if (!onlydata) {
2787                         os << docstring(depth * 2, ' ');
2788                         if (plaintextBottomHLine(os, i, clen))
2789                                 os << docstring(depth * 2, ' ');
2790                 }
2791         }
2792 }
2793
2794
2795 shared_ptr<InsetText> Tabular::getCellInset(idx_type cell) const
2796 {
2797         return cell_info[row_of_cell(cell)][column_of_cell(cell)].inset;
2798 }
2799
2800
2801 shared_ptr<InsetText> Tabular::getCellInset(row_type row,
2802                                                col_type column) const
2803 {
2804         return cell_info[row][column].inset;
2805 }
2806
2807
2808 void Tabular::setCellInset(row_type row, col_type column,
2809                               shared_ptr<InsetText> ins) const
2810 {
2811         cell_info[row][column].inset = ins;
2812 }
2813
2814
2815 Tabular::idx_type
2816 Tabular::getCellFromInset(Inset const * inset) const
2817 {
2818         // is this inset part of the tabular?
2819         if (!inset) {
2820                 lyxerr << "Error: this is not a cell of the tabular!" << endl;
2821                 BOOST_ASSERT(false);
2822         }
2823
2824         for (idx_type cell = 0, n = getNumberOfCells(); cell < n; ++cell)
2825                 if (getCellInset(cell).get() == inset) {
2826                         LYXERR(Debug::INSETTEXT) << "Tabular::getCellFromInset: "
2827                                 << "cell=" << cell << endl;
2828                         return cell;
2829                 }
2830
2831         // We should have found a cell at this point
2832         lyxerr << "Tabular::getCellFromInset: Cell of inset "
2833                 << inset << " not found!" << endl;
2834         BOOST_ASSERT(false);
2835         // shut up compiler
2836         return 0;
2837 }
2838
2839
2840 void Tabular::validate(LaTeXFeatures & features) const
2841 {
2842         features.require("NeedTabularnewline");
2843         if (useBookTabs())
2844                 features.require("booktabs");
2845         if (isLongTabular())
2846                 features.require("longtable");
2847         if (needRotating())
2848                 features.require("rotating");
2849         for (idx_type cell = 0; cell < numberofcells; ++cell) {
2850                 if (getVAlignment(cell) != LYX_VALIGN_TOP ||
2851                      (!getPWidth(cell).zero() && !isMultiColumn(cell)))
2852                         features.require("array");
2853                 getCellInset(cell)->validate(features);
2854         }
2855 }
2856
2857
2858 Tabular::BoxType Tabular::useParbox(idx_type cell) const
2859 {
2860         ParagraphList const & parlist = getCellInset(cell)->paragraphs();
2861         ParagraphList::const_iterator cit = parlist.begin();
2862         ParagraphList::const_iterator end = parlist.end();
2863
2864         for (; cit != end; ++cit)
2865                 for (int i = 0; i < cit->size(); ++i)
2866                         if (cit->isNewline(i))
2867                                 return BOX_PARBOX;
2868
2869         return BOX_NONE;
2870 }
2871
2872
2873 /////////////////////////////////////////////////////////////////////
2874 //
2875 // InsetTabular
2876 //
2877 /////////////////////////////////////////////////////////////////////
2878
2879 InsetTabular::InsetTabular(Buffer const & buf, row_type rows,
2880                            col_type columns)
2881         : tabular(buf.params(), max(rows, row_type(1)),
2882           max(columns, col_type(1))), buffer_(&buf), scx_(0), is_deleted_(false)
2883 {}
2884
2885
2886 InsetTabular::InsetTabular(InsetTabular const & tab)
2887         : Inset(tab), tabular(tab.tabular),
2888                 buffer_(tab.buffer_), scx_(0), is_deleted_(false)
2889 {}
2890
2891
2892 InsetTabular::~InsetTabular()
2893 {
2894         InsetTabularMailer(*this).hideDialog();
2895         is_deleted_ = true;
2896 }
2897
2898
2899 auto_ptr<Inset> InsetTabular::doClone() const
2900 {
2901         return auto_ptr<Inset>(new InsetTabular(*this));
2902 }
2903
2904
2905 Buffer const & InsetTabular::buffer() const
2906 {
2907         return *buffer_;
2908 }
2909
2910
2911 void InsetTabular::buffer(Buffer const * b)
2912 {
2913         buffer_ = b;
2914 }
2915
2916
2917 void InsetTabular::write(Buffer const & buf, ostream & os) const
2918 {
2919         os << "Tabular" << endl;
2920         tabular.write(buf, os);
2921 }
2922
2923
2924 void InsetTabular::read(Buffer const & buf, Lexer & lex)
2925 {
2926         bool const old_format = (lex.getString() == "\\LyXTable");
2927
2928         tabular.read(buf, lex);
2929
2930         if (old_format)
2931                 return;
2932
2933         lex.next();
2934         string token = lex.getString();
2935         while (lex && token != "\\end_inset") {
2936                 lex.next();
2937                 token = lex.getString();
2938         }
2939         if (!lex) {
2940                 lex.printError("Missing \\end_inset at this point. "
2941                                "Read: `$$Token'");
2942         }
2943 }
2944
2945
2946 bool InsetTabular::metrics(MetricsInfo & mi, Dimension & dim) const
2947 {
2948         //lyxerr << "InsetTabular::metrics: " << mi.base.bv << " width: " <<
2949         //      mi.base.textwidth << "\n";
2950         if (!mi.base.bv) {
2951                 lyxerr << "InsetTabular::metrics: need bv" << endl;
2952                 BOOST_ASSERT(false);
2953         }
2954
2955         row_type i = 0;
2956         for (idx_type cell = 0; i < tabular.rows(); ++i) {
2957                 int maxAsc = 0;
2958                 int maxDesc = 0;
2959                 for (col_type j = 0; j < tabular.columns(); ++j) {
2960                         if (tabular.isPartOfMultiColumn(i, j))
2961                                 // Multicolumn cell, but not first one
2962                                 continue;
2963                         Dimension dim;
2964                         MetricsInfo m = mi;
2965                         Length p_width;
2966                         if (tabular.cell_info[i][j].multicolumn ==
2967                             Tabular::CELL_BEGIN_OF_MULTICOLUMN)
2968                                 p_width = tabular.cellinfo_of_cell(cell).p_width;
2969                         else
2970                                 p_width = tabular.column_info[j].p_width;
2971                         if (!p_width.zero())
2972                                 m.base.textwidth = p_width.inPixels(mi.base.textwidth);
2973                         tabular.getCellInset(cell)->metrics(m, dim);
2974                         if (!p_width.zero())
2975                                 dim.wid = m.base.textwidth;
2976                         tabular.setWidthOfCell(cell, dim.wid);
2977                         if (p_width.zero()) {
2978                                 m.base.textwidth = dim.wid + 2 * ADD_TO_TABULAR_WIDTH;
2979                                 // FIXME there must be a way to get rid of
2980                                 // the second metrics call
2981                                 tabular.getCellInset(cell)->metrics(m, dim);
2982                         }
2983                         maxAsc  = max(maxAsc, dim.asc);
2984                         maxDesc = max(maxDesc, dim.des);
2985                         ++cell;
2986                 }
2987                 int const top_space = tabular.row_info[i].top_space_default ?
2988                         default_line_space :
2989                         tabular.row_info[i].top_space.inPixels(mi.base.textwidth);
2990                 tabular.setAscentOfRow(i, maxAsc + ADD_TO_HEIGHT + top_space);
2991                 int const bottom_space = tabular.row_info[i].bottom_space_default ?
2992                         default_line_space :
2993                         tabular.row_info[i].bottom_space.inPixels(mi.base.textwidth);
2994                 tabular.setDescentOfRow(i, maxDesc + ADD_TO_HEIGHT + bottom_space);
2995         }
2996
2997         dim.asc = tabular.getAscentOfRow(0);
2998         dim.des = tabular.getHeightOfTabular() - dim.asc;
2999         dim.wid = tabular.getWidthOfTabular() + 2 * ADD_TO_TABULAR_WIDTH;
3000         bool const changed = dim_ != dim;
3001         dim_ = dim;
3002         return changed;
3003 }
3004
3005
3006 void InsetTabular::draw(PainterInfo & pi, int x, int y) const
3007 {
3008         setPosCache(pi, x, y);
3009
3010         //lyxerr << "InsetTabular::draw: " << x << " " << y << endl;
3011         BufferView * bv = pi.base.bv;
3012
3013         resetPos(bv->cursor());
3014
3015         x += scx_;
3016         x += ADD_TO_TABULAR_WIDTH;
3017
3018         idx_type idx = 0;
3019         first_visible_cell = Tabular::npos;
3020         for (row_type i = 0; i < tabular.rows(); ++i) {
3021                 int nx = x;
3022                 int const a = tabular.getAscentOfRow(i);
3023                 int const d = tabular.getDescentOfRow(i);
3024                 idx = tabular.getCellNumber(i, 0);
3025                 for (col_type j = 0; j < tabular.columns(); ++j) {
3026                         if (tabular.isPartOfMultiColumn(i, j))
3027                                 continue;
3028                         if (first_visible_cell == Tabular::npos)
3029                                 first_visible_cell = idx;
3030
3031                         int const cx = nx + tabular.getBeginningOfTextInCell(idx);
3032                         if (nx + tabular.getWidthOfColumn(idx) < 0
3033                             || nx > bv->workWidth()
3034                             || y + d < 0
3035                             || y - a > bv->workHeight()) {
3036                                 pi.pain.setDrawingEnabled(false);
3037                                 cell(idx)->draw(pi, cx, y);
3038                                 drawCellLines(pi.pain, nx, y, i, idx, pi.erased_);
3039                                 pi.pain.setDrawingEnabled(true);
3040                         } else {
3041                                 cell(idx)->draw(pi, cx, y);
3042                                 drawCellLines(pi.pain, nx, y, i, idx, pi.erased_);
3043                         }
3044                         nx += tabular.getWidthOfColumn(idx);
3045                         ++idx;
3046                 }
3047
3048                 if (i + 1 < tabular.rows())
3049                         y += d + tabular.getAscentOfRow(i + 1) +
3050                                 tabular.getAdditionalHeight(i + 1);
3051         }
3052 }
3053
3054
3055 void InsetTabular::drawSelection(PainterInfo & pi, int x, int y) const
3056 {
3057         setPosCache(pi, x, y);
3058
3059         Cursor & cur = pi.base.bv->cursor();
3060
3061         x += scx_ + ADD_TO_TABULAR_WIDTH;
3062
3063         // Paint background of current tabular
3064         int const w = tabular.getWidthOfTabular();
3065         int const h = tabular.getHeightOfTabular();
3066         int yy = y - tabular.getAscentOfRow(0);
3067         pi.pain.fillRectangle(x, yy, w, h, backgroundColor());
3068
3069         if (!cur.selection())
3070                 return;
3071         if (!ptr_cmp(&cur.inset(), this))
3072                 return;
3073
3074         //resetPos(cur);
3075
3076
3077         if (tablemode(cur)) {
3078                 row_type rs, re;
3079                 col_type cs, ce;
3080                 getSelection(cur, rs, re, cs, ce);
3081                 y -= tabular.getAscentOfRow(0);
3082                 for (row_type j = 0; j < tabular.rows(); ++j) {
3083                         int const a = tabular.getAscentOfRow(j);
3084                         int const h = a + tabular.getDescentOfRow(j);
3085                         int xx = x;
3086                         y += tabular.getAdditionalHeight(j);
3087                         for (col_type i = 0; i < tabular.columns(); ++i) {
3088                                 if (tabular.isPartOfMultiColumn(j, i))
3089                                         continue;
3090                                 idx_type const cell =
3091                                         tabular.getCellNumber(j, i);
3092                                 int const w = tabular.getWidthOfColumn(cell);
3093                                 if (i >= cs && i <= ce && j >= rs && j <= re)
3094                                         pi.pain.fillRectangle(xx, y, w, h,
3095                                                               Color::selection);
3096                                 xx += w;
3097                         }
3098                         y += h;
3099                 }
3100
3101         } else {
3102                 x += getCellXPos(cur.idx());
3103                 x += tabular.getBeginningOfTextInCell(cur.idx());
3104                 cell(cur.idx())->drawSelection(pi, x, 0 /* ignored */);
3105         }
3106 }
3107
3108
3109 void InsetTabular::drawCellLines(Painter & pain, int x, int y,
3110                                  row_type row, idx_type cell, bool erased) const
3111 {
3112         int x2 = x + tabular.getWidthOfColumn(cell);
3113         bool on_off = false;
3114         Color::color col = Color::tabularline;
3115         Color::color onoffcol = Color::tabularonoffline;
3116
3117         if (erased) {
3118                 col = Color::deletedtext;
3119                 onoffcol = Color::deletedtext;
3120         }
3121
3122         if (!tabular.topAlreadyDrawn(cell)) {
3123                 on_off = !tabular.topLine(cell);
3124                 pain.line(x, y - tabular.getAscentOfRow(row),
3125                           x2, y -  tabular.getAscentOfRow(row),
3126                           on_off ? onoffcol : col,
3127                           on_off ? Painter::line_onoffdash : Painter::line_solid);
3128         }
3129         on_off = !tabular.bottomLine(cell);
3130         pain.line(x, y + tabular.getDescentOfRow(row),
3131                   x2, y + tabular.getDescentOfRow(row),
3132                   on_off ? onoffcol : col,
3133                   on_off ? Painter::line_onoffdash : Painter::line_solid);
3134         if (!tabular.leftAlreadyDrawn(cell)) {
3135                 on_off = !tabular.leftLine(cell);
3136                 pain.line(x, y -  tabular.getAscentOfRow(row),
3137                           x, y +  tabular.getDescentOfRow(row),
3138                           on_off ? onoffcol : col,
3139                           on_off ? Painter::line_onoffdash : Painter::line_solid);
3140         }
3141         on_off = !tabular.rightLine(cell);
3142         pain.line(x2 - tabular.getAdditionalWidth(cell),
3143                   y -  tabular.getAscentOfRow(row),
3144                   x2 - tabular.getAdditionalWidth(cell),
3145                   y +  tabular.getDescentOfRow(row),
3146                   on_off ? onoffcol : col,
3147                   on_off ? Painter::line_onoffdash : Painter::line_solid);
3148 }
3149
3150
3151 docstring const InsetTabular::editMessage() const
3152 {
3153         return _("Opened table");
3154 }
3155
3156
3157 void InsetTabular::edit(Cursor & cur, bool left)
3158 {
3159         //lyxerr << "InsetTabular::edit: " << this << endl;
3160         finishUndo();
3161         cur.selection() = false;
3162         cur.push(*this);
3163         if (left) {
3164                 if (isRightToLeft(cur))
3165                         cur.idx() = tabular.getLastCellInRow(0);
3166                 else
3167                         cur.idx() = 0;
3168                 cur.pit() = 0;
3169                 cur.pos() = 0;
3170         } else {
3171                 if (isRightToLeft(cur))
3172                         cur.idx() = tabular.getFirstCellInRow(tabular.rows() - 1);
3173                 else
3174                         cur.idx() = tabular.getNumberOfCells() - 1;
3175                 cur.pit() = 0;
3176                 cur.pos() = cur.lastpos(); // FIXME crude guess
3177         }
3178         // FIXME: this accesses the position cache before it is initialized
3179         //resetPos(cur);
3180         //cur.bv().fitCursor();
3181 }
3182
3183
3184 void InsetTabular::doDispatch(Cursor & cur, FuncRequest & cmd)
3185 {
3186         LYXERR(Debug::DEBUG) << "# InsetTabular::doDispatch: cmd: " << cmd
3187                              << "\n  cur:" << cur << endl;
3188         CursorSlice sl = cur.top();
3189         Cursor & bvcur = cur.bv().cursor();
3190
3191         switch (cmd.action) {
3192
3193         case LFUN_MOUSE_PRESS:
3194                 //lyxerr << "# InsetTabular::MousePress\n" << cur.bv().cursor() << endl;
3195
3196                 if (cmd.button() == mouse_button::button1
3197                     || (cmd.button() == mouse_button::button3
3198                         && (&bvcur.selBegin().inset() != this || !tablemode(bvcur)))) {
3199                         if (!bvcur.selection() && !cur.bv().mouseSetCursor(cur))
3200                                 cur.noUpdate();
3201                         cur.selection() = false;
3202                         setCursorFromCoordinates(cur, cmd.x, cmd.y);
3203                         cur.bv().mouseSetCursor(cur);
3204                         break;
3205                 }
3206
3207                 if (cmd.button() == mouse_button::button2) {
3208                         if (cap::selection()) {
3209                                 // See comment in Text::dispatch why we
3210                                 // do this
3211                                 // FIXME This does not use paste_tabular,
3212                                 // another reason why paste_tabular should go.
3213                                 cap::copySelectionToStack();
3214                                 cmd = FuncRequest(LFUN_PASTE, "0");
3215                         } else {
3216                                 cmd = FuncRequest(LFUN_PRIMARY_SELECTION_PASTE,
3217                                                   "paragraph");
3218                         }
3219                         doDispatch(cur, cmd);
3220                         cur.bv().buffer()->markDirty();
3221                         cur.bv().mouseSetCursor(cur);
3222                 }
3223                 break;
3224
3225         case LFUN_MOUSE_MOTION:
3226                 //lyxerr << "# InsetTabular::MouseMotion\n" << bvcur << endl;
3227                 if (cmd.button() == mouse_button::button1) {
3228                         // only accept motions to places not deeper nested than the real anchor
3229                         if (bvcur.anchor_.hasPart(cur)) {
3230                                 // only update if selection changes
3231                                 if (bvcur.idx() == cur.idx() &&
3232                                         !(bvcur.anchor_.idx() == cur.idx() && bvcur.pos() != cur.pos()))
3233                                         cur.noUpdate();
3234                                 setCursorFromCoordinates(cur, cmd.x, cmd.y);
3235                                 bvcur.setCursor(cur);
3236                                 bvcur.selection() = true;
3237                         } else
3238                                 cur.undispatched();
3239                 }
3240                 break;
3241
3242         case LFUN_MOUSE_RELEASE:
3243                 //lyxerr << "# InsetTabular::MouseRelease\n" << bvcur << endl;
3244                 if (cmd.button() == mouse_button::button3)
3245                         InsetTabularMailer(*this).showDialog(&cur.bv());
3246                 break;
3247
3248         case LFUN_CELL_BACKWARD:
3249                 movePrevCell(cur);
3250                 cur.selection() = false;
3251                 break;
3252
3253         case LFUN_CELL_FORWARD:
3254                 moveNextCell(cur);
3255                 cur.selection() = false;
3256                 break;
3257
3258         case LFUN_CHAR_FORWARD_SELECT:
3259         case LFUN_CHAR_FORWARD:
3260                 cell(cur.idx())->dispatch(cur, cmd);
3261                 if (!cur.result().dispatched()) {
3262                         isRightToLeft(cur) ? movePrevCell(cur) : moveNextCell(cur);
3263                         if (sl == cur.top())
3264                                 cmd = FuncRequest(LFUN_FINISHED_RIGHT);
3265                         else
3266                                 cur.dispatched();
3267                 }
3268                 break;
3269
3270         case LFUN_CHAR_BACKWARD_SELECT:
3271         case LFUN_CHAR_BACKWARD:
3272                 cell(cur.idx())->dispatch(cur, cmd);
3273                 if (!cur.result().dispatched()) {
3274                         isRightToLeft(cur) ? moveNextCell(cur) : movePrevCell(cur);
3275                         if (sl == cur.top())
3276                                 cmd = FuncRequest(LFUN_FINISHED_LEFT);
3277                         else
3278                                 cur.dispatched();
3279                 }
3280                 break;
3281
3282         case LFUN_DOWN_SELECT:
3283         case LFUN_DOWN:
3284                 cell(cur.idx())->dispatch(cur, cmd);
3285                 cur.dispatched(); // override the cell's decision
3286                 if (sl == cur.top())
3287                         // if our Text didn't do anything to the cursor
3288                         // then we try to put the cursor into the cell below
3289                         // setting also the right targetX.
3290                         if (tabular.row_of_cell(cur.idx()) != tabular.rows() - 1) {
3291                                 cur.idx() = tabular.getCellBelow(cur.idx());
3292                                 cur.pit() = 0;
3293                                 TextMetrics const & tm =
3294                                         cur.bv().textMetrics(cell(cur.idx())->getText(0));
3295                                 cur.pos() = tm.x2pos(cur.pit(), 0, cur.targetX());
3296                         }
3297                 if (sl == cur.top()) {
3298                         // we trick it to go to the RIGHT after leaving the
3299                         // tabular.
3300                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
3301                         cur.undispatched();
3302                 }
3303                 break;
3304
3305         case LFUN_UP_SELECT:
3306         case LFUN_UP:
3307                 cell(cur.idx())->dispatch(cur, cmd);
3308                 cur.dispatched(); // override the cell's decision
3309                 if (sl == cur.top())
3310                         // if our Text didn't do anything to the cursor
3311                         // then we try to put the cursor into the cell above
3312                         // setting also the right targetX.
3313                         if (tabular.row_of_cell(cur.idx()) != 0) {
3314                                 cur.idx() = tabular.getCellAbove(cur.idx());
3315                                 cur.pit() = cur.lastpit();
3316                                 Text const * text = cell(cur.idx())->getText(0);
3317                                 TextMetrics const & tm = cur.bv().textMetrics(text);
3318                                 ParagraphMetrics const & pm =
3319                                         tm.parMetrics(cur.lastpit());
3320                                 cur.pos() = tm.x2pos(cur.pit(), pm.rows().size()-1, cur.targetX());
3321                         }
3322                 if (sl == cur.top()) {
3323                         cmd = FuncRequest(LFUN_UP);
3324                         cur.undispatched();
3325                 }
3326                 break;
3327
3328 //      case LFUN_SCREEN_DOWN: {
3329 //              //if (hasSelection())
3330 //              //      cur.selection() = false;
3331 //              col_type const col = tabular.column_of_cell(cur.idx());
3332 //              int const t =   cur.bv().top_y() + cur.bv().height();
3333 //              if (t < yo() + tabular.getHeightOfTabular()) {
3334 //                      cur.bv().scrollDocView(t);
3335 //                      cur.idx() = tabular.getCellBelow(first_visible_cell) + col;
3336 //              } else {
3337 //                      cur.idx() = tabular.getFirstCellInRow(tabular.rows() - 1) + col;
3338 //              }
3339 //              cur.par() = 0;
3340 //              cur.pos() = 0;
3341 //              break;
3342 //      }
3343 //
3344 //      case LFUN_SCREEN_UP: {
3345 //              //if (hasSelection())
3346 //              //      cur.selection() = false;
3347 //              col_type const col = tabular.column_of_cell(cur.idx());
3348 //              int const t =   cur.bv().top_y() + cur.bv().height();
3349 //              if (yo() < 0) {
3350 //                      cur.bv().scrollDocView(t);
3351 //                      if (yo() > 0)
3352 //                              cur.idx() = col;
3353 //                      else
3354 //                              cur.idx() = tabular.getCellBelow(first_visible_cell) + col;
3355 //              } else {
3356 //                      cur.idx() = col;
3357 //              }
3358 //              cur.par() = cur.lastpar();
3359 //              cur.pos() = cur.lastpos();
3360 //              break;
3361 //      }
3362
3363         case LFUN_LAYOUT_TABULAR:
3364                 InsetTabularMailer(*this).showDialog(&cur.bv());
3365                 break;
3366
3367         case LFUN_INSET_DIALOG_UPDATE:
3368                 InsetTabularMailer(*this).updateDialog(&cur.bv());
3369                 break;
3370
3371         case LFUN_TABULAR_FEATURE:
3372                 if (!tabularFeatures(cur, to_utf8(cmd.argument())))
3373                         cur.undispatched();
3374                 break;
3375
3376         // insert file functions
3377         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
3378         case LFUN_FILE_INSERT_PLAINTEXT: {
3379                 // FIXME UNICODE
3380                 docstring const tmpstr = getContentsOfPlaintextFile(&cur.bv(), to_utf8(cmd.argument()), false);
3381                 if (!tmpstr.empty() && !insertPlaintextString(cur.bv(), tmpstr, false))
3382                         cur.undispatched();
3383                 break;
3384         }
3385
3386         case LFUN_CUT:
3387                 if (tablemode(cur)) {
3388                         if (copySelection(cur)) {
3389                                 recordUndoInset(cur, Undo::DELETE);
3390                                 cutSelection(cur);
3391                         }
3392                 }
3393                 else
3394                         cell(cur.idx())->dispatch(cur, cmd);
3395                 break;
3396
3397         case LFUN_CHAR_DELETE_BACKWARD:
3398         case LFUN_CHAR_DELETE_FORWARD:
3399                 if (tablemode(cur)) {
3400                         recordUndoInset(cur, Undo::DELETE);
3401                         cutSelection(cur);
3402                 }
3403                 else
3404                         cell(cur.idx())->dispatch(cur, cmd);
3405                 break;
3406
3407         case LFUN_COPY:
3408                 if (!cur.selection())
3409                         break;
3410                 if (tablemode(cur)) {
3411                         finishUndo();
3412                         copySelection(cur);
3413                 } else
3414                         cell(cur.idx())->dispatch(cur, cmd);
3415                 break;
3416
3417         case LFUN_CLIPBOARD_PASTE:
3418         case LFUN_PRIMARY_SELECTION_PASTE: {
3419                 docstring const clip = (cmd.action == LFUN_CLIPBOARD_PASTE) ?
3420                         theClipboard().getAsText() :
3421                         theSelection().get();
3422                 if (clip.empty())
3423                         break;
3424                 // pass to InsertPlaintextString, but
3425                 // only if we have multi-cell content
3426                 if (clip.find_first_of(from_ascii("\t\n")) != docstring::npos) {
3427                         if (insertPlaintextString(cur.bv(), clip, false)) {
3428                                 // content has been replaced,
3429                                 // so cursor might be invalid
3430                                 cur.pos() = cur.lastpos();
3431                                 bvcur.setCursor(cur);
3432                                 break;
3433                         }
3434                 }
3435                 // Let the cell handle normal text
3436                 cell(cur.idx())->dispatch(cur, cmd);
3437                 break;
3438         }
3439
3440         case LFUN_PASTE:
3441                 if (tabularStackDirty() && theClipboard().isInternal()) {
3442                         recordUndoInset(cur, Undo::INSERT);
3443                         pasteClipboard(cur);
3444                         break;
3445                 }
3446                 cell(cur.idx())->dispatch(cur, cmd);
3447                 break;
3448
3449         case LFUN_FONT_EMPH:
3450         case LFUN_FONT_BOLD:
3451         case LFUN_FONT_ROMAN:
3452         case LFUN_FONT_NOUN:
3453         case LFUN_FONT_ITAL:
3454         case LFUN_FONT_FRAK:
3455         case LFUN_FONT_CODE:
3456         case LFUN_FONT_SANS:
3457         case LFUN_FONT_FREE_APPLY:
3458         case LFUN_FONT_FREE_UPDATE:
3459         case LFUN_FONT_SIZE:
3460         case LFUN_FONT_UNDERLINE:
3461         case LFUN_LANGUAGE:
3462         case LFUN_WORD_CAPITALIZE:
3463         case LFUN_WORD_UPCASE:
3464         case LFUN_WORD_LOWCASE:
3465         case LFUN_CHARS_TRANSPOSE:
3466                 if (tablemode(cur)) {
3467                         row_type rs, re;
3468                         col_type cs, ce;
3469                         getSelection(cur, rs, re, cs, ce);
3470                         Cursor tmpcur = cur;
3471                         for (row_type i = rs; i <= re; ++i) {
3472                                 for (col_type j = cs; j <= ce; ++j) {
3473                                         // cursor follows cell:
3474                                         tmpcur.idx() = tabular.getCellNumber(i, j);
3475                                         // select this cell only:
3476                                         tmpcur.pit() = 0;
3477                                         tmpcur.pos() = 0;
3478                                         tmpcur.resetAnchor();
3479                                         tmpcur.pit() = tmpcur.lastpit();
3480                                         tmpcur.pos() = tmpcur.top().lastpos();
3481                                         tmpcur.setCursor(tmpcur);
3482                                         tmpcur.setSelection();
3483                                         cell(tmpcur.idx())->dispatch(tmpcur, cmd);
3484                                 }
3485                         }
3486                         break;
3487                 } else {
3488                         cell(cur.idx())->dispatch(cur, cmd);
3489                         break;
3490                 }
3491         default:
3492                 // we try to handle this event in the insets dispatch function.
3493                 cell(cur.idx())->dispatch(cur, cmd);
3494                 break;
3495         }
3496
3497         // FIXME: this accesses the position cache before it is initialized
3498         //resetPos(cur);
3499         if (!is_deleted_)
3500                 InsetTabularMailer(*this).updateDialog(&cur.bv());
3501 }
3502
3503
3504 // function sets an object as defined in func_status.h:
3505 // states OK, Unknown, Disabled, On, Off.
3506 bool InsetTabular::getStatus(Cursor & cur, FuncRequest const & cmd,
3507         FuncStatus & status) const
3508 {
3509         switch (cmd.action) {
3510         case LFUN_TABULAR_FEATURE: {
3511                 int action = Tabular::LAST_ACTION;
3512                 int i = 0;
3513                 for (; tabularFeature[i].action != Tabular::LAST_ACTION; ++i) {
3514                         string const tmp = tabularFeature[i].feature;
3515                         if (tmp == to_utf8(cmd.argument()).substr(0, tmp.length())) {
3516                                 action = tabularFeature[i].action;
3517                                 break;
3518                         }
3519                 }
3520                 if (action == Tabular::LAST_ACTION) {
3521                         status.clear();
3522                         status.unknown(true);
3523                         return true;
3524                 }
3525
3526                 string const argument
3527                         = ltrim(to_utf8(cmd.argument()).substr(tabularFeature[i].feature.length()));
3528
3529                 row_type sel_row_start = 0;
3530                 row_type sel_row_end = 0;
3531                 col_type sel_col_start = 0;
3532                 col_type sel_col_end = 0;
3533                 Tabular::ltType dummyltt;
3534                 bool flag = true;
3535
3536                 getSelection(cur, sel_row_start, sel_row_end, sel_col_start, sel_col_end);
3537
3538                 switch (action) {
3539                 case Tabular::SET_PWIDTH:
3540                 case Tabular::SET_MPWIDTH:
3541                 case Tabular::SET_SPECIAL_COLUMN:
3542                 case Tabular::SET_SPECIAL_MULTI:
3543                 case Tabular::APPEND_ROW:
3544                 case Tabular::APPEND_COLUMN:
3545                 case Tabular::DELETE_ROW:
3546                 case Tabular::DELETE_COLUMN:
3547                 case Tabular::COPY_ROW:
3548                 case Tabular::COPY_COLUMN:
3549                 case Tabular::SET_ALL_LINES:
3550                 case Tabular::UNSET_ALL_LINES:
3551                 case Tabular::SET_TOP_SPACE:
3552                 case Tabular::SET_BOTTOM_SPACE:
3553                 case Tabular::SET_INTERLINE_SPACE:
3554                         status.clear();
3555                         return true;
3556
3557                 case Tabular::MULTICOLUMN:
3558                         status.setOnOff(tabular.isMultiColumn(cur.idx()));
3559                         break;
3560
3561                 case Tabular::M_TOGGLE_LINE_TOP:
3562                         flag = false;
3563                 case Tabular::TOGGLE_LINE_TOP:
3564                         status.setOnOff(tabular.topLine(cur.idx(), flag));
3565                         break;
3566
3567                 case Tabular::M_TOGGLE_LINE_BOTTOM:
3568                         flag = false;
3569                 case Tabular::TOGGLE_LINE_BOTTOM:
3570                         status.setOnOff(tabular.bottomLine(cur.idx(), flag));
3571                         break;
3572
3573                 case Tabular::M_TOGGLE_LINE_LEFT:
3574                         flag = false;
3575                 case Tabular::TOGGLE_LINE_LEFT:
3576                         status.setOnOff(tabular.leftLine(cur.idx(), flag));
3577                         break;
3578
3579                 case Tabular::M_TOGGLE_LINE_RIGHT:
3580                         flag = false;
3581                 case Tabular::TOGGLE_LINE_RIGHT:
3582                         status.setOnOff(tabular.rightLine(cur.idx(), flag));
3583                         break;
3584
3585                 case Tabular::M_ALIGN_LEFT:
3586                         flag = false;
3587                 case Tabular::ALIGN_LEFT:
3588                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_LEFT);
3589                         break;
3590
3591                 case Tabular::M_ALIGN_RIGHT:
3592                         flag = false;
3593                 case Tabular::ALIGN_RIGHT:
3594                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_RIGHT);
3595                         break;
3596
3597                 case Tabular::M_ALIGN_CENTER:
3598                         flag = false;
3599                 case Tabular::ALIGN_CENTER:
3600                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_CENTER);
3601                         break;
3602
3603                 case Tabular::ALIGN_BLOCK:
3604                         status.enabled(!tabular.getPWidth(cur.idx()).zero());
3605                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_BLOCK);
3606                         break;
3607
3608                 case Tabular::M_VALIGN_TOP:
3609                         flag = false;
3610                 case Tabular::VALIGN_TOP:
3611                         status.setOnOff(
3612                                 tabular.getVAlignment(cur.idx(), flag) == Tabular::LYX_VALIGN_TOP);
3613                         break;
3614
3615                 case Tabular::M_VALIGN_BOTTOM:
3616                         flag = false;
3617                 case Tabular::VALIGN_BOTTOM:
3618                         status.setOnOff(
3619                                 tabular.getVAlignment(cur.idx(), flag) == Tabular::LYX_VALIGN_BOTTOM);
3620                         break;
3621
3622                 case Tabular::M_VALIGN_MIDDLE:
3623                         flag = false;
3624                 case Tabular::VALIGN_MIDDLE:
3625                         status.setOnOff(
3626                                 tabular.getVAlignment(cur.idx(), flag) == Tabular::LYX_VALIGN_MIDDLE);
3627                         break;
3628
3629                 case Tabular::SET_LONGTABULAR:
3630                         status.setOnOff(tabular.isLongTabular());
3631                         break;
3632
3633                 case Tabular::UNSET_LONGTABULAR:
3634                         status.setOnOff(!tabular.isLongTabular());
3635                         break;
3636
3637                 case Tabular::TOGGLE_ROTATE_TABULAR:
3638                 case Tabular::SET_ROTATE_TABULAR:
3639                         status.setOnOff(tabular.getRotateTabular());
3640                         break;
3641
3642                 case Tabular::UNSET_ROTATE_TABULAR:
3643                         status.setOnOff(!tabular.getRotateTabular());
3644                         break;
3645
3646                 case Tabular::TOGGLE_ROTATE_CELL:
3647                 case Tabular::SET_ROTATE_CELL:
3648                         status.setOnOff(!oneCellHasRotationState(false,
3649                                 sel_row_start, sel_row_end, sel_col_start, sel_col_end));
3650                         break;
3651
3652                 case Tabular::UNSET_ROTATE_CELL:
3653                         status.setOnOff(!oneCellHasRotationState(true,
3654                                 sel_row_start, sel_row_end, sel_col_start, sel_col_end));
3655                         break;
3656
3657                 case Tabular::SET_USEBOX:
3658                         status.setOnOff(convert<int>(argument) == tabular.getUsebox(cur.idx()));
3659                         break;
3660
3661                 case Tabular::SET_LTFIRSTHEAD:
3662                         status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
3663                         break;
3664
3665                 case Tabular::UNSET_LTFIRSTHEAD:
3666                         status.setOnOff(!tabular.getRowOfLTHead(sel_row_start, dummyltt));
3667                         break;
3668
3669                 case Tabular::SET_LTHEAD:
3670                         status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
3671                         break;
3672
3673                 case Tabular::UNSET_LTHEAD:
3674                         status.setOnOff(!tabular.getRowOfLTHead(sel_row_start, dummyltt));
3675                         break;
3676
3677                 case Tabular::SET_LTFOOT:
3678                         status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
3679                         break;
3680
3681                 case Tabular::UNSET_LTFOOT:
3682                         status.setOnOff(!tabular.getRowOfLTFoot(sel_row_start, dummyltt));
3683                         break;
3684
3685                 case Tabular::SET_LTLASTFOOT:
3686                         status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
3687                         break;
3688
3689                 case Tabular::UNSET_LTLASTFOOT:
3690                         status.setOnOff(!tabular.getRowOfLTFoot(sel_row_start, dummyltt));
3691                         break;
3692
3693                 case Tabular::SET_LTNEWPAGE:
3694                         status.setOnOff(tabular.getLTNewPage(sel_row_start));
3695                         break;
3696
3697                 case Tabular::SET_BOOKTABS:
3698                         status.setOnOff(tabular.useBookTabs());
3699                         break;
3700
3701                 case Tabular::UNSET_BOOKTABS:
3702                         status.setOnOff(!tabular.useBookTabs());
3703                         break;
3704
3705                 default:
3706                         status.clear();
3707                         status.enabled(false);
3708                         break;
3709                 }
3710                 return true;
3711         }
3712
3713         // These are only enabled inside tabular
3714         case LFUN_CELL_BACKWARD:
3715         case LFUN_CELL_FORWARD:
3716                 status.enabled(true);
3717                 return true;
3718
3719         // disable these with multiple cells selected
3720         case LFUN_INSET_INSERT:
3721         case LFUN_TABULAR_INSERT:
3722         case LFUN_CHARSTYLE_INSERT:
3723         case LFUN_FLOAT_INSERT:
3724         case LFUN_FLOAT_WIDE_INSERT:
3725         case LFUN_FOOTNOTE_INSERT:
3726         case LFUN_MARGINALNOTE_INSERT:
3727         case LFUN_MATH_INSERT:
3728         case LFUN_MATH_MODE:
3729         case LFUN_MATH_MUTATE:
3730         case LFUN_MATH_DISPLAY:
3731         case LFUN_NOTE_INSERT:
3732         case LFUN_OPTIONAL_INSERT:
3733         case LFUN_BOX_INSERT:
3734         case LFUN_BRANCH_INSERT:
3735         case LFUN_WRAP_INSERT:
3736         case LFUN_ERT_INSERT: {
3737                 if (tablemode(cur)) {
3738                         status.enabled(false);
3739                         return true;
3740                 } else
3741                         return cell(cur.idx())->getStatus(cur, cmd, status);
3742         }
3743
3744         // disable in non-fixed-width cells
3745         case LFUN_BREAK_LINE:
3746         case LFUN_BREAK_PARAGRAPH:
3747         case LFUN_BREAK_PARAGRAPH_KEEP_LAYOUT:
3748         case LFUN_BREAK_PARAGRAPH_SKIP: {
3749                 if (tabular.getPWidth(cur.idx()).zero()) {
3750                         status.enabled(false);
3751                         return true;
3752                 } else
3753                         return cell(cur.idx())->getStatus(cur, cmd, status);
3754         }
3755
3756         case LFUN_PASTE:
3757                 if (tabularStackDirty() && theClipboard().isInternal()) {
3758                         status.enabled(true);
3759                         return true;
3760                 } else
3761                         return cell(cur.idx())->getStatus(cur, cmd, status);
3762
3763         case LFUN_INSET_MODIFY:
3764                 if (translate(cmd.getArg(0)) == TABULAR_CODE) {
3765                         status.enabled(true);
3766                         return true;
3767                 }
3768                 // Fall through
3769
3770         default:
3771                 // we try to handle this event in the insets dispatch function.
3772                 return cell(cur.idx())->getStatus(cur, cmd, status);
3773         }
3774 }
3775
3776
3777 int InsetTabular::latex(Buffer const & buf, odocstream & os,
3778                         OutputParams const & runparams) const
3779 {
3780         return tabular.latex(buf, os, runparams);
3781 }
3782
3783
3784 int InsetTabular::plaintext(Buffer const & buf, odocstream & os,
3785                             OutputParams const & runparams) const
3786 {
3787         os << '\n'; // output table on a new line
3788         int const dp = runparams.linelen > 0 ? runparams.depth : 0;
3789         tabular.plaintext(buf, os, runparams, dp, false, 0);
3790         return PLAINTEXT_NEWLINE;
3791 }
3792
3793
3794 int InsetTabular::docbook(Buffer const & buf, odocstream & os,
3795                           OutputParams const & runparams) const
3796 {
3797         int ret = 0;
3798         Inset * master = 0;
3799
3800 #ifdef WITH_WARNINGS
3801 #warning Why not pass a proper DocIterator here?
3802 #endif
3803 #if 0
3804         // if the table is inside a float it doesn't need the informaltable
3805         // wrapper. Search for it.
3806         for (master = owner(); master; master = master->owner())
3807                 if (master->lyxCode() == Inset::FLOAT_CODE)
3808                         break;
3809 #endif
3810
3811         if (!master) {
3812                 os << "<informaltable>";
3813                 ++ret;
3814         }
3815         ret += tabular.docbook(buf, os, runparams);
3816         if (!master) {
3817                 os << "</informaltable>";
3818                 ++ret;
3819         }
3820         return ret;
3821 }
3822
3823
3824 void InsetTabular::validate(LaTeXFeatures & features) const
3825 {
3826         tabular.validate(features);
3827 }
3828
3829
3830 shared_ptr<InsetText const> InsetTabular::cell(idx_type idx) const
3831 {
3832         return tabular.getCellInset(idx);
3833 }
3834
3835
3836 shared_ptr<InsetText> InsetTabular::cell(idx_type idx)
3837 {
3838         return tabular.getCellInset(idx);
3839 }
3840
3841
3842 void InsetTabular::cursorPos(BufferView const & bv,
3843                 CursorSlice const & sl, bool boundary, int & x, int & y) const
3844 {
3845         cell(sl.idx())->cursorPos(bv, sl, boundary, x, y);
3846
3847         // y offset     correction
3848         int const row = tabular.row_of_cell(sl.idx());
3849         for (int i = 0; i <= row; ++i) {
3850                 if (i != 0) {
3851                         y += tabular.getAscentOfRow(i);
3852                         y += tabular.getAdditionalHeight(i);
3853                 }
3854                 if (i != row)
3855                         y += tabular.getDescentOfRow(i);
3856         }
3857
3858         // x offset correction
3859         int const col = tabular.column_of_cell(sl.idx());
3860         int idx = tabular.getCellNumber(row, 0);
3861         for (int j = 0; j < col; ++j) {
3862                 if (tabular.isPartOfMultiColumn(row, j))
3863                         continue;
3864                 x += tabular.getWidthOfColumn(idx);
3865                 ++idx;
3866         }
3867         x += tabular.getBeginningOfTextInCell(idx);
3868         x += ADD_TO_TABULAR_WIDTH;
3869         x += scx_;
3870 }
3871
3872
3873 int InsetTabular::dist(BufferView & bv, idx_type const cell, int x, int y) const
3874 {
3875         int xx = 0;
3876         int yy = 0;
3877         Inset const & inset = *tabular.getCellInset(cell);
3878         Point o = bv.coordCache().getInsets().xy(&inset);
3879         int const xbeg = o.x_ - tabular.getBeginningOfTextInCell(cell);
3880         int const xend = xbeg + tabular.getWidthOfColumn(cell);
3881         row_type const row = tabular.row_of_cell(cell);
3882         int const ybeg = o.y_ - tabular.getAscentOfRow(row) -
3883                          tabular.getAdditionalHeight(row);
3884         int const yend = o.y_ + tabular.getDescentOfRow(row);
3885
3886         if (x < xbeg)
3887                 xx = xbeg - x;
3888         else if (x > xend)
3889                 xx = x - xend;
3890
3891         if (y < ybeg)
3892                 yy = ybeg - y;
3893         else if (y > yend)
3894                 yy = y - yend;
3895
3896         //lyxerr << " xbeg=" << xbeg << "  xend=" << xend
3897         //       << " ybeg=" << ybeg << " yend=" << yend
3898         //       << " xx=" << xx << " yy=" << yy
3899         //       << " dist=" << xx + yy << endl;
3900         return xx + yy;
3901 }
3902
3903
3904 Inset * InsetTabular::editXY(Cursor & cur, int x, int y)
3905 {
3906         //lyxerr << "InsetTabular::editXY: " << this << endl;
3907         cur.selection() = false;
3908         cur.push(*this);
3909         cur.idx() = getNearestCell(cur.bv(), x, y);
3910         resetPos(cur);
3911         return cell(cur.idx())->text_.editXY(cur, x, y);
3912 }
3913
3914
3915 void InsetTabular::setCursorFromCoordinates(Cursor & cur, int x, int y) const
3916 {
3917         cur.idx() = getNearestCell(cur.bv(), x, y);
3918         cell(cur.idx())->text_.setCursorFromCoordinates(cur, x, y);
3919 }
3920
3921
3922 InsetTabular::idx_type InsetTabular::getNearestCell(BufferView & bv, int x, int y) const
3923 {
3924         idx_type idx_min = 0;
3925         int dist_min = std::numeric_limits<int>::max();
3926         for (idx_type i = 0, n = nargs(); i != n; ++i) {
3927                 if (bv.coordCache().getInsets().has(tabular.getCellInset(i).get())) {
3928                         int const d = dist(bv, i, x, y);
3929                         if (d < dist_min) {
3930                                 dist_min = d;
3931                                 idx_min = i;
3932                         }
3933                 }
3934         }
3935         return idx_min;
3936 }
3937
3938
3939 int InsetTabular::getCellXPos(idx_type const cell) const
3940 {
3941         idx_type c = cell;
3942
3943         for (; !tabular.isFirstCellInRow(c); --c)
3944                 ;
3945         int lx = 0;
3946         for (; c < cell; ++c)
3947                 lx += tabular.getWidthOfColumn(c);
3948
3949         return lx;
3950 }
3951
3952
3953 void InsetTabular::resetPos(Cursor & cur) const
3954 {
3955         BufferView & bv = cur.bv();
3956         int const maxwidth = bv.workWidth();
3957
3958         if (&cur.inset() != this) {
3959                 scx_ = 0;
3960         } else {
3961                 int const X1 = 0;
3962                 int const X2 = maxwidth;
3963                 int const offset = ADD_TO_TABULAR_WIDTH + 2;
3964                 int const x1 = xo(cur.bv()) + getCellXPos(cur.idx()) + offset;
3965                 int const x2 = x1 + tabular.getWidthOfColumn(cur.idx());
3966
3967                 if (x1 < X1)
3968                         scx_ = X1 + 20 - x1;
3969                 else if (x2 > X2)
3970                         scx_ = X2 - 20 - x2;
3971                 else
3972                         scx_ = 0;
3973         }
3974
3975         cur.updateFlags(Update::Force | Update::FitCursor);
3976 }
3977
3978
3979 void InsetTabular::moveNextCell(Cursor & cur)
3980 {
3981         if (isRightToLeft(cur)) {
3982                 if (tabular.isFirstCellInRow(cur.idx())) {
3983                         row_type const row = tabular.row_of_cell(cur.idx());
3984                         if (row == tabular.rows() - 1)
3985                                 return;
3986                         cur.idx() = tabular.getCellBelow(tabular.getLastCellInRow(row));
3987                 } else {
3988                         if (cur.idx() == 0)
3989                                 return;
3990                         --cur.idx();
3991                 }
3992         } else {
3993                 if (tabular.isLastCell(cur.idx()))
3994                         return;
3995                 ++cur.idx();
3996         }
3997         cur.pit() = 0;
3998         cur.pos() = 0;
3999         resetPos(cur);
4000 }
4001
4002
4003 void InsetTabular::movePrevCell(Cursor & cur)
4004 {
4005         if (isRightToLeft(cur)) {
4006                 if (tabular.isLastCellInRow(cur.idx())) {
4007                         row_type const row = tabular.row_of_cell(cur.idx());
4008                         if (row == 0)
4009                                 return;
4010                         cur.idx() = tabular.getFirstCellInRow(row);
4011                         cur.idx() = tabular.getCellAbove(cur.idx());
4012                 } else {
4013                         if (tabular.isLastCell(cur.idx()))
4014                                 return;
4015                         ++cur.idx();
4016                 }
4017         } else {
4018                 if (cur.idx() == 0) // first cell
4019                         return;
4020                 --cur.idx();
4021         }
4022         cur.pit() = cur.lastpit();
4023         cur.pos() = cur.lastpos();
4024
4025         // FIXME: this accesses the position cache before it is initialized
4026         //resetPos(cur);
4027 }
4028
4029
4030 bool InsetTabular::tabularFeatures(Cursor & cur, string const & what)
4031 {
4032         Tabular::Feature action = Tabular::LAST_ACTION;
4033
4034         int i = 0;
4035         for (; tabularFeature[i].action != Tabular::LAST_ACTION; ++i) {
4036                 string const tmp = tabularFeature[i].feature;
4037
4038                 if (tmp == what.substr(0, tmp.length())) {
4039                         //if (!compare(tabularFeatures[i].feature.c_str(), what.c_str(),
4040                         //tabularFeatures[i].feature.length()))
4041                         action = tabularFeature[i].action;
4042                         break;
4043                 }
4044         }
4045         if (action == Tabular::LAST_ACTION)
4046                 return false;
4047
4048         string const val =
4049                 ltrim(what.substr(tabularFeature[i].feature.length()));
4050         tabularFeatures(cur, action, val);
4051         return true;
4052 }
4053
4054
4055 static void checkLongtableSpecial(Tabular::ltType & ltt,
4056                           string const & special, bool & flag)
4057 {
4058         if (special == "dl_above") {
4059                 ltt.topDL = flag;
4060                 ltt.set = false;
4061         } else if (special == "dl_below") {
4062                 ltt.bottomDL = flag;
4063                 ltt.set = false;
4064         } else if (special == "empty") {
4065                 ltt.empty = flag;
4066                 ltt.set = false;
4067         } else if (flag) {
4068                 ltt.empty = false;
4069                 ltt.set = true;
4070         }
4071 }
4072
4073 bool InsetTabular::oneCellHasRotationState(bool rotated,
4074                 row_type row_start, row_type row_end,
4075                 col_type col_start, col_type col_end) const {
4076
4077         for (row_type i = row_start; i <= row_end; ++i) {
4078                 for (col_type j = col_start; j <= col_end; ++j) {
4079                         if (tabular.getRotateCell(tabular.getCellNumber(i, j))
4080                                 == rotated) {
4081                                 return true;
4082                         }
4083                 }
4084         }
4085         return false;
4086 }
4087
4088 void InsetTabular::tabularFeatures(Cursor & cur,
4089         Tabular::Feature feature, string const & value)
4090 {
4091         BufferView & bv = cur.bv();
4092         col_type sel_col_start;
4093         col_type sel_col_end;
4094         row_type sel_row_start;
4095         row_type sel_row_end;
4096         bool setLines = false;
4097         LyXAlignment setAlign = LYX_ALIGN_LEFT;
4098         Tabular::VAlignment setVAlign = Tabular::LYX_VALIGN_TOP;
4099
4100         switch (feature) {
4101
4102         case Tabular::M_ALIGN_LEFT:
4103         case Tabular::ALIGN_LEFT:
4104                 setAlign = LYX_ALIGN_LEFT;
4105                 break;
4106
4107         case Tabular::M_ALIGN_RIGHT:
4108         case Tabular::ALIGN_RIGHT:
4109                 setAlign = LYX_ALIGN_RIGHT;
4110                 break;
4111
4112         case Tabular::M_ALIGN_CENTER:
4113         case Tabular::ALIGN_CENTER:
4114                 setAlign = LYX_ALIGN_CENTER;
4115                 break;
4116
4117         case Tabular::ALIGN_BLOCK:
4118                 setAlign = LYX_ALIGN_BLOCK;
4119                 break;
4120
4121         case Tabular::M_VALIGN_TOP:
4122         case Tabular::VALIGN_TOP:
4123                 setVAlign = Tabular::LYX_VALIGN_TOP;
4124                 break;
4125
4126         case Tabular::M_VALIGN_BOTTOM:
4127         case Tabular::VALIGN_BOTTOM:
4128                 setVAlign = Tabular::LYX_VALIGN_BOTTOM;
4129                 break;
4130
4131         case Tabular::M_VALIGN_MIDDLE:
4132         case Tabular::VALIGN_MIDDLE:
4133                 setVAlign = Tabular::LYX_VALIGN_MIDDLE;
4134                 break;
4135
4136         default:
4137                 break;
4138         }
4139
4140         recordUndoInset(cur, Undo::ATOMIC);
4141
4142         getSelection(cur, sel_row_start, sel_row_end, sel_col_start, sel_col_end);
4143         row_type const row = tabular.row_of_cell(cur.idx());
4144         col_type const column = tabular.column_of_cell(cur.idx());
4145         bool flag = true;
4146         Tabular::ltType ltt;
4147
4148         switch (feature) {
4149
4150         case Tabular::SET_PWIDTH: {
4151                 Length const len(value);
4152                 tabular.setColumnPWidth(cur, cur.idx(), len);
4153                 if (len.zero()
4154                     && tabular.getAlignment(cur.idx(), true) == LYX_ALIGN_BLOCK)
4155                         tabularFeatures(cur, Tabular::ALIGN_CENTER, string());
4156                 break;
4157         }
4158
4159         case Tabular::SET_MPWIDTH:
4160                 tabular.setMColumnPWidth(cur, cur.idx(), Length(value));
4161                 break;
4162
4163         case Tabular::SET_SPECIAL_COLUMN:
4164         case Tabular::SET_SPECIAL_MULTI:
4165                 tabular.setAlignSpecial(cur.idx(), from_utf8(value), feature);
4166                 break;
4167
4168         case Tabular::APPEND_ROW:
4169                 // append the row into the tabular
4170                 tabular.appendRow(bv.buffer()->params(), cur.idx());
4171                 break;
4172
4173         case Tabular::APPEND_COLUMN:
4174                 // append the column into the tabular
4175                 tabular.appendColumn(bv.buffer()->params(), cur.idx());
4176                 cur.idx() = tabular.getCellNumber(row, column);
4177                 break;
4178
4179         case Tabular::DELETE_ROW:
4180                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4181                         tabular.deleteRow(sel_row_start);
4182                 if (sel_row_start >= tabular.rows())
4183                         --sel_row_start;
4184                 cur.idx() = tabular.getCellNumber(sel_row_start, column);
4185                 cur.pit() = 0;
4186                 cur.pos() = 0;
4187                 cur.selection() = false;
4188                 break;
4189
4190         case Tabular::DELETE_COLUMN:
4191                 for (col_type i = sel_col_start; i <= sel_col_end; ++i)
4192                         tabular.deleteColumn(sel_col_start);
4193                 if (sel_col_start >= tabular.columns())
4194                         --sel_col_start;
4195                 cur.idx() = tabular.getCellNumber(row, sel_col_start);
4196                 cur.pit() = 0;
4197                 cur.pos() = 0;
4198                 cur.selection() = false;
4199                 break;
4200
4201         case Tabular::COPY_ROW:
4202                 tabular.copyRow(bv.buffer()->params(), row);
4203                 break;
4204
4205         case Tabular::COPY_COLUMN:
4206                 tabular.copyColumn(bv.buffer()->params(), column);
4207                 cur.idx() = tabular.getCellNumber(row, column);
4208                 break;
4209
4210         case Tabular::M_TOGGLE_LINE_TOP:
4211                 flag = false;
4212         case Tabular::TOGGLE_LINE_TOP: {
4213                 bool lineSet = !tabular.topLine(cur.idx(), flag);
4214                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4215                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4216                                 tabular.setTopLine(
4217                                         tabular.getCellNumber(i, j),
4218                                         lineSet, flag);
4219                 break;
4220         }
4221
4222         case Tabular::M_TOGGLE_LINE_BOTTOM:
4223                 flag = false;
4224         case Tabular::TOGGLE_LINE_BOTTOM: {
4225                 bool lineSet = !tabular.bottomLine(cur.idx(), flag);
4226                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4227                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4228                                 tabular.setBottomLine(
4229                                         tabular.getCellNumber(i, j),
4230                                         lineSet,
4231                                         flag);
4232                 break;
4233         }
4234
4235         case Tabular::M_TOGGLE_LINE_LEFT:
4236                 flag = false;
4237         case Tabular::TOGGLE_LINE_LEFT: {
4238                 bool lineSet = !tabular.leftLine(cur.idx(), flag);
4239                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4240                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4241                                 tabular.setLeftLine(
4242                                         tabular.getCellNumber(i,j),
4243                                         lineSet,
4244                                         flag);
4245                 break;
4246         }
4247
4248         case Tabular::M_TOGGLE_LINE_RIGHT:
4249                 flag = false;
4250         case Tabular::TOGGLE_LINE_RIGHT: {
4251                 bool lineSet = !tabular.rightLine(cur.idx(), flag);
4252                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4253                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4254                                 tabular.setRightLine(
4255                                         tabular.getCellNumber(i,j),
4256                                         lineSet,
4257                                         flag);
4258                 break;
4259         }
4260
4261         case Tabular::M_ALIGN_LEFT:
4262         case Tabular::M_ALIGN_RIGHT:
4263         case Tabular::M_ALIGN_CENTER:
4264                 flag = false;
4265         case Tabular::ALIGN_LEFT:
4266         case Tabular::ALIGN_RIGHT:
4267         case Tabular::ALIGN_CENTER:
4268         case Tabular::ALIGN_BLOCK:
4269                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4270                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4271                                 tabular.setAlignment(
4272                                         tabular.getCellNumber(i, j),
4273                                         setAlign,
4274                                         flag);
4275                 break;
4276
4277         case Tabular::M_VALIGN_TOP:
4278         case Tabular::M_VALIGN_BOTTOM:
4279         case Tabular::M_VALIGN_MIDDLE:
4280                 flag = false;
4281         case Tabular::VALIGN_TOP:
4282         case Tabular::VALIGN_BOTTOM:
4283         case Tabular::VALIGN_MIDDLE:
4284                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4285                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4286                                 tabular.setVAlignment(
4287                                         tabular.getCellNumber(i, j),
4288                                         setVAlign, flag);
4289                 break;
4290
4291         case Tabular::MULTICOLUMN: {
4292                 if (sel_row_start != sel_row_end) {
4293 #ifdef WITH_WARNINGS
4294 #warning Need I say it ? This is horrible.
4295 #endif
4296                         // FIXME UNICODE
4297                         Alert::error(_("Error setting multicolumn"),
4298                                      _("You cannot set multicolumn vertically."));
4299                         return;
4300                 }
4301                 if (!cur.selection()) {
4302                         // just multicol for one single cell
4303                         // check whether we are completely in a multicol
4304                         if (tabular.isMultiColumn(cur.idx()))
4305                                 tabular.unsetMultiColumn(cur.idx());
4306                         else
4307                                 tabular.setMultiColumn(bv.buffer(), cur.idx(), 1);
4308                         break;
4309                 }
4310                 // we have a selection so this means we just add all this
4311                 // cells to form a multicolumn cell
4312                 idx_type const s_start = cur.selBegin().idx();
4313                 idx_type const s_end = cur.selEnd().idx();
4314                 tabular.setMultiColumn(bv.buffer(), s_start, s_end - s_start + 1);
4315                 cur.idx() = s_start;
4316                 cur.pit() = 0;
4317                 cur.pos() = 0;
4318                 cur.selection() = false;
4319                 break;
4320         }
4321
4322         case Tabular::SET_ALL_LINES:
4323                 setLines = true;
4324         case Tabular::UNSET_ALL_LINES:
4325                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4326                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4327                                 tabular.setAllLines(
4328                                         tabular.getCellNumber(i,j), setLines);
4329                 break;
4330
4331         case Tabular::SET_LONGTABULAR:
4332                 tabular.setLongTabular(true);
4333                 break;
4334
4335         case Tabular::UNSET_LONGTABULAR:
4336                 tabular.setLongTabular(false);
4337                 break;
4338
4339         case Tabular::SET_ROTATE_TABULAR:
4340                 tabular.setRotateTabular(true);
4341                 break;
4342
4343         case Tabular::UNSET_ROTATE_TABULAR:
4344                 tabular.setRotateTabular(false);
4345                 break;
4346
4347         case Tabular::TOGGLE_ROTATE_TABULAR:
4348                 tabular.setRotateTabular(!tabular.getRotateTabular());
4349                 break;
4350
4351         case Tabular::SET_ROTATE_CELL:
4352                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4353                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4354                                 tabular.setRotateCell(
4355                                         tabular.getCellNumber(i, j), true);
4356                 break;
4357
4358         case Tabular::UNSET_ROTATE_CELL:
4359                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4360                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4361                                 tabular.setRotateCell(
4362                                         tabular.getCellNumber(i, j), false);
4363                 break;
4364
4365         case Tabular::TOGGLE_ROTATE_CELL:
4366                 {
4367                 bool oneNotRotated = oneCellHasRotationState(false,
4368                         sel_row_start, sel_row_end, sel_col_start, sel_col_end);
4369
4370                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4371                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4372                                 tabular.setRotateCell(tabular.getCellNumber(i, j),
4373                                                                           oneNotRotated);
4374                 }
4375                 break;
4376
4377         case Tabular::SET_USEBOX: {
4378                 Tabular::BoxType val = Tabular::BoxType(convert<int>(value));
4379                 if (val == tabular.getUsebox(cur.idx()))
4380                         val = Tabular::BOX_NONE;
4381                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4382                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4383                                 tabular.setUsebox(tabular.getCellNumber(i, j), val);
4384                 break;
4385         }
4386
4387         case Tabular::UNSET_LTFIRSTHEAD:
4388                 flag = false;
4389         case Tabular::SET_LTFIRSTHEAD:
4390                 tabular.getRowOfLTFirstHead(row, ltt);
4391                 checkLongtableSpecial(ltt, value, flag);
4392                 tabular.setLTHead(row, flag, ltt, true);
4393                 break;
4394
4395         case Tabular::UNSET_LTHEAD:
4396                 flag = false;
4397         case Tabular::SET_LTHEAD:
4398                 tabular.getRowOfLTHead(row, ltt);
4399                 checkLongtableSpecial(ltt, value, flag);
4400                 tabular.setLTHead(row, flag, ltt, false);
4401                 break;
4402
4403         case Tabular::UNSET_LTFOOT:
4404                 flag = false;
4405         case Tabular::SET_LTFOOT:
4406                 tabular.getRowOfLTFoot(row, ltt);
4407                 checkLongtableSpecial(ltt, value, flag);
4408                 tabular.setLTFoot(row, flag, ltt, false);
4409                 break;
4410
4411         case Tabular::UNSET_LTLASTFOOT:
4412                 flag = false;
4413         case Tabular::SET_LTLASTFOOT:
4414                 tabular.getRowOfLTLastFoot(row, ltt);
4415                 checkLongtableSpecial(ltt, value, flag);
4416                 tabular.setLTFoot(row, flag, ltt, true);
4417                 break;
4418
4419         case Tabular::SET_LTNEWPAGE:
4420                 tabular.setLTNewPage(row, !tabular.getLTNewPage(row));
4421                 break;
4422
4423         case Tabular::SET_BOOKTABS:
4424                 tabular.setBookTabs(true);
4425                 break;
4426
4427         case Tabular::UNSET_BOOKTABS:
4428                 tabular.setBookTabs(false);
4429                 break;
4430
4431         case Tabular::SET_TOP_SPACE: {
4432                 Length len;
4433                 if (value == "default")
4434                         for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4435                                 tabular.row_info[i].top_space_default = true;
4436                 else if (isValidLength(value, &len))
4437                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4438                                 tabular.row_info[i].top_space_default = false;
4439                                 tabular.row_info[i].top_space = len;
4440                         }
4441                 else
4442                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4443                                 tabular.row_info[i].top_space_default = false;
4444                                 tabular.row_info[i].top_space = len;
4445                         }
4446                 break;
4447         }
4448
4449         case Tabular::SET_BOTTOM_SPACE: {
4450                 Length len;
4451                 if (value == "default")
4452                         for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4453                                 tabular.row_info[i].bottom_space_default = true;
4454                 else if (isValidLength(value, &len))
4455                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4456                                 tabular.row_info[i].bottom_space_default = false;
4457                                 tabular.row_info[i].bottom_space = len;
4458                         }
4459                 else
4460                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4461                                 tabular.row_info[i].bottom_space_default = false;
4462                                 tabular.row_info[i].bottom_space = len;
4463                         }
4464                 break;
4465         }
4466
4467         case Tabular::SET_INTERLINE_SPACE: {
4468                 Length len;
4469                 if (value == "default")
4470                         for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4471                                 tabular.row_info[i].interline_space_default = true;
4472                 else if (isValidLength(value, &len))
4473                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4474                                 tabular.row_info[i].interline_space_default = false;
4475                                 tabular.row_info[i].interline_space = len;
4476                         }
4477                 else
4478                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4479                                 tabular.row_info[i].interline_space_default = false;
4480                                 tabular.row_info[i].interline_space = len;
4481                         }
4482                 break;
4483         }
4484
4485         // dummy stuff just to avoid warnings
4486         case Tabular::LAST_ACTION:
4487                 break;
4488         }
4489 }
4490
4491
4492 bool InsetTabular::showInsetDialog(BufferView * bv) const
4493 {
4494         InsetTabularMailer(*this).showDialog(bv);
4495         return true;
4496 }
4497
4498
4499 void InsetTabular::openLayoutDialog(BufferView * bv) const
4500 {
4501         InsetTabularMailer(*this).showDialog(bv);
4502 }
4503
4504
4505 bool InsetTabular::copySelection(Cursor & cur)
4506 {
4507         if (!cur.selection())
4508                 return false;
4509
4510         row_type rs, re;
4511         col_type cs, ce;
4512         getSelection(cur, rs, re, cs, ce);
4513
4514         paste_tabular.reset(new Tabular(tabular));
4515
4516         for (row_type i = 0; i < rs; ++i)
4517                 paste_tabular->deleteRow(0);
4518
4519         row_type const rows = re - rs + 1;
4520         while (paste_tabular->rows() > rows)
4521                 paste_tabular->deleteRow(rows);
4522
4523         paste_tabular->setTopLine(0, true, true);
4524         paste_tabular->setBottomLine(paste_tabular->getFirstCellInRow(rows - 1),
4525                                      true, true);
4526
4527         for (col_type i = 0; i < cs; ++i)
4528                 paste_tabular->deleteColumn(0);
4529
4530         col_type const columns = ce - cs + 1;
4531         while (paste_tabular->columns() > columns)
4532                 paste_tabular->deleteColumn(columns);
4533
4534         paste_tabular->setLeftLine(0, true, true);
4535         paste_tabular->setRightLine(paste_tabular->getLastCellInRow(0),
4536                                     true, true);
4537
4538         odocstringstream os;
4539         OutputParams const runparams(0);
4540         paste_tabular->plaintext(cur.buffer(), os, runparams, 0, true, '\t');
4541         // Needed for the "Edit->Paste recent" menu and the system clipboard.
4542         cap::copySelection(cur, os.str());
4543
4544         // mark tabular stack dirty
4545         // FIXME: this is a workaround for bug 1919. Should be removed for 1.5,
4546         // when we (hopefully) have a one-for-all paste mechanism.
4547         // This must be called after cap::copySelection.
4548         dirtyTabularStack(true);
4549
4550         return true;
4551 }
4552
4553
4554 bool InsetTabular::pasteClipboard(Cursor & cur)
4555 {
4556         if (!paste_tabular)
4557                 return false;
4558         col_type const actcol = tabular.column_of_cell(cur.idx());
4559         row_type const actrow = tabular.row_of_cell(cur.idx());
4560         for (row_type r1 = 0, r2 = actrow;
4561              r1 < paste_tabular->rows() && r2 < tabular.rows();
4562              ++r1, ++r2) {
4563                 for (col_type c1 = 0, c2 = actcol;
4564                     c1 < paste_tabular->columns() && c2 < tabular.columns();
4565                     ++c1, ++c2) {
4566                         if (paste_tabular->isPartOfMultiColumn(r1, c1) &&
4567                             tabular.isPartOfMultiColumn(r2, c2))
4568                                 continue;
4569                         if (paste_tabular->isPartOfMultiColumn(r1, c1)) {
4570                                 --c2;
4571                                 continue;
4572                         }
4573                         if (tabular.isPartOfMultiColumn(r2, c2)) {
4574                                 --c1;
4575                                 continue;
4576                         }
4577                         shared_ptr<InsetText> inset(
4578                                 new InsetText(*paste_tabular->getCellInset(r1, c1)));
4579                         tabular.setCellInset(r2, c2, inset);
4580                         // FIXME: change tracking (MG)
4581                         inset->setChange(Change(cur.buffer().params().trackChanges ?
4582                                                 Change::INSERTED : Change::UNCHANGED));
4583                         cur.pos() = 0;
4584                 }
4585         }
4586         return true;
4587 }
4588
4589
4590 void InsetTabular::cutSelection(Cursor & cur)
4591 {
4592         if (!cur.selection())
4593                 return;
4594
4595         row_type rs, re;
4596         col_type cs, ce;
4597         getSelection(cur, rs, re, cs, ce);
4598         for (row_type i = rs; i <= re; ++i) {
4599                 for (col_type j = cs; j <= ce; ++j) {
4600                         shared_ptr<InsetText> t
4601                                 = cell(tabular.getCellNumber(i, j));
4602                         if (cur.buffer().params().trackChanges)
4603                                 // FIXME: Change tracking (MG)
4604                                 t->setChange(Change(Change::DELETED));
4605                         else
4606                                 t->clear();
4607                 }
4608         }
4609
4610         // cursor position might be invalid now
4611         if (cur.pit() > cur.lastpit())
4612                 cur.pit() = cur.lastpit();
4613         if (cur.pos() > cur.lastpos())
4614                 cur.pos() = cur.lastpos();
4615         cur.clearSelection();
4616 }
4617
4618
4619 bool InsetTabular::isRightToLeft(Cursor & cur) const
4620 {
4621         BOOST_ASSERT(cur.depth() > 1);
4622         Paragraph const & parentpar = cur[cur.depth() - 2].paragraph();
4623         pos_type const parentpos = cur[cur.depth() - 2].pos();
4624         return parentpar.getFontSettings(cur.bv().buffer()->params(),
4625                                          parentpos).language()->rightToLeft();
4626 }
4627
4628
4629 void InsetTabular::getSelection(Cursor & cur,
4630         row_type & rs, row_type & re, col_type & cs, col_type & ce) const
4631 {
4632         CursorSlice const & beg = cur.selBegin();
4633         CursorSlice const & end = cur.selEnd();
4634         cs = tabular.column_of_cell(beg.idx());
4635         ce = tabular.column_of_cell(end.idx());
4636         if (cs > ce) {
4637                 ce = cs;
4638                 cs = tabular.column_of_cell(end.idx());
4639         } else {
4640                 ce = tabular.right_column_of_cell(end.idx());
4641         }
4642
4643         rs = tabular.row_of_cell(beg.idx());
4644         re = tabular.row_of_cell(end.idx());
4645         if (rs > re)
4646                 swap(rs, re);
4647 }
4648
4649
4650 Text * InsetTabular::getText(int idx) const
4651 {
4652         return size_t(idx) < nargs() ? cell(idx)->getText(0) : 0;
4653 }
4654
4655
4656 void InsetTabular::setChange(Change const & change)
4657 {
4658         for (idx_type idx = 0; idx < nargs(); ++idx)
4659                 cell(idx)->setChange(change);
4660 }
4661
4662
4663 void InsetTabular::acceptChanges(BufferParams const & bparams)
4664 {
4665         for (idx_type idx = 0; idx < nargs(); ++idx)
4666                 cell(idx)->acceptChanges(bparams);
4667 }
4668
4669
4670 void InsetTabular::rejectChanges(BufferParams const & bparams)
4671 {
4672         for (idx_type idx = 0; idx < nargs(); ++idx)
4673                 cell(idx)->rejectChanges(bparams);
4674 }
4675
4676
4677 bool InsetTabular::forceDefaultParagraphs(idx_type cell) const
4678 {
4679         return tabular.getPWidth(cell).zero();
4680 }
4681
4682
4683 bool InsetTabular::insertPlaintextString(BufferView & bv, docstring const & buf,
4684                                      bool usePaste)
4685 {
4686         if (buf.length() <= 0)
4687                 return true;
4688
4689         Buffer const & buffer = *bv.buffer();
4690
4691         col_type cols = 1;
4692         row_type rows = 1;
4693         col_type maxCols = 1;
4694         docstring::size_type const len = buf.length();
4695         docstring::size_type p = 0;
4696
4697         while (p < len &&
4698                (p = buf.find_first_of(from_ascii("\t\n"), p)) != docstring::npos) {
4699                 switch (buf[p]) {
4700                 case '\t':
4701                         ++cols;
4702                         break;
4703                 case '\n':
4704                         if (p + 1 < len)
4705                                 ++rows;
4706                         maxCols = max(cols, maxCols);
4707                         cols = 1;
4708                         break;
4709                 }
4710                 ++p;
4711         }
4712         maxCols = max(cols, maxCols);
4713         Tabular * loctab;
4714         idx_type cell = 0;
4715         col_type ocol = 0;
4716         row_type row = 0;
4717         if (usePaste) {
4718                 paste_tabular.reset(
4719                         new Tabular(buffer.params(), rows, maxCols));
4720                 loctab = paste_tabular.get();
4721                 cols = 0;
4722                 dirtyTabularStack(true);
4723         } else {
4724                 loctab = &tabular;
4725                 cell = bv.cursor().idx();
4726                 ocol = tabular.column_of_cell(cell);
4727                 row = tabular.row_of_cell(cell);
4728         }
4729
4730         docstring::size_type op = 0;
4731         idx_type const cells = loctab->getNumberOfCells();
4732         p = 0;
4733         cols = ocol;
4734         rows = loctab->rows();
4735         col_type const columns = loctab->columns();
4736
4737         while (cell < cells && p < len && row < rows &&
4738                (p = buf.find_first_of(from_ascii("\t\n"), p)) != docstring::npos)
4739         {
4740                 if (p >= len)
4741                         break;
4742                 switch (buf[p]) {
4743                 case '\t':
4744                         // we can only set this if we are not too far right
4745                         if (cols < columns) {
4746                                 shared_ptr<InsetText> inset = loctab->getCellInset(cell);
4747                                 Paragraph & par = inset->text_.getPar(0);
4748                                 Font const font = inset->text_.getFont(buffer, par, 0);
4749                                 inset->setText(buf.substr(op, p - op), font,
4750                                                buffer.params().trackChanges);
4751                                 ++cols;
4752                                 ++cell;
4753                         }
4754                         break;
4755                 case '\n':
4756                         // we can only set this if we are not too far right
4757                         if (cols < columns) {
4758                                 shared_ptr<InsetText> inset = tabular.getCellInset(cell);
4759                                 Paragraph & par = inset->text_.getPar(0);
4760                                 Font const font = inset->text_.getFont(buffer, par, 0);
4761                                 inset->setText(buf.substr(op, p - op), font,
4762                                                buffer.params().trackChanges);
4763                         }
4764                         cols = ocol;
4765                         ++row;
4766                         if (row < rows)
4767                                 cell = loctab->getCellNumber(row, cols);
4768                         break;
4769                 }
4770                 ++p;
4771                 op = p;
4772         }
4773         // check for the last cell if there is no trailing '\n'
4774         if (cell < cells && op < len) {
4775                 shared_ptr<InsetText> inset = loctab->getCellInset(cell);
4776                 Paragraph & par = inset->text_.getPar(0);
4777                 Font const font = inset->text_.getFont(buffer, par, 0);
4778                 inset->setText(buf.substr(op, len - op), font,
4779                         buffer.params().trackChanges);
4780         }
4781         return true;
4782 }
4783
4784
4785 void InsetTabular::addPreview(PreviewLoader & loader) const
4786 {
4787         row_type const rows = tabular.rows();
4788         col_type const columns = tabular.columns();
4789         for (row_type i = 0; i < rows; ++i) {
4790                 for (col_type j = 0; j < columns; ++j)
4791                         tabular.getCellInset(i, j)->addPreview(loader);
4792         }
4793 }
4794
4795
4796 bool InsetTabular::tablemode(Cursor & cur) const
4797 {
4798         return cur.selection() && cur.selBegin().idx() != cur.selEnd().idx();
4799 }
4800
4801
4802
4803
4804
4805 string const InsetTabularMailer::name_("tabular");
4806
4807 InsetTabularMailer::InsetTabularMailer(InsetTabular const & inset)
4808         : inset_(const_cast<InsetTabular &>(inset))
4809 {}
4810
4811
4812 string const InsetTabularMailer::inset2string(Buffer const &) const
4813 {
4814         return params2string(inset_);
4815 }
4816
4817
4818 void InsetTabularMailer::string2params(string const & in, InsetTabular & inset)
4819 {
4820         istringstream data(in);
4821         Lexer lex(0,0);
4822         lex.setStream(data);
4823
4824         if (in.empty())
4825                 return;
4826
4827         string token;
4828         lex >> token;
4829         if (!lex || token != name_)
4830                 return print_mailer_error("InsetTabularMailer", in, 1,
4831                                           name_);
4832
4833         // This is part of the inset proper that is usually swallowed
4834         // by Buffer::readInset
4835         lex >> token;
4836         if (!lex || token != "Tabular")
4837                 return print_mailer_error("InsetTabularMailer", in, 2,
4838                                           "Tabular");
4839
4840         Buffer const & buffer = inset.buffer();
4841         inset.read(buffer, lex);
4842 }
4843
4844
4845 string const InsetTabularMailer::params2string(InsetTabular const & inset)
4846 {
4847         ostringstream data;
4848         data << name_ << ' ';
4849         inset.write(inset.buffer(), data);
4850         data << "\\end_inset\n";
4851         return data.str();
4852 }
4853
4854
4855 } // namespace lyx