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