]> git.lyx.org Git - features.git/blob - src/insets/InsetTabular.cpp
815d52826d766fa752435f722dca9d9e1e8192d2
[features.git] / src / insets / InsetTabular.cpp
1 /**
2  * \file InsetTabular.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author 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::endl;
63 using std::getline;
64 using std::istream;
65 using std::istringstream;
66 using std::max;
67 using std::ostream;
68 using std::ostringstream;
69 using std::string;
70 using std::swap;
71 using std::vector;
72
73 #ifndef CXX_GLOBAL_CSTD
74 using std::strlen;
75 #endif
76
77 using boost::shared_ptr;
78 using boost::dynamic_pointer_cast;
79
80 namespace lyx {
81
82 using support::prefixIs;
83 using support::ltrim;
84 using support::rtrim;
85 using support::suffixIs;
86
87 using cap::dirtyTabularStack;
88 using cap::tabularStackDirty;
89
90 using graphics::PreviewLoader;
91
92 using frontend::Painter;
93 using frontend::Clipboard;
94
95 namespace Alert = frontend::Alert;
96
97
98 namespace {
99
100 int const ADD_TO_HEIGHT = 2;
101 int const ADD_TO_TABULAR_WIDTH = 2;
102 int const default_line_space = 10;
103 int const WIDTH_OF_LINE = 5;
104
105
106 ///
107 boost::scoped_ptr<Tabular> paste_tabular;
108
109
110 struct TabularFeature {
111         Tabular::Feature action;
112         string feature;
113 };
114
115
116 TabularFeature tabularFeature[] =
117 {
118         { Tabular::APPEND_ROW, "append-row" },
119         { Tabular::APPEND_COLUMN, "append-column" },
120         { Tabular::DELETE_ROW, "delete-row" },
121         { Tabular::DELETE_COLUMN, "delete-column" },
122         { Tabular::COPY_ROW, "copy-row" },
123         { Tabular::COPY_COLUMN, "copy-column" },
124         { Tabular::TOGGLE_LINE_TOP, "toggle-line-top" },
125         { Tabular::TOGGLE_LINE_BOTTOM, "toggle-line-bottom" },
126         { Tabular::TOGGLE_LINE_LEFT, "toggle-line-left" },
127         { Tabular::TOGGLE_LINE_RIGHT, "toggle-line-right" },
128         { Tabular::ALIGN_LEFT, "align-left" },
129         { Tabular::ALIGN_RIGHT, "align-right" },
130         { Tabular::ALIGN_CENTER, "align-center" },
131         { Tabular::ALIGN_BLOCK, "align-block" },
132         { Tabular::VALIGN_TOP, "valign-top" },
133         { Tabular::VALIGN_BOTTOM, "valign-bottom" },
134         { Tabular::VALIGN_MIDDLE, "valign-middle" },
135         { Tabular::M_TOGGLE_LINE_TOP, "m-toggle-line-top" },
136         { Tabular::M_TOGGLE_LINE_BOTTOM, "m-toggle-line-bottom" },
137         { Tabular::M_TOGGLE_LINE_LEFT, "m-toggle-line-left" },
138         { Tabular::M_TOGGLE_LINE_RIGHT, "m-toggle-line-right" },
139         { Tabular::M_ALIGN_LEFT, "m-align-left" },
140         { Tabular::M_ALIGN_RIGHT, "m-align-right" },
141         { Tabular::M_ALIGN_CENTER, "m-align-center" },
142         { Tabular::M_VALIGN_TOP, "m-valign-top" },
143         { Tabular::M_VALIGN_BOTTOM, "m-valign-bottom" },
144         { Tabular::M_VALIGN_MIDDLE, "m-valign-middle" },
145         { Tabular::MULTICOLUMN, "multicolumn" },
146         { Tabular::SET_ALL_LINES, "set-all-lines" },
147         { Tabular::UNSET_ALL_LINES, "unset-all-lines" },
148         { Tabular::SET_LONGTABULAR, "set-longtabular" },
149         { Tabular::UNSET_LONGTABULAR, "unset-longtabular" },
150         { Tabular::SET_PWIDTH, "set-pwidth" },
151         { Tabular::SET_MPWIDTH, "set-mpwidth" },
152         { Tabular::SET_ROTATE_TABULAR, "set-rotate-tabular" },
153         { Tabular::UNSET_ROTATE_TABULAR, "unset-rotate-tabular" },
154         { Tabular::TOGGLE_ROTATE_TABULAR, "toggle-rotate-tabular" },
155         { Tabular::SET_ROTATE_CELL, "set-rotate-cell" },
156         { Tabular::UNSET_ROTATE_CELL, "unset-rotate-cell" },
157         { Tabular::TOGGLE_ROTATE_CELL, "toggle-rotate-cell" },
158         { Tabular::SET_USEBOX, "set-usebox" },
159         { Tabular::SET_LTHEAD, "set-lthead" },
160         { Tabular::UNSET_LTHEAD, "unset-lthead" },
161         { Tabular::SET_LTFIRSTHEAD, "set-ltfirsthead" },
162         { Tabular::UNSET_LTFIRSTHEAD, "unset-ltfirsthead" },
163         { Tabular::SET_LTFOOT, "set-ltfoot" },
164         { Tabular::UNSET_LTFOOT, "unset-ltfoot" },
165         { Tabular::SET_LTLASTFOOT, "set-ltlastfoot" },
166         { Tabular::UNSET_LTLASTFOOT, "unset-ltlastfoot" },
167         { Tabular::SET_LTNEWPAGE, "set-ltnewpage" },
168         { Tabular::SET_SPECIAL_COLUMN, "set-special-column" },
169         { Tabular::SET_SPECIAL_MULTI, "set-special-multi" },
170         { Tabular::SET_BOOKTABS, "set-booktabs" },
171         { Tabular::UNSET_BOOKTABS, "unset-booktabs" },
172         { Tabular::SET_TOP_SPACE, "set-top-space" },
173         { Tabular::SET_BOTTOM_SPACE, "set-bottom-space" },
174         { Tabular::SET_INTERLINE_SPACE, "set-interline-space" },
175         { Tabular::LAST_ACTION, "" }
176 };
177
178
179 class FeatureEqual : public std::unary_function<TabularFeature, bool> {
180 public:
181         FeatureEqual(Tabular::Feature feature)
182                 : feature_(feature) {}
183         bool operator()(TabularFeature const & tf) const {
184                 return tf.action == feature_;
185         }
186 private:
187         Tabular::Feature feature_;
188 };
189
190
191 template <class T>
192 string const write_attribute(string const & name, T const & t)
193 {
194         string const s = tostr(t);
195         return s.empty() ? s : " " + name + "=\"" + s + "\"";
196 }
197
198 template <>
199 string const write_attribute(string const & name, string const & t)
200 {
201         return t.empty() ? t : " " + name + "=\"" + t + "\"";
202 }
203
204
205 template <>
206 string const write_attribute(string const & name, docstring const & t)
207 {
208         return t.empty() ? string() : " " + name + "=\"" + to_utf8(t) + "\"";
209 }
210
211
212 template <>
213 string const write_attribute(string const & name, bool const & b)
214 {
215         // we write only true attribute values so we remove a bit of the
216         // file format bloat for tabulars.
217         return b ? write_attribute(name, convert<string>(b)) : string();
218 }
219
220
221 template <>
222 string const write_attribute(string const & name, int const & i)
223 {
224         // we write only true attribute values so we remove a bit of the
225         // file format bloat for tabulars.
226         return i ? write_attribute(name, convert<string>(i)) : string();
227 }
228
229
230 template <>
231 string const write_attribute(string const & name, Tabular::idx_type const & i)
232 {
233         // we write only true attribute values so we remove a bit of the
234         // file format bloat for tabulars.
235         return i ? write_attribute(name, convert<string>(i)) : string();
236 }
237
238
239 template <>
240 string const write_attribute(string const & name, Length const & value)
241 {
242         // we write only the value if we really have one same reson as above.
243         return value.zero() ? string() : write_attribute(name, value.asString());
244 }
245
246
247 string const tostr(LyXAlignment const & num)
248 {
249         switch (num) {
250         case LYX_ALIGN_NONE:
251                 return "none";
252         case LYX_ALIGN_BLOCK:
253                 return "block";
254         case LYX_ALIGN_LEFT:
255                 return "left";
256         case LYX_ALIGN_CENTER:
257                 return "center";
258         case LYX_ALIGN_RIGHT:
259                 return "right";
260         case LYX_ALIGN_LAYOUT:
261                 return "layout";
262         case LYX_ALIGN_SPECIAL:
263                 return "special";
264         }
265         return string();
266 }
267
268
269 string const tostr(Tabular::VAlignment const & num)
270 {
271         switch (num) {
272         case Tabular::LYX_VALIGN_TOP:
273                 return "top";
274         case Tabular::LYX_VALIGN_MIDDLE:
275                 return "middle";
276         case Tabular::LYX_VALIGN_BOTTOM:
277                 return "bottom";
278         }
279         return string();
280 }
281
282
283 string const tostr(Tabular::BoxType const & num)
284 {
285         switch (num) {
286         case Tabular::BOX_NONE:
287                 return "none";
288         case Tabular::BOX_PARBOX:
289                 return "parbox";
290         case Tabular::BOX_MINIPAGE:
291                 return "minipage";
292         }
293         return string();
294 }
295
296
297 // I would have liked a fromstr template a lot better. (Lgb)
298 bool string2type(string const str, LyXAlignment & num)
299 {
300         if (str == "none")
301                 num = LYX_ALIGN_NONE;
302         else if (str == "block")
303                 num = LYX_ALIGN_BLOCK;
304         else if (str == "left")
305                 num = LYX_ALIGN_LEFT;
306         else if (str == "center")
307                 num = LYX_ALIGN_CENTER;
308         else if (str == "right")
309                 num = LYX_ALIGN_RIGHT;
310         else
311                 return false;
312         return true;
313 }
314
315
316 bool string2type(string const str, Tabular::VAlignment & num)
317 {
318         if (str == "top")
319                 num = Tabular::LYX_VALIGN_TOP;
320         else if (str == "middle" )
321                 num = Tabular::LYX_VALIGN_MIDDLE;
322         else if (str == "bottom")
323                 num = Tabular::LYX_VALIGN_BOTTOM;
324         else
325                 return false;
326         return true;
327 }
328
329
330 bool string2type(string const str, Tabular::BoxType & num)
331 {
332         if (str == "none")
333                 num = Tabular::BOX_NONE;
334         else if (str == "parbox")
335                 num = Tabular::BOX_PARBOX;
336         else if (str == "minipage")
337                 num = Tabular::BOX_MINIPAGE;
338         else
339                 return false;
340         return true;
341 }
342
343
344 bool string2type(string const str, bool & num)
345 {
346         if (str == "true")
347                 num = true;
348         else if (str == "false")
349                 num = false;
350         else
351                 return false;
352         return true;
353 }
354
355
356 bool getTokenValue(string const & str, char const * token, string & ret)
357 {
358         ret.erase();
359         size_t token_length = strlen(token);
360         string::size_type pos = str.find(token);
361
362         if (pos == string::npos || pos + token_length + 1 >= str.length()
363                 || str[pos + token_length] != '=')
364                 return false;
365         pos += token_length + 1;
366         char ch = str[pos];
367         if (ch != '"' && ch != '\'') { // only read till next space
368                 ret += ch;
369                 ch = ' ';
370         }
371         while (pos < str.length() - 1 && str[++pos] != ch)
372                 ret += str[pos];
373
374         return true;
375 }
376
377
378 bool getTokenValue(string const & str, char const * token, docstring & ret)
379 {
380         string tmp;
381         bool const success = getTokenValue(str, token, tmp);
382         ret = from_utf8(tmp);
383         return success;
384 }
385
386
387 bool getTokenValue(string const & str, char const * token, int & num)
388 {
389         string tmp;
390         num = 0;
391         if (!getTokenValue(str, token, tmp))
392                 return false;
393         num = convert<int>(tmp);
394         return true;
395 }
396
397
398 bool getTokenValue(string const & str, char const * token, LyXAlignment & num)
399 {
400         string tmp;
401         return getTokenValue(str, token, tmp) && string2type(tmp, num);
402 }
403
404
405 bool getTokenValue(string const & str, char const * token,
406                                    Tabular::VAlignment & num)
407 {
408         string tmp;
409         return getTokenValue(str, token, tmp) && string2type(tmp, num);
410 }
411
412
413 bool getTokenValue(string const & str, char const * token,
414                                    Tabular::BoxType & num)
415 {
416         string tmp;
417         return getTokenValue(str, token, tmp) && string2type(tmp, num);
418 }
419
420
421 bool getTokenValue(string const & str, char const * token, bool & flag)
422 {
423         // set the flag always to false as this should be the default for bools
424         // not in the file-format.
425         flag = false;
426         string tmp;
427         return getTokenValue(str, token, tmp) && string2type(tmp, flag);
428 }
429
430
431 bool getTokenValue(string const & str, char const * token, Length & len)
432 {
433         // set the lenght to be zero() as default as this it should be if not
434         // in the file format.
435         len = Length();
436         string tmp;
437         return getTokenValue(str, token, tmp) && isValidLength(tmp, &len);
438 }
439
440
441 bool getTokenValue(string const & str, char const * token, Length & len, bool & flag)
442 {
443         len = Length();
444         flag = false;
445         string tmp;
446         if (!getTokenValue(str, token, tmp))
447                 return false;
448         if (tmp == "default") {
449                 flag = true;
450                 return  true;
451         }
452         return isValidLength(tmp, &len);
453 }
454
455
456 void l_getline(istream & is, string & str)
457 {
458         str.erase();
459         while (str.empty()) {
460                 getline(is, str);
461                 if (!str.empty() && str[str.length() - 1] == '\r')
462                         str.erase(str.length() - 1);
463         }
464 }
465
466 } // namespace
467
468
469 string const featureAsString(Tabular::Feature feature)
470 {
471         TabularFeature * end = tabularFeature +
472                 sizeof(tabularFeature) / sizeof(TabularFeature);
473         TabularFeature * it = std::find_if(tabularFeature, end,
474                                            FeatureEqual(feature));
475         return (it == end) ? string() : it->feature;
476 }
477
478
479
480 /////////////////////////////////////////////////////////////////////
481 //
482 // Tabular
483 //
484 /////////////////////////////////////////////////////////////////////
485
486
487 Tabular::cellstruct::cellstruct(BufferParams const & bp)
488         : cellno(0),
489           width_of_cell(0),
490           multicolumn(Tabular::CELL_NORMAL),
491           alignment(LYX_ALIGN_CENTER),
492           valignment(LYX_VALIGN_TOP),
493           top_line(true),
494           bottom_line(false),
495           left_line(true),
496           right_line(false),
497           usebox(BOX_NONE),
498           rotate(false),
499           inset(new InsetText(bp))
500 {}
501
502
503 Tabular::cellstruct::cellstruct(cellstruct const & cs)
504         : cellno(cs.cellno),
505           width_of_cell(cs.width_of_cell),
506           multicolumn(cs.multicolumn),
507           alignment(cs.alignment),
508           valignment(cs.valignment),
509           top_line(cs.top_line),
510           bottom_line(cs.bottom_line),
511           left_line(cs.left_line),
512           right_line(cs.right_line),
513           usebox(cs.usebox),
514           rotate(cs.rotate),
515           align_special(cs.align_special),
516           p_width(cs.p_width),
517           inset(dynamic_cast<InsetText*>(cs.inset->clone()))
518 {}
519
520
521 Tabular::cellstruct & Tabular::cellstruct::operator=(cellstruct cs)
522 {
523         swap(cs);
524         return *this;
525 }
526
527
528 void Tabular::cellstruct::swap(cellstruct & rhs)
529 {
530         std::swap(cellno, rhs.cellno);
531         std::swap(width_of_cell, rhs.width_of_cell);
532         std::swap(multicolumn, rhs.multicolumn);
533         std::swap(alignment, rhs.alignment);
534         std::swap(valignment, rhs.valignment);
535         std::swap(top_line, rhs.top_line);
536         std::swap(bottom_line, rhs.bottom_line);
537         std::swap(left_line, rhs.left_line);
538         std::swap(right_line, rhs.right_line);
539         std::swap(usebox, rhs.usebox);
540         std::swap(rotate, rhs.rotate);
541         std::swap(align_special, rhs.align_special);
542         p_width.swap(rhs.p_width);
543         inset.swap(rhs.inset);
544 }
545
546
547 Tabular::rowstruct::rowstruct()
548         : ascent_of_row(0),
549           descent_of_row(0),
550           top_line(true),
551           bottom_line(false),
552           top_space_default(false),
553           bottom_space_default(false),
554           interline_space_default(false),
555           endhead(false),
556           endfirsthead(false),
557           endfoot(false),
558           endlastfoot(false),
559           newpage(false)
560 {}
561
562
563 Tabular::columnstruct::columnstruct()
564         : alignment(LYX_ALIGN_CENTER),
565           valignment(LYX_VALIGN_TOP),
566           left_line(true),
567           right_line(false),
568           width_of_column(0)
569 {
570 }
571
572
573 Tabular::ltType::ltType()
574         : topDL(false),
575           bottomDL(false),
576           empty(false)
577 {}
578
579
580 Tabular::Tabular(BufferParams const & bp, row_type rows_arg,
581                        col_type columns_arg)
582 {
583         init(bp, rows_arg, columns_arg);
584 }
585
586
587 // activates all lines and sets all widths to 0
588 void Tabular::init(BufferParams const & bp, row_type rows_arg,
589                       col_type columns_arg)
590 {
591         rows_    = rows_arg;
592         columns_ = columns_arg;
593         row_info = row_vector(rows_);
594         column_info = column_vector(columns_);
595         cell_info = cell_vvector(rows_, cell_vector(columns_, cellstruct(bp)));
596         row_info.reserve(10);
597         column_info.reserve(10);
598         cell_info.reserve(100);
599         fixCellNums();
600         for (row_type i = 0; i < rows_; ++i)
601                 cell_info[i].back().right_line = true;
602         row_info.back().bottom_line = true;
603         row_info.front().bottom_line = true;
604         column_info.back().right_line = true;
605         is_long_tabular = false;
606         rotate = false;
607         use_booktabs = false;
608 }
609
610
611 void Tabular::fixCellNums()
612 {
613         idx_type cellno = 0;
614         for (row_type i = 0; i < rows_; ++i) {
615                 for (col_type j = 0; j < columns_; ++j) {
616                         // When debugging it can be nice to set
617                         // this to true.
618                         cell_info[i][j].inset->setDrawFrame(false);
619                         cell_info[i][j].cellno = cellno++;
620                 }
621                 cell_info[i].back().right_line = true;
622         }
623
624         set_row_column_number_info();
625 }
626
627
628 void Tabular::appendRow(BufferParams const & bp, idx_type const cell)
629 {
630         ++rows_;
631
632         row_type const row = row_of_cell(cell);
633
634         row_vector::iterator rit = row_info.begin() + row;
635         row_info.insert(rit, rowstruct());
636         // now set the values of the row before
637         row_info[row] = row_info[row + 1];
638
639         cell_vvector old(rows_ - 1);
640         for (row_type i = 0; i < rows_ - 1; ++i)
641                 swap(cell_info[i], old[i]);
642
643         cell_info = cell_vvector(rows_, cell_vector(columns_, cellstruct(bp)));
644
645         for (row_type i = 0; i <= row; ++i)
646                 swap(cell_info[i], old[i]);
647         for (row_type i = row + 2; i < rows_; ++i)
648                 swap(cell_info[i], old[i - 1]);
649
650         if (bp.trackChanges)
651                 for (col_type j = 0; j < columns_; ++j)
652                         cell_info[row + 1][j].inset->setChange(Change(Change::INSERTED));
653
654         set_row_column_number_info();
655 }
656
657
658 void Tabular::deleteRow(row_type const row)
659 {
660         // Not allowed to delete last row
661         if (rows_ == 1)
662                 return;
663
664         row_info.erase(row_info.begin() + row);
665         cell_info.erase(cell_info.begin() + row);
666         --rows_;
667         fixCellNums();
668 }
669
670
671 void Tabular::copyRow(BufferParams const & bp, row_type const row)
672 {
673         ++rows_;
674
675         row_info.insert(row_info.begin() + row, row_info[row]);
676         cell_info.insert(cell_info.begin() + row, cell_info[row]);
677
678         if (bp.trackChanges)
679                 for (col_type j = 0; j < columns_; ++j)
680                         cell_info[row + 1][j].inset->setChange(Change(Change::INSERTED));
681
682         set_row_column_number_info();
683 }
684
685
686 void Tabular::appendColumn(BufferParams const & bp, idx_type const cell)
687 {
688         ++columns_;
689
690         col_type const column = column_of_cell(cell);
691         column_vector::iterator cit = column_info.begin() + column + 1;
692         column_info.insert(cit, columnstruct());
693         // set the column values of the column before
694         column_info[column + 1] = column_info[column];
695
696         for (row_type i = 0; i < rows_; ++i) {
697                 cell_info[i].insert(cell_info[i].begin() + column + 1, cellstruct(bp));
698
699                 // care about multicolumns
700                 if (cell_info[i][column + 1].multicolumn == CELL_BEGIN_OF_MULTICOLUMN)
701                         cell_info[i][column + 1].multicolumn = CELL_PART_OF_MULTICOLUMN;
702
703                 if (column + 2 >= columns_
704                     || cell_info[i][column + 2].multicolumn != CELL_PART_OF_MULTICOLUMN)
705                         cell_info[i][column + 1].multicolumn = Tabular::CELL_NORMAL;
706         }
707         //++column;
708         for (row_type i = 0; i < rows_; ++i) {
709                 cell_info[i][column + 1].inset->clear();
710                 if (bp.trackChanges)
711                         cell_info[i][column + 1].inset->setChange(Change(Change::INSERTED));
712         }
713         fixCellNums();
714 }
715
716
717 void Tabular::deleteColumn(col_type const column)
718 {
719         // Not allowed to delete last column
720         if (columns_ == 1)
721                 return;
722
723         column_info.erase(column_info.begin() + column);
724         for (row_type i = 0; i < rows_; ++i) {
725                 // Care about multicolumn cells
726                 if (column + 1 < columns_ &&
727                     cell_info[i][column].multicolumn == CELL_BEGIN_OF_MULTICOLUMN &&
728                     cell_info[i][column + 1].multicolumn == CELL_PART_OF_MULTICOLUMN) {
729                         cell_info[i][column + 1].multicolumn = CELL_BEGIN_OF_MULTICOLUMN;
730                 }
731                 cell_info[i].erase(cell_info[i].begin() + column);
732         }
733         --columns_;
734         fixCellNums();
735 }
736
737
738 void Tabular::copyColumn(BufferParams const & bp, col_type const column)
739 {
740         ++columns_;
741
742         column_info.insert(column_info.begin() + column, column_info[column]);
743
744         for (row_type i = 0; i < rows_; ++i)
745                 cell_info[i].insert(cell_info[i].begin() + column, cell_info[i][column]);
746
747         if (bp.trackChanges)
748                 for (row_type i = 0; i < rows_; ++i)
749                         cell_info[i][column + 1].inset->setChange(Change(Change::INSERTED));
750         fixCellNums();
751 }
752
753
754 void Tabular::set_row_column_number_info()
755 {
756         numberofcells = 0;
757         // Count only non-multicol cells plus begin multicol
758         // cells, ignore non-begin multicol cells:
759         for (row_type row = 0; row < rows_; ++row) {
760                 for (col_type column = 0; column < columns_; ++column) {
761                         if (cell_info[row][column].multicolumn
762                                 != Tabular::CELL_PART_OF_MULTICOLUMN)
763                                 ++numberofcells;
764                         BOOST_ASSERT(numberofcells != 0);
765                         cell_info[row][column].cellno =
766                                 numberofcells - 1;
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 Inset * InsetTabular::clone() const
2903 {
2904         return 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         // FIXME: As the full backrgound is painted in drawSelection(),
3017         // we have no choice but to do a full repaint for the Text cells.
3018         pi.full_repaint = true;
3019
3020         resetPos(bv->cursor());
3021
3022         x += scx_;
3023         x += ADD_TO_TABULAR_WIDTH;
3024
3025         idx_type idx = 0;
3026         first_visible_cell = Tabular::npos;
3027         for (row_type i = 0; i < tabular.rows(); ++i) {
3028                 int nx = x;
3029                 int const a = tabular.getAscentOfRow(i);
3030                 int const d = tabular.getDescentOfRow(i);
3031                 idx = tabular.getCellNumber(i, 0);
3032                 for (col_type j = 0; j < tabular.columns(); ++j) {
3033                         if (tabular.isPartOfMultiColumn(i, j))
3034                                 continue;
3035                         if (first_visible_cell == Tabular::npos)
3036                                 first_visible_cell = idx;
3037
3038                         int const cx = nx + tabular.getBeginningOfTextInCell(idx);
3039                         if (nx + tabular.getWidthOfColumn(idx) < 0
3040                             || nx > bv->workWidth()
3041                             || y + d < 0
3042                             || y - a > bv->workHeight()) {
3043                                 pi.pain.setDrawingEnabled(false);
3044                                 cell(idx)->draw(pi, cx, y);
3045                                 drawCellLines(pi.pain, nx, y, i, idx, pi.erased_);
3046                                 pi.pain.setDrawingEnabled(true);
3047                         } else {
3048                                 cell(idx)->draw(pi, cx, y);
3049                                 drawCellLines(pi.pain, nx, y, i, idx, pi.erased_);
3050                         }
3051                         nx += tabular.getWidthOfColumn(idx);
3052                         ++idx;
3053                 }
3054
3055                 if (i + 1 < tabular.rows())
3056                         y += d + tabular.getAscentOfRow(i + 1) +
3057                                 tabular.getAdditionalHeight(i + 1);
3058         }
3059 }
3060
3061
3062 void InsetTabular::drawSelection(PainterInfo & pi, int x, int y) const
3063 {
3064         setPosCache(pi, x, y);
3065
3066         Cursor & cur = pi.base.bv->cursor();
3067
3068         x += scx_ + ADD_TO_TABULAR_WIDTH;
3069
3070         // FIXME: it is wrong to completely paint the background
3071         // if we want to do single row painting.
3072
3073         // Paint background of current tabular
3074         int const w = tabular.getWidthOfTabular();
3075         int const h = tabular.getHeightOfTabular();
3076         int yy = y - tabular.getAscentOfRow(0);
3077         pi.pain.fillRectangle(x, yy, w, h, backgroundColor());
3078
3079         if (!cur.selection())
3080                 return;
3081         if (!ptr_cmp(&cur.inset(), this))
3082                 return;
3083
3084         //resetPos(cur);
3085
3086
3087         if (tablemode(cur)) {
3088                 row_type rs, re;
3089                 col_type cs, ce;
3090                 getSelection(cur, rs, re, cs, ce);
3091                 y -= tabular.getAscentOfRow(0);
3092                 for (row_type j = 0; j < tabular.rows(); ++j) {
3093                         int const a = tabular.getAscentOfRow(j);
3094                         int const h = a + tabular.getDescentOfRow(j);
3095                         int xx = x;
3096                         y += tabular.getAdditionalHeight(j);
3097                         for (col_type i = 0; i < tabular.columns(); ++i) {
3098                                 if (tabular.isPartOfMultiColumn(j, i))
3099                                         continue;
3100                                 idx_type const cell =
3101                                         tabular.getCellNumber(j, i);
3102                                 int const w = tabular.getWidthOfColumn(cell);
3103                                 if (i >= cs && i <= ce && j >= rs && j <= re)
3104                                         pi.pain.fillRectangle(xx, y, w, h,
3105                                                               Color::selection);
3106                                 xx += w;
3107                         }
3108                         y += h;
3109                 }
3110
3111         } else {
3112                 x += getCellXPos(cur.idx());
3113                 x += tabular.getBeginningOfTextInCell(cur.idx());
3114                 cell(cur.idx())->drawSelection(pi, x, 0 /* ignored */);
3115         }
3116 }
3117
3118
3119 void InsetTabular::drawCellLines(Painter & pain, int x, int y,
3120                                  row_type row, idx_type cell, bool erased) const
3121 {
3122         int x2 = x + tabular.getWidthOfColumn(cell);
3123         bool on_off = false;
3124         Color::color col = Color::tabularline;
3125         Color::color onoffcol = Color::tabularonoffline;
3126
3127         if (erased) {
3128                 col = Color::deletedtext;
3129                 onoffcol = Color::deletedtext;
3130         }
3131
3132         if (!tabular.topAlreadyDrawn(cell)) {
3133                 on_off = !tabular.topLine(cell);
3134                 pain.line(x, y - tabular.getAscentOfRow(row),
3135                           x2, y -  tabular.getAscentOfRow(row),
3136                           on_off ? onoffcol : col,
3137                           on_off ? Painter::line_onoffdash : Painter::line_solid);
3138         }
3139         on_off = !tabular.bottomLine(cell);
3140         pain.line(x, y + tabular.getDescentOfRow(row),
3141                   x2, y + tabular.getDescentOfRow(row),
3142                   on_off ? onoffcol : col,
3143                   on_off ? Painter::line_onoffdash : Painter::line_solid);
3144         if (!tabular.leftAlreadyDrawn(cell)) {
3145                 on_off = !tabular.leftLine(cell);
3146                 pain.line(x, y -  tabular.getAscentOfRow(row),
3147                           x, y +  tabular.getDescentOfRow(row),
3148                           on_off ? onoffcol : col,
3149                           on_off ? Painter::line_onoffdash : Painter::line_solid);
3150         }
3151         on_off = !tabular.rightLine(cell);
3152         pain.line(x2 - tabular.getAdditionalWidth(cell),
3153                   y -  tabular.getAscentOfRow(row),
3154                   x2 - tabular.getAdditionalWidth(cell),
3155                   y +  tabular.getDescentOfRow(row),
3156                   on_off ? onoffcol : col,
3157                   on_off ? Painter::line_onoffdash : Painter::line_solid);
3158 }
3159
3160
3161 docstring const InsetTabular::editMessage() const
3162 {
3163         return _("Opened table");
3164 }
3165
3166
3167 void InsetTabular::edit(Cursor & cur, bool left)
3168 {
3169         //lyxerr << "InsetTabular::edit: " << this << endl;
3170         finishUndo();
3171         cur.selection() = false;
3172         cur.push(*this);
3173         if (left) {
3174                 if (isRightToLeft(cur))
3175                         cur.idx() = tabular.getLastCellInRow(0);
3176                 else
3177                         cur.idx() = 0;
3178                 cur.pit() = 0;
3179                 cur.pos() = 0;
3180         } else {
3181                 if (isRightToLeft(cur))
3182                         cur.idx() = tabular.getFirstCellInRow(tabular.rows() - 1);
3183                 else
3184                         cur.idx() = tabular.getNumberOfCells() - 1;
3185                 cur.pit() = 0;
3186                 cur.pos() = cur.lastpos(); // FIXME crude guess
3187         }
3188         // FIXME: this accesses the position cache before it is initialized
3189         //resetPos(cur);
3190         //cur.bv().fitCursor();
3191 }
3192
3193
3194 void InsetTabular::updateLabels(Buffer const & buf, ParIterator const & it)
3195 {
3196         // In a longtable, tell captions what the current float is
3197         Counters & cnts = buf.params().getTextClass().counters();
3198         string const saveflt = cnts.current_float();
3199         if (tabular.isLongTabular())
3200                 cnts.current_float("table");
3201
3202         ParIterator it2 = it;
3203         it2.forwardPos();
3204         size_t const end = it2.nargs();
3205         for ( ; it2.idx() < end; it2.top().forwardIdx())
3206                 lyx::updateLabels(buf, it2);
3207
3208         //reset afterwards
3209         if (tabular.isLongTabular())
3210                 cnts.current_float(saveflt);
3211 }
3212
3213
3214 void InsetTabular::doDispatch(Cursor & cur, FuncRequest & cmd)
3215 {
3216         LYXERR(Debug::DEBUG) << "# InsetTabular::doDispatch: cmd: " << cmd
3217                              << "\n  cur:" << cur << endl;
3218         CursorSlice sl = cur.top();
3219         Cursor & bvcur = cur.bv().cursor();
3220
3221         switch (cmd.action) {
3222
3223         case LFUN_MOUSE_PRESS:
3224                 //lyxerr << "# InsetTabular::MousePress\n" << cur.bv().cursor() << endl;
3225
3226                 // do not reset cursor/selection if we have selected
3227                 // some cells (bug 2715).
3228                 if (cmd.button() == mouse_button::button3
3229                     && &bvcur.selBegin().inset() == this 
3230                     && tablemode(bvcur)) 
3231                         ;
3232                 else
3233                         // Let InsetText do it
3234                         cell(cur.idx())->dispatch(cur, cmd);
3235                 break;
3236         case LFUN_MOUSE_MOTION:
3237                 //lyxerr << "# InsetTabular::MouseMotion\n" << bvcur << endl;
3238                 if (cmd.button() == mouse_button::button1) {
3239                         // only accept motions to places not deeper nested than the real anchor
3240                         if (bvcur.anchor_.hasPart(cur)) {
3241                                 // only update if selection changes
3242                                 if (bvcur.idx() == cur.idx() &&
3243                                         !(bvcur.anchor_.idx() == cur.idx() && bvcur.pos() != cur.pos()))
3244                                         cur.noUpdate();
3245                                 setCursorFromCoordinates(cur, cmd.x, cmd.y);
3246                                 bvcur.setCursor(cur);
3247                                 bvcur.selection() = true;
3248                         } else
3249                                 cur.undispatched();
3250                 }
3251                 break;
3252
3253         case LFUN_MOUSE_RELEASE:
3254                 //lyxerr << "# InsetTabular::MouseRelease\n" << bvcur << endl;
3255                 if (cmd.button() == mouse_button::button3)
3256                         InsetTabularMailer(*this).showDialog(&cur.bv());
3257                 break;
3258
3259         case LFUN_CELL_BACKWARD:
3260                 movePrevCell(cur);
3261                 cur.selection() = false;
3262                 break;
3263
3264         case LFUN_CELL_FORWARD:
3265                 moveNextCell(cur);
3266                 cur.selection() = false;
3267                 break;
3268
3269         case LFUN_CHAR_FORWARD_SELECT:
3270         case LFUN_CHAR_FORWARD:
3271                 cell(cur.idx())->dispatch(cur, cmd);
3272                 if (!cur.result().dispatched()) {
3273                         isRightToLeft(cur) ? movePrevCell(cur) : moveNextCell(cur);
3274                         if (sl == cur.top())
3275                                 cmd = FuncRequest(LFUN_FINISHED_RIGHT);
3276                         else
3277                                 cur.dispatched();
3278                 }
3279                 break;
3280
3281         case LFUN_CHAR_BACKWARD_SELECT:
3282         case LFUN_CHAR_BACKWARD:
3283                 cell(cur.idx())->dispatch(cur, cmd);
3284                 if (!cur.result().dispatched()) {
3285                         isRightToLeft(cur) ? moveNextCell(cur) : movePrevCell(cur);
3286                         if (sl == cur.top())
3287                                 cmd = FuncRequest(LFUN_FINISHED_LEFT);
3288                         else
3289                                 cur.dispatched();
3290                 }
3291                 break;
3292
3293         case LFUN_DOWN_SELECT:
3294         case LFUN_DOWN:
3295                 cell(cur.idx())->dispatch(cur, cmd);
3296                 cur.dispatched(); // override the cell's decision
3297                 if (sl == cur.top())
3298                         // if our Text didn't do anything to the cursor
3299                         // then we try to put the cursor into the cell below
3300                         // setting also the right targetX.
3301                         if (tabular.row_of_cell(cur.idx()) != tabular.rows() - 1) {
3302                                 cur.idx() = tabular.getCellBelow(cur.idx());
3303                                 cur.pit() = 0;
3304                                 TextMetrics const & tm =
3305                                         cur.bv().textMetrics(cell(cur.idx())->getText(0));
3306                                 cur.pos() = tm.x2pos(cur.pit(), 0, cur.targetX());
3307                         }
3308                 if (sl == cur.top()) {
3309                         // we trick it to go to the RIGHT after leaving the
3310                         // tabular.
3311                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
3312                         cur.undispatched();
3313                 }
3314                 break;
3315
3316         case LFUN_UP_SELECT:
3317         case LFUN_UP:
3318                 cell(cur.idx())->dispatch(cur, cmd);
3319                 cur.dispatched(); // override the cell's decision
3320                 if (sl == cur.top())
3321                         // if our Text didn't do anything to the cursor
3322                         // then we try to put the cursor into the cell above
3323                         // setting also the right targetX.
3324                         if (tabular.row_of_cell(cur.idx()) != 0) {
3325                                 cur.idx() = tabular.getCellAbove(cur.idx());
3326                                 cur.pit() = cur.lastpit();
3327                                 Text const * text = cell(cur.idx())->getText(0);
3328                                 TextMetrics const & tm = cur.bv().textMetrics(text);
3329                                 ParagraphMetrics const & pm =
3330                                         tm.parMetrics(cur.lastpit());
3331                                 cur.pos() = tm.x2pos(cur.pit(), pm.rows().size()-1, cur.targetX());
3332                         }
3333                 if (sl == cur.top()) {
3334                         cmd = FuncRequest(LFUN_UP);
3335                         cur.undispatched();
3336                 }
3337                 break;
3338
3339 //      case LFUN_SCREEN_DOWN: {
3340 //              //if (hasSelection())
3341 //              //      cur.selection() = false;
3342 //              col_type const col = tabular.column_of_cell(cur.idx());
3343 //              int const t =   cur.bv().top_y() + cur.bv().height();
3344 //              if (t < yo() + tabular.getHeightOfTabular()) {
3345 //                      cur.bv().scrollDocView(t);
3346 //                      cur.idx() = tabular.getCellBelow(first_visible_cell) + col;
3347 //              } else {
3348 //                      cur.idx() = tabular.getFirstCellInRow(tabular.rows() - 1) + col;
3349 //              }
3350 //              cur.par() = 0;
3351 //              cur.pos() = 0;
3352 //              break;
3353 //      }
3354 //
3355 //      case LFUN_SCREEN_UP: {
3356 //              //if (hasSelection())
3357 //              //      cur.selection() = false;
3358 //              col_type const col = tabular.column_of_cell(cur.idx());
3359 //              int const t =   cur.bv().top_y() + cur.bv().height();
3360 //              if (yo() < 0) {
3361 //                      cur.bv().scrollDocView(t);
3362 //                      if (yo() > 0)
3363 //                              cur.idx() = col;
3364 //                      else
3365 //                              cur.idx() = tabular.getCellBelow(first_visible_cell) + col;
3366 //              } else {
3367 //                      cur.idx() = col;
3368 //              }
3369 //              cur.par() = cur.lastpar();
3370 //              cur.pos() = cur.lastpos();
3371 //              break;
3372 //      }
3373
3374         case LFUN_LAYOUT_TABULAR:
3375                 InsetTabularMailer(*this).showDialog(&cur.bv());
3376                 break;
3377
3378         case LFUN_INSET_DIALOG_UPDATE:
3379                 InsetTabularMailer(*this).updateDialog(&cur.bv());
3380                 break;
3381
3382         case LFUN_TABULAR_FEATURE:
3383                 if (!tabularFeatures(cur, to_utf8(cmd.argument())))
3384                         cur.undispatched();
3385                 break;
3386
3387         // insert file functions
3388         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
3389         case LFUN_FILE_INSERT_PLAINTEXT: {
3390                 // FIXME UNICODE
3391                 docstring const tmpstr = getContentsOfPlaintextFile(&cur.bv(), to_utf8(cmd.argument()), false);
3392                 if (!tmpstr.empty() && !insertPlaintextString(cur.bv(), tmpstr, false))
3393                         cur.undispatched();
3394                 break;
3395         }
3396
3397         case LFUN_CUT:
3398                 if (tablemode(cur)) {
3399                         if (copySelection(cur)) {
3400                                 recordUndoInset(cur, Undo::DELETE);
3401                                 cutSelection(cur);
3402                         }
3403                 }
3404                 else
3405                         cell(cur.idx())->dispatch(cur, cmd);
3406                 break;
3407
3408         case LFUN_CHAR_DELETE_BACKWARD:
3409         case LFUN_CHAR_DELETE_FORWARD:
3410                 if (tablemode(cur)) {
3411                         recordUndoInset(cur, Undo::DELETE);
3412                         cutSelection(cur);
3413                 }
3414                 else
3415                         cell(cur.idx())->dispatch(cur, cmd);
3416                 break;
3417
3418         case LFUN_COPY:
3419                 if (!cur.selection())
3420                         break;
3421                 if (tablemode(cur)) {
3422                         finishUndo();
3423                         copySelection(cur);
3424                 } else
3425                         cell(cur.idx())->dispatch(cur, cmd);
3426                 break;
3427
3428         case LFUN_CLIPBOARD_PASTE:
3429         case LFUN_PRIMARY_SELECTION_PASTE: {
3430                 docstring const clip = (cmd.action == LFUN_CLIPBOARD_PASTE) ?
3431                         theClipboard().getAsText() :
3432                         theSelection().get();
3433                 if (clip.empty())
3434                         break;
3435                 // pass to InsertPlaintextString, but
3436                 // only if we have multi-cell content
3437                 if (clip.find_first_of(from_ascii("\t\n")) != docstring::npos) {
3438                         if (insertPlaintextString(cur.bv(), clip, false)) {
3439                                 // content has been replaced,
3440                                 // so cursor might be invalid
3441                                 cur.pos() = cur.lastpos();
3442                                 bvcur.setCursor(cur);
3443                                 break;
3444                         }
3445                 }
3446                 // Let the cell handle normal text
3447                 cell(cur.idx())->dispatch(cur, cmd);
3448                 break;
3449         }
3450
3451         case LFUN_PASTE:
3452                 if (tabularStackDirty() && theClipboard().isInternal()) {
3453                         recordUndoInset(cur, Undo::INSERT);
3454                         pasteClipboard(cur);
3455                         break;
3456                 }
3457                 cell(cur.idx())->dispatch(cur, cmd);
3458                 break;
3459
3460         case LFUN_FONT_EMPH:
3461         case LFUN_FONT_BOLD:
3462         case LFUN_FONT_ROMAN:
3463         case LFUN_FONT_NOUN:
3464         case LFUN_FONT_ITAL:
3465         case LFUN_FONT_FRAK:
3466         case LFUN_FONT_CODE:
3467         case LFUN_FONT_SANS:
3468         case LFUN_FONT_FREE_APPLY:
3469         case LFUN_FONT_FREE_UPDATE:
3470         case LFUN_FONT_SIZE:
3471         case LFUN_FONT_UNDERLINE:
3472         case LFUN_LANGUAGE:
3473         case LFUN_WORD_CAPITALIZE:
3474         case LFUN_WORD_UPCASE:
3475         case LFUN_WORD_LOWCASE:
3476         case LFUN_CHARS_TRANSPOSE:
3477                 if (tablemode(cur)) {
3478                         row_type rs, re;
3479                         col_type cs, ce;
3480                         getSelection(cur, rs, re, cs, ce);
3481                         Cursor tmpcur = cur;
3482                         for (row_type i = rs; i <= re; ++i) {
3483                                 for (col_type j = cs; j <= ce; ++j) {
3484                                         // cursor follows cell:
3485                                         tmpcur.idx() = tabular.getCellNumber(i, j);
3486                                         // select this cell only:
3487                                         tmpcur.pit() = 0;
3488                                         tmpcur.pos() = 0;
3489                                         tmpcur.resetAnchor();
3490                                         tmpcur.pit() = tmpcur.lastpit();
3491                                         tmpcur.pos() = tmpcur.top().lastpos();
3492                                         tmpcur.setCursor(tmpcur);
3493                                         tmpcur.setSelection();
3494                                         cell(tmpcur.idx())->dispatch(tmpcur, cmd);
3495                                 }
3496                         }
3497                         break;
3498                 } else {
3499                         cell(cur.idx())->dispatch(cur, cmd);
3500                         break;
3501                 }
3502         default:
3503                 // we try to handle this event in the insets dispatch function.
3504                 cell(cur.idx())->dispatch(cur, cmd);
3505                 break;
3506         }
3507 }
3508
3509
3510 // function sets an object as defined in func_status.h:
3511 // states OK, Unknown, Disabled, On, Off.
3512 bool InsetTabular::getStatus(Cursor & cur, FuncRequest const & cmd,
3513         FuncStatus & status) const
3514 {
3515         switch (cmd.action) {
3516         case LFUN_TABULAR_FEATURE: {
3517                 int action = Tabular::LAST_ACTION;
3518                 int i = 0;
3519                 for (; tabularFeature[i].action != Tabular::LAST_ACTION; ++i) {
3520                         string const tmp = tabularFeature[i].feature;
3521                         if (tmp == to_utf8(cmd.argument()).substr(0, tmp.length())) {
3522                                 action = tabularFeature[i].action;
3523                                 break;
3524                         }
3525                 }
3526                 if (action == Tabular::LAST_ACTION) {
3527                         status.clear();
3528                         status.unknown(true);
3529                         return true;
3530                 }
3531
3532                 string const argument
3533                         = ltrim(to_utf8(cmd.argument()).substr(tabularFeature[i].feature.length()));
3534
3535                 row_type sel_row_start = 0;
3536                 row_type sel_row_end = 0;
3537                 col_type sel_col_start = 0;
3538                 col_type sel_col_end = 0;
3539                 Tabular::ltType dummyltt;
3540                 bool flag = true;
3541
3542                 getSelection(cur, sel_row_start, sel_row_end, sel_col_start, sel_col_end);
3543
3544                 switch (action) {
3545                 case Tabular::SET_PWIDTH:
3546                 case Tabular::SET_MPWIDTH:
3547                 case Tabular::SET_SPECIAL_COLUMN:
3548                 case Tabular::SET_SPECIAL_MULTI:
3549                 case Tabular::APPEND_ROW:
3550                 case Tabular::APPEND_COLUMN:
3551                 case Tabular::DELETE_ROW:
3552                 case Tabular::DELETE_COLUMN:
3553                 case Tabular::COPY_ROW:
3554                 case Tabular::COPY_COLUMN:
3555                 case Tabular::SET_ALL_LINES:
3556                 case Tabular::UNSET_ALL_LINES:
3557                 case Tabular::SET_TOP_SPACE:
3558                 case Tabular::SET_BOTTOM_SPACE:
3559                 case Tabular::SET_INTERLINE_SPACE:
3560                         status.clear();
3561                         return true;
3562
3563                 case Tabular::MULTICOLUMN:
3564                         status.setOnOff(tabular.isMultiColumn(cur.idx()));
3565                         break;
3566
3567                 case Tabular::M_TOGGLE_LINE_TOP:
3568                         flag = false;
3569                 case Tabular::TOGGLE_LINE_TOP:
3570                         status.setOnOff(tabular.topLine(cur.idx(), flag));
3571                         break;
3572
3573                 case Tabular::M_TOGGLE_LINE_BOTTOM:
3574                         flag = false;
3575                 case Tabular::TOGGLE_LINE_BOTTOM:
3576                         status.setOnOff(tabular.bottomLine(cur.idx(), flag));
3577                         break;
3578
3579                 case Tabular::M_TOGGLE_LINE_LEFT:
3580                         flag = false;
3581                 case Tabular::TOGGLE_LINE_LEFT:
3582                         status.setOnOff(tabular.leftLine(cur.idx(), flag));
3583                         break;
3584
3585                 case Tabular::M_TOGGLE_LINE_RIGHT:
3586                         flag = false;
3587                 case Tabular::TOGGLE_LINE_RIGHT:
3588                         status.setOnOff(tabular.rightLine(cur.idx(), flag));
3589                         break;
3590
3591                 case Tabular::M_ALIGN_LEFT:
3592                         flag = false;
3593                 case Tabular::ALIGN_LEFT:
3594                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_LEFT);
3595                         break;
3596
3597                 case Tabular::M_ALIGN_RIGHT:
3598                         flag = false;
3599                 case Tabular::ALIGN_RIGHT:
3600                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_RIGHT);
3601                         break;
3602
3603                 case Tabular::M_ALIGN_CENTER:
3604                         flag = false;
3605                 case Tabular::ALIGN_CENTER:
3606                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_CENTER);
3607                         break;
3608
3609                 case Tabular::ALIGN_BLOCK:
3610                         status.enabled(!tabular.getPWidth(cur.idx()).zero());
3611                         status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_BLOCK);
3612                         break;
3613
3614                 case Tabular::M_VALIGN_TOP:
3615                         flag = false;
3616                 case Tabular::VALIGN_TOP:
3617                         status.setOnOff(
3618                                 tabular.getVAlignment(cur.idx(), flag) == Tabular::LYX_VALIGN_TOP);
3619                         break;
3620
3621                 case Tabular::M_VALIGN_BOTTOM:
3622                         flag = false;
3623                 case Tabular::VALIGN_BOTTOM:
3624                         status.setOnOff(
3625                                 tabular.getVAlignment(cur.idx(), flag) == Tabular::LYX_VALIGN_BOTTOM);
3626                         break;
3627
3628                 case Tabular::M_VALIGN_MIDDLE:
3629                         flag = false;
3630                 case Tabular::VALIGN_MIDDLE:
3631                         status.setOnOff(
3632                                 tabular.getVAlignment(cur.idx(), flag) == Tabular::LYX_VALIGN_MIDDLE);
3633                         break;
3634
3635                 case Tabular::SET_LONGTABULAR:
3636                         status.setOnOff(tabular.isLongTabular());
3637                         break;
3638
3639                 case Tabular::UNSET_LONGTABULAR:
3640                         status.setOnOff(!tabular.isLongTabular());
3641                         break;
3642
3643                 case Tabular::TOGGLE_ROTATE_TABULAR:
3644                 case Tabular::SET_ROTATE_TABULAR:
3645                         status.setOnOff(tabular.getRotateTabular());
3646                         break;
3647
3648                 case Tabular::UNSET_ROTATE_TABULAR:
3649                         status.setOnOff(!tabular.getRotateTabular());
3650                         break;
3651
3652                 case Tabular::TOGGLE_ROTATE_CELL:
3653                 case Tabular::SET_ROTATE_CELL:
3654                         status.setOnOff(!oneCellHasRotationState(false,
3655                                 sel_row_start, sel_row_end, sel_col_start, sel_col_end));
3656                         break;
3657
3658                 case Tabular::UNSET_ROTATE_CELL:
3659                         status.setOnOff(!oneCellHasRotationState(true,
3660                                 sel_row_start, sel_row_end, sel_col_start, sel_col_end));
3661                         break;
3662
3663                 case Tabular::SET_USEBOX:
3664                         status.setOnOff(convert<int>(argument) == tabular.getUsebox(cur.idx()));
3665                         break;
3666
3667                 case Tabular::SET_LTFIRSTHEAD:
3668                         status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
3669                         break;
3670
3671                 case Tabular::UNSET_LTFIRSTHEAD:
3672                         status.setOnOff(!tabular.getRowOfLTHead(sel_row_start, dummyltt));
3673                         break;
3674
3675                 case Tabular::SET_LTHEAD:
3676                         status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
3677                         break;
3678
3679                 case Tabular::UNSET_LTHEAD:
3680                         status.setOnOff(!tabular.getRowOfLTHead(sel_row_start, dummyltt));
3681                         break;
3682
3683                 case Tabular::SET_LTFOOT:
3684                         status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
3685                         break;
3686
3687                 case Tabular::UNSET_LTFOOT:
3688                         status.setOnOff(!tabular.getRowOfLTFoot(sel_row_start, dummyltt));
3689                         break;
3690
3691                 case Tabular::SET_LTLASTFOOT:
3692                         status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
3693                         break;
3694
3695                 case Tabular::UNSET_LTLASTFOOT:
3696                         status.setOnOff(!tabular.getRowOfLTFoot(sel_row_start, dummyltt));
3697                         break;
3698
3699                 case Tabular::SET_LTNEWPAGE:
3700                         status.setOnOff(tabular.getLTNewPage(sel_row_start));
3701                         break;
3702
3703                 case Tabular::SET_BOOKTABS:
3704                         status.setOnOff(tabular.useBookTabs());
3705                         break;
3706
3707                 case Tabular::UNSET_BOOKTABS:
3708                         status.setOnOff(!tabular.useBookTabs());
3709                         break;
3710
3711                 default:
3712                         status.clear();
3713                         status.enabled(false);
3714                         break;
3715                 }
3716                 return true;
3717         }
3718
3719         // These are only enabled inside tabular
3720         case LFUN_CELL_BACKWARD:
3721         case LFUN_CELL_FORWARD:
3722                 status.enabled(true);
3723                 return true;
3724
3725         // disable these with multiple cells selected
3726         case LFUN_INSET_INSERT:
3727         case LFUN_TABULAR_INSERT:
3728         case LFUN_CHARSTYLE_INSERT:
3729         case LFUN_FLOAT_INSERT:
3730         case LFUN_FLOAT_WIDE_INSERT:
3731         case LFUN_FOOTNOTE_INSERT:
3732         case LFUN_MARGINALNOTE_INSERT:
3733         case LFUN_MATH_INSERT:
3734         case LFUN_MATH_MODE:
3735         case LFUN_MATH_MUTATE:
3736         case LFUN_MATH_DISPLAY:
3737         case LFUN_NOTE_INSERT:
3738         case LFUN_OPTIONAL_INSERT:
3739         case LFUN_BOX_INSERT:
3740         case LFUN_BRANCH_INSERT:
3741         case LFUN_WRAP_INSERT:
3742         case LFUN_ERT_INSERT: {
3743                 if (tablemode(cur)) {
3744                         status.enabled(false);
3745                         return true;
3746                 } else
3747                         return cell(cur.idx())->getStatus(cur, cmd, status);
3748         }
3749
3750         // disable in non-fixed-width cells
3751         case LFUN_BREAK_LINE:
3752         case LFUN_BREAK_PARAGRAPH:
3753         case LFUN_BREAK_PARAGRAPH_KEEP_LAYOUT:
3754         case LFUN_BREAK_PARAGRAPH_SKIP: {
3755                 if (tabular.getPWidth(cur.idx()).zero()) {
3756                         status.enabled(false);
3757                         return true;
3758                 } else
3759                         return cell(cur.idx())->getStatus(cur, cmd, status);
3760         }
3761
3762         case LFUN_PASTE:
3763                 if (tabularStackDirty() && theClipboard().isInternal()) {
3764                         status.enabled(true);
3765                         return true;
3766                 } else
3767                         return cell(cur.idx())->getStatus(cur, cmd, status);
3768
3769         case LFUN_INSET_MODIFY:
3770                 if (translate(cmd.getArg(0)) == TABULAR_CODE) {
3771                         status.enabled(true);
3772                         return true;
3773                 }
3774                 // Fall through
3775
3776         default:
3777                 // we try to handle this event in the insets dispatch function.
3778                 return cell(cur.idx())->getStatus(cur, cmd, status);
3779         }
3780 }
3781
3782
3783 int InsetTabular::latex(Buffer const & buf, odocstream & os,
3784                         OutputParams const & runparams) const
3785 {
3786         return tabular.latex(buf, os, runparams);
3787 }
3788
3789
3790 int InsetTabular::plaintext(Buffer const & buf, odocstream & os,
3791                             OutputParams const & runparams) const
3792 {
3793         os << '\n'; // output table on a new line
3794         int const dp = runparams.linelen > 0 ? runparams.depth : 0;
3795         tabular.plaintext(buf, os, runparams, dp, false, 0);
3796         return PLAINTEXT_NEWLINE;
3797 }
3798
3799
3800 int InsetTabular::docbook(Buffer const & buf, odocstream & os,
3801                           OutputParams const & runparams) const
3802 {
3803         int ret = 0;
3804         Inset * master = 0;
3805
3806         // FIXME: Why not pass a proper DocIterator here?
3807 #if 0
3808         // if the table is inside a float it doesn't need the informaltable
3809         // wrapper. Search for it.
3810         for (master = owner(); master; master = master->owner())
3811                 if (master->lyxCode() == Inset::FLOAT_CODE)
3812                         break;
3813 #endif
3814
3815         if (!master) {
3816                 os << "<informaltable>";
3817                 ++ret;
3818         }
3819         ret += tabular.docbook(buf, os, runparams);
3820         if (!master) {
3821                 os << "</informaltable>";
3822                 ++ret;
3823         }
3824         return ret;
3825 }
3826
3827
3828 void InsetTabular::validate(LaTeXFeatures & features) const
3829 {
3830         tabular.validate(features);
3831 }
3832
3833
3834 shared_ptr<InsetText const> InsetTabular::cell(idx_type idx) const
3835 {
3836         return tabular.getCellInset(idx);
3837 }
3838
3839
3840 shared_ptr<InsetText> InsetTabular::cell(idx_type idx)
3841 {
3842         return tabular.getCellInset(idx);
3843 }
3844
3845
3846 void InsetTabular::cursorPos(BufferView const & bv,
3847                 CursorSlice const & sl, bool boundary, int & x, int & y) const
3848 {
3849         cell(sl.idx())->cursorPos(bv, sl, boundary, x, y);
3850
3851         // y offset     correction
3852         int const row = tabular.row_of_cell(sl.idx());
3853         for (int i = 0; i <= row; ++i) {
3854                 if (i != 0) {
3855                         y += tabular.getAscentOfRow(i);
3856                         y += tabular.getAdditionalHeight(i);
3857                 }
3858                 if (i != row)
3859                         y += tabular.getDescentOfRow(i);
3860         }
3861
3862         // x offset correction
3863         int const col = tabular.column_of_cell(sl.idx());
3864         int idx = tabular.getCellNumber(row, 0);
3865         for (int j = 0; j < col; ++j) {
3866                 if (tabular.isPartOfMultiColumn(row, j))
3867                         continue;
3868                 x += tabular.getWidthOfColumn(idx);
3869                 ++idx;
3870         }
3871         x += tabular.getBeginningOfTextInCell(idx);
3872         x += ADD_TO_TABULAR_WIDTH;
3873         x += scx_;
3874 }
3875
3876
3877 int InsetTabular::dist(BufferView & bv, idx_type const cell, int x, int y) const
3878 {
3879         int xx = 0;
3880         int yy = 0;
3881         Inset const & inset = *tabular.getCellInset(cell);
3882         Point o = bv.coordCache().getInsets().xy(&inset);
3883         int const xbeg = o.x_ - tabular.getBeginningOfTextInCell(cell);
3884         int const xend = xbeg + tabular.getWidthOfColumn(cell);
3885         row_type const row = tabular.row_of_cell(cell);
3886         int const ybeg = o.y_ - tabular.getAscentOfRow(row) -
3887                          tabular.getAdditionalHeight(row);
3888         int const yend = o.y_ + tabular.getDescentOfRow(row);
3889
3890         if (x < xbeg)
3891                 xx = xbeg - x;
3892         else if (x > xend)
3893                 xx = x - xend;
3894
3895         if (y < ybeg)
3896                 yy = ybeg - y;
3897         else if (y > yend)
3898                 yy = y - yend;
3899
3900         //lyxerr << " xbeg=" << xbeg << "  xend=" << xend
3901         //       << " ybeg=" << ybeg << " yend=" << yend
3902         //       << " xx=" << xx << " yy=" << yy
3903         //       << " dist=" << xx + yy << endl;
3904         return xx + yy;
3905 }
3906
3907
3908 Inset * InsetTabular::editXY(Cursor & cur, int x, int y)
3909 {
3910         //lyxerr << "InsetTabular::editXY: " << this << endl;
3911         cur.selection() = false;
3912         cur.push(*this);
3913         cur.idx() = getNearestCell(cur.bv(), x, y);
3914         resetPos(cur);
3915         return cur.bv().textMetrics(&cell(cur.idx())->text_).editXY(cur, x, y);
3916 }
3917
3918
3919 void InsetTabular::setCursorFromCoordinates(Cursor & cur, int x, int y) const
3920 {
3921         cur.idx() = getNearestCell(cur.bv(), x, y);
3922         cur.bv().textMetrics(&cell(cur.idx())->text_).setCursorFromCoordinates(cur, x, y);
3923 }
3924
3925
3926 InsetTabular::idx_type InsetTabular::getNearestCell(BufferView & bv, int x, int y) const
3927 {
3928         idx_type idx_min = 0;
3929         int dist_min = std::numeric_limits<int>::max();
3930         for (idx_type i = 0, n = nargs(); i != n; ++i) {
3931                 if (bv.coordCache().getInsets().has(tabular.getCellInset(i).get())) {
3932                         int const d = dist(bv, i, x, y);
3933                         if (d < dist_min) {
3934                                 dist_min = d;
3935                                 idx_min = i;
3936                         }
3937                 }
3938         }
3939         return idx_min;
3940 }
3941
3942
3943 int InsetTabular::getCellXPos(idx_type const cell) const
3944 {
3945         idx_type c = cell;
3946
3947         for (; !tabular.isFirstCellInRow(c); --c)
3948                 ;
3949         int lx = 0;
3950         for (; c < cell; ++c)
3951                 lx += tabular.getWidthOfColumn(c);
3952
3953         return lx;
3954 }
3955
3956
3957 void InsetTabular::resetPos(Cursor & cur) const
3958 {
3959         BufferView & bv = cur.bv();
3960         int const maxwidth = bv.workWidth();
3961
3962         if (&cur.inset() != this) {
3963                 scx_ = 0;
3964         } else {
3965                 int const X1 = 0;
3966                 int const X2 = maxwidth;
3967                 int const offset = ADD_TO_TABULAR_WIDTH + 2;
3968                 int const x1 = xo(cur.bv()) + getCellXPos(cur.idx()) + offset;
3969                 int const x2 = x1 + tabular.getWidthOfColumn(cur.idx());
3970
3971                 if (x1 < X1)
3972                         scx_ = X1 + 20 - x1;
3973                 else if (x2 > X2)
3974                         scx_ = X2 - 20 - x2;
3975                 else
3976                         scx_ = 0;
3977         }
3978
3979         cur.updateFlags(Update::Force | Update::FitCursor);
3980 }
3981
3982
3983 void InsetTabular::moveNextCell(Cursor & cur)
3984 {
3985         if (isRightToLeft(cur)) {
3986                 if (tabular.isFirstCellInRow(cur.idx())) {
3987                         row_type const row = tabular.row_of_cell(cur.idx());
3988                         if (row == tabular.rows() - 1)
3989                                 return;
3990                         cur.idx() = tabular.getCellBelow(tabular.getLastCellInRow(row));
3991                 } else {
3992                         if (cur.idx() == 0)
3993                                 return;
3994                         --cur.idx();
3995                 }
3996         } else {
3997                 if (tabular.isLastCell(cur.idx()))
3998                         return;
3999                 ++cur.idx();
4000         }
4001         cur.pit() = 0;
4002         cur.pos() = 0;
4003         resetPos(cur);
4004 }
4005
4006
4007 void InsetTabular::movePrevCell(Cursor & cur)
4008 {
4009         if (isRightToLeft(cur)) {
4010                 if (tabular.isLastCellInRow(cur.idx())) {
4011                         row_type const row = tabular.row_of_cell(cur.idx());
4012                         if (row == 0)
4013                                 return;
4014                         cur.idx() = tabular.getFirstCellInRow(row);
4015                         cur.idx() = tabular.getCellAbove(cur.idx());
4016                 } else {
4017                         if (tabular.isLastCell(cur.idx()))
4018                                 return;
4019                         ++cur.idx();
4020                 }
4021         } else {
4022                 if (cur.idx() == 0) // first cell
4023                         return;
4024                 --cur.idx();
4025         }
4026         cur.pit() = cur.lastpit();
4027         cur.pos() = cur.lastpos();
4028
4029         // FIXME: this accesses the position cache before it is initialized
4030         //resetPos(cur);
4031 }
4032
4033
4034 bool InsetTabular::tabularFeatures(Cursor & cur, string const & what)
4035 {
4036         Tabular::Feature action = Tabular::LAST_ACTION;
4037
4038         int i = 0;
4039         for (; tabularFeature[i].action != Tabular::LAST_ACTION; ++i) {
4040                 string const tmp = tabularFeature[i].feature;
4041
4042                 if (tmp == what.substr(0, tmp.length())) {
4043                         //if (!compare(tabularFeatures[i].feature.c_str(), what.c_str(),
4044                         //tabularFeatures[i].feature.length()))
4045                         action = tabularFeature[i].action;
4046                         break;
4047                 }
4048         }
4049         if (action == Tabular::LAST_ACTION)
4050                 return false;
4051
4052         string const val =
4053                 ltrim(what.substr(tabularFeature[i].feature.length()));
4054         tabularFeatures(cur, action, val);
4055         return true;
4056 }
4057
4058
4059 static void checkLongtableSpecial(Tabular::ltType & ltt,
4060                           string const & special, bool & flag)
4061 {
4062         if (special == "dl_above") {
4063                 ltt.topDL = flag;
4064                 ltt.set = false;
4065         } else if (special == "dl_below") {
4066                 ltt.bottomDL = flag;
4067                 ltt.set = false;
4068         } else if (special == "empty") {
4069                 ltt.empty = flag;
4070                 ltt.set = false;
4071         } else if (flag) {
4072                 ltt.empty = false;
4073                 ltt.set = true;
4074         }
4075 }
4076
4077 bool InsetTabular::oneCellHasRotationState(bool rotated,
4078                 row_type row_start, row_type row_end,
4079                 col_type col_start, col_type col_end) const {
4080
4081         for (row_type i = row_start; i <= row_end; ++i) {
4082                 for (col_type j = col_start; j <= col_end; ++j) {
4083                         if (tabular.getRotateCell(tabular.getCellNumber(i, j))
4084                                 == rotated) {
4085                                 return true;
4086                         }
4087                 }
4088         }
4089         return false;
4090 }
4091
4092 void InsetTabular::tabularFeatures(Cursor & cur,
4093         Tabular::Feature feature, string const & value)
4094 {
4095         BufferView & bv = cur.bv();
4096         col_type sel_col_start;
4097         col_type sel_col_end;
4098         row_type sel_row_start;
4099         row_type sel_row_end;
4100         bool setLines = false;
4101         LyXAlignment setAlign = LYX_ALIGN_LEFT;
4102         Tabular::VAlignment setVAlign = Tabular::LYX_VALIGN_TOP;
4103
4104         switch (feature) {
4105
4106         case Tabular::M_ALIGN_LEFT:
4107         case Tabular::ALIGN_LEFT:
4108                 setAlign = LYX_ALIGN_LEFT;
4109                 break;
4110
4111         case Tabular::M_ALIGN_RIGHT:
4112         case Tabular::ALIGN_RIGHT:
4113                 setAlign = LYX_ALIGN_RIGHT;
4114                 break;
4115
4116         case Tabular::M_ALIGN_CENTER:
4117         case Tabular::ALIGN_CENTER:
4118                 setAlign = LYX_ALIGN_CENTER;
4119                 break;
4120
4121         case Tabular::ALIGN_BLOCK:
4122                 setAlign = LYX_ALIGN_BLOCK;
4123                 break;
4124
4125         case Tabular::M_VALIGN_TOP:
4126         case Tabular::VALIGN_TOP:
4127                 setVAlign = Tabular::LYX_VALIGN_TOP;
4128                 break;
4129
4130         case Tabular::M_VALIGN_BOTTOM:
4131         case Tabular::VALIGN_BOTTOM:
4132                 setVAlign = Tabular::LYX_VALIGN_BOTTOM;
4133                 break;
4134
4135         case Tabular::M_VALIGN_MIDDLE:
4136         case Tabular::VALIGN_MIDDLE:
4137                 setVAlign = Tabular::LYX_VALIGN_MIDDLE;
4138                 break;
4139
4140         default:
4141                 break;
4142         }
4143
4144         recordUndoInset(cur, Undo::ATOMIC);
4145
4146         getSelection(cur, sel_row_start, sel_row_end, sel_col_start, sel_col_end);
4147         row_type const row = tabular.row_of_cell(cur.idx());
4148         col_type const column = tabular.column_of_cell(cur.idx());
4149         bool flag = true;
4150         Tabular::ltType ltt;
4151
4152         switch (feature) {
4153
4154         case Tabular::SET_PWIDTH: {
4155                 Length const len(value);
4156                 tabular.setColumnPWidth(cur, cur.idx(), len);
4157                 if (len.zero()
4158                     && tabular.getAlignment(cur.idx(), true) == LYX_ALIGN_BLOCK)
4159                         tabularFeatures(cur, Tabular::ALIGN_CENTER, string());
4160                 break;
4161         }
4162
4163         case Tabular::SET_MPWIDTH:
4164                 tabular.setMColumnPWidth(cur, cur.idx(), Length(value));
4165                 break;
4166
4167         case Tabular::SET_SPECIAL_COLUMN:
4168         case Tabular::SET_SPECIAL_MULTI:
4169                 tabular.setAlignSpecial(cur.idx(), from_utf8(value), feature);
4170                 break;
4171
4172         case Tabular::APPEND_ROW:
4173                 // append the row into the tabular
4174                 tabular.appendRow(bv.buffer().params(), cur.idx());
4175                 break;
4176
4177         case Tabular::APPEND_COLUMN:
4178                 // append the column into the tabular
4179                 tabular.appendColumn(bv.buffer().params(), cur.idx());
4180                 cur.idx() = tabular.getCellNumber(row, column);
4181                 break;
4182
4183         case Tabular::DELETE_ROW:
4184                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4185                         tabular.deleteRow(sel_row_start);
4186                 if (sel_row_start >= tabular.rows())
4187                         --sel_row_start;
4188                 cur.idx() = tabular.getCellNumber(sel_row_start, column);
4189                 cur.pit() = 0;
4190                 cur.pos() = 0;
4191                 cur.selection() = false;
4192                 break;
4193
4194         case Tabular::DELETE_COLUMN:
4195                 for (col_type i = sel_col_start; i <= sel_col_end; ++i)
4196                         tabular.deleteColumn(sel_col_start);
4197                 if (sel_col_start >= tabular.columns())
4198                         --sel_col_start;
4199                 cur.idx() = tabular.getCellNumber(row, sel_col_start);
4200                 cur.pit() = 0;
4201                 cur.pos() = 0;
4202                 cur.selection() = false;
4203                 break;
4204
4205         case Tabular::COPY_ROW:
4206                 tabular.copyRow(bv.buffer().params(), row);
4207                 break;
4208
4209         case Tabular::COPY_COLUMN:
4210                 tabular.copyColumn(bv.buffer().params(), column);
4211                 cur.idx() = tabular.getCellNumber(row, column);
4212                 break;
4213
4214         case Tabular::M_TOGGLE_LINE_TOP:
4215                 flag = false;
4216         case Tabular::TOGGLE_LINE_TOP: {
4217                 bool lineSet = !tabular.topLine(cur.idx(), flag);
4218                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4219                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4220                                 tabular.setTopLine(
4221                                         tabular.getCellNumber(i, j),
4222                                         lineSet, flag);
4223                 break;
4224         }
4225
4226         case Tabular::M_TOGGLE_LINE_BOTTOM:
4227                 flag = false;
4228         case Tabular::TOGGLE_LINE_BOTTOM: {
4229                 bool lineSet = !tabular.bottomLine(cur.idx(), flag);
4230                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4231                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4232                                 tabular.setBottomLine(
4233                                         tabular.getCellNumber(i, j),
4234                                         lineSet,
4235                                         flag);
4236                 break;
4237         }
4238
4239         case Tabular::M_TOGGLE_LINE_LEFT:
4240                 flag = false;
4241         case Tabular::TOGGLE_LINE_LEFT: {
4242                 bool lineSet = !tabular.leftLine(cur.idx(), flag);
4243                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4244                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4245                                 tabular.setLeftLine(
4246                                         tabular.getCellNumber(i,j),
4247                                         lineSet,
4248                                         flag);
4249                 break;
4250         }
4251
4252         case Tabular::M_TOGGLE_LINE_RIGHT:
4253                 flag = false;
4254         case Tabular::TOGGLE_LINE_RIGHT: {
4255                 bool lineSet = !tabular.rightLine(cur.idx(), flag);
4256                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4257                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4258                                 tabular.setRightLine(
4259                                         tabular.getCellNumber(i,j),
4260                                         lineSet,
4261                                         flag);
4262                 break;
4263         }
4264
4265         case Tabular::M_ALIGN_LEFT:
4266         case Tabular::M_ALIGN_RIGHT:
4267         case Tabular::M_ALIGN_CENTER:
4268                 flag = false;
4269         case Tabular::ALIGN_LEFT:
4270         case Tabular::ALIGN_RIGHT:
4271         case Tabular::ALIGN_CENTER:
4272         case Tabular::ALIGN_BLOCK:
4273                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4274                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4275                                 tabular.setAlignment(
4276                                         tabular.getCellNumber(i, j),
4277                                         setAlign,
4278                                         flag);
4279                 break;
4280
4281         case Tabular::M_VALIGN_TOP:
4282         case Tabular::M_VALIGN_BOTTOM:
4283         case Tabular::M_VALIGN_MIDDLE:
4284                 flag = false;
4285         case Tabular::VALIGN_TOP:
4286         case Tabular::VALIGN_BOTTOM:
4287         case Tabular::VALIGN_MIDDLE:
4288                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4289                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4290                                 tabular.setVAlignment(
4291                                         tabular.getCellNumber(i, j),
4292                                         setVAlign, flag);
4293                 break;
4294
4295         case Tabular::MULTICOLUMN: {
4296                 if (sel_row_start != sel_row_end) {
4297                         // FIXME: Need I say it ? This is horrible.
4298                         // FIXME UNICODE
4299                         Alert::error(_("Error setting multicolumn"),
4300                                      _("You cannot set multicolumn vertically."));
4301                         return;
4302                 }
4303                 if (!cur.selection()) {
4304                         // just multicol for one single cell
4305                         // check whether we are completely in a multicol
4306                         if (tabular.isMultiColumn(cur.idx()))
4307                                 tabular.unsetMultiColumn(cur.idx());
4308                         else
4309                                 tabular.setMultiColumn(&bv.buffer(), cur.idx(), 1);
4310                         break;
4311                 }
4312                 // we have a selection so this means we just add all this
4313                 // cells to form a multicolumn cell
4314                 idx_type const s_start = cur.selBegin().idx();
4315                 idx_type const s_end = cur.selEnd().idx();
4316                 tabular.setMultiColumn(&bv.buffer(), s_start, s_end - s_start + 1);
4317                 cur.idx() = s_start;
4318                 cur.pit() = 0;
4319                 cur.pos() = 0;
4320                 cur.selection() = false;
4321                 break;
4322         }
4323
4324         case Tabular::SET_ALL_LINES:
4325                 setLines = true;
4326         case Tabular::UNSET_ALL_LINES:
4327                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4328                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4329                                 tabular.setAllLines(
4330                                         tabular.getCellNumber(i,j), setLines);
4331                 break;
4332
4333         case Tabular::SET_LONGTABULAR:
4334                 tabular.setLongTabular(true);
4335                 break;
4336
4337         case Tabular::UNSET_LONGTABULAR:
4338                 tabular.setLongTabular(false);
4339                 break;
4340
4341         case Tabular::SET_ROTATE_TABULAR:
4342                 tabular.setRotateTabular(true);
4343                 break;
4344
4345         case Tabular::UNSET_ROTATE_TABULAR:
4346                 tabular.setRotateTabular(false);
4347                 break;
4348
4349         case Tabular::TOGGLE_ROTATE_TABULAR:
4350                 tabular.setRotateTabular(!tabular.getRotateTabular());
4351                 break;
4352
4353         case Tabular::SET_ROTATE_CELL:
4354                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4355                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4356                                 tabular.setRotateCell(
4357                                         tabular.getCellNumber(i, j), true);
4358                 break;
4359
4360         case Tabular::UNSET_ROTATE_CELL:
4361                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4362                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4363                                 tabular.setRotateCell(
4364                                         tabular.getCellNumber(i, j), false);
4365                 break;
4366
4367         case Tabular::TOGGLE_ROTATE_CELL:
4368                 {
4369                 bool oneNotRotated = oneCellHasRotationState(false,
4370                         sel_row_start, sel_row_end, sel_col_start, sel_col_end);
4371
4372                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4373                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4374                                 tabular.setRotateCell(tabular.getCellNumber(i, j),
4375                                                                           oneNotRotated);
4376                 }
4377                 break;
4378
4379         case Tabular::SET_USEBOX: {
4380                 Tabular::BoxType val = Tabular::BoxType(convert<int>(value));
4381                 if (val == tabular.getUsebox(cur.idx()))
4382                         val = Tabular::BOX_NONE;
4383                 for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4384                         for (col_type j = sel_col_start; j <= sel_col_end; ++j)
4385                                 tabular.setUsebox(tabular.getCellNumber(i, j), val);
4386                 break;
4387         }
4388
4389         case Tabular::UNSET_LTFIRSTHEAD:
4390                 flag = false;
4391         case Tabular::SET_LTFIRSTHEAD:
4392                 tabular.getRowOfLTFirstHead(row, ltt);
4393                 checkLongtableSpecial(ltt, value, flag);
4394                 tabular.setLTHead(row, flag, ltt, true);
4395                 break;
4396
4397         case Tabular::UNSET_LTHEAD:
4398                 flag = false;
4399         case Tabular::SET_LTHEAD:
4400                 tabular.getRowOfLTHead(row, ltt);
4401                 checkLongtableSpecial(ltt, value, flag);
4402                 tabular.setLTHead(row, flag, ltt, false);
4403                 break;
4404
4405         case Tabular::UNSET_LTFOOT:
4406                 flag = false;
4407         case Tabular::SET_LTFOOT:
4408                 tabular.getRowOfLTFoot(row, ltt);
4409                 checkLongtableSpecial(ltt, value, flag);
4410                 tabular.setLTFoot(row, flag, ltt, false);
4411                 break;
4412
4413         case Tabular::UNSET_LTLASTFOOT:
4414                 flag = false;
4415         case Tabular::SET_LTLASTFOOT:
4416                 tabular.getRowOfLTLastFoot(row, ltt);
4417                 checkLongtableSpecial(ltt, value, flag);
4418                 tabular.setLTFoot(row, flag, ltt, true);
4419                 break;
4420
4421         case Tabular::SET_LTNEWPAGE:
4422                 tabular.setLTNewPage(row, !tabular.getLTNewPage(row));
4423                 break;
4424
4425         case Tabular::SET_BOOKTABS:
4426                 tabular.setBookTabs(true);
4427                 break;
4428
4429         case Tabular::UNSET_BOOKTABS:
4430                 tabular.setBookTabs(false);
4431                 break;
4432
4433         case Tabular::SET_TOP_SPACE: {
4434                 Length len;
4435                 if (value == "default")
4436                         for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4437                                 tabular.row_info[i].top_space_default = true;
4438                 else if (isValidLength(value, &len))
4439                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4440                                 tabular.row_info[i].top_space_default = false;
4441                                 tabular.row_info[i].top_space = len;
4442                         }
4443                 else
4444                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4445                                 tabular.row_info[i].top_space_default = false;
4446                                 tabular.row_info[i].top_space = len;
4447                         }
4448                 break;
4449         }
4450
4451         case Tabular::SET_BOTTOM_SPACE: {
4452                 Length len;
4453                 if (value == "default")
4454                         for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4455                                 tabular.row_info[i].bottom_space_default = true;
4456                 else if (isValidLength(value, &len))
4457                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4458                                 tabular.row_info[i].bottom_space_default = false;
4459                                 tabular.row_info[i].bottom_space = len;
4460                         }
4461                 else
4462                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4463                                 tabular.row_info[i].bottom_space_default = false;
4464                                 tabular.row_info[i].bottom_space = len;
4465                         }
4466                 break;
4467         }
4468
4469         case Tabular::SET_INTERLINE_SPACE: {
4470                 Length len;
4471                 if (value == "default")
4472                         for (row_type i = sel_row_start; i <= sel_row_end; ++i)
4473                                 tabular.row_info[i].interline_space_default = true;
4474                 else if (isValidLength(value, &len))
4475                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4476                                 tabular.row_info[i].interline_space_default = false;
4477                                 tabular.row_info[i].interline_space = len;
4478                         }
4479                 else
4480                         for (row_type i = sel_row_start; i <= sel_row_end; ++i) {
4481                                 tabular.row_info[i].interline_space_default = false;
4482                                 tabular.row_info[i].interline_space = len;
4483                         }
4484                 break;
4485         }
4486
4487         // dummy stuff just to avoid warnings
4488         case Tabular::LAST_ACTION:
4489                 break;
4490         }
4491 }
4492
4493
4494 bool InsetTabular::showInsetDialog(BufferView * bv) const
4495 {
4496         InsetTabularMailer(*this).showDialog(bv);
4497         return true;
4498 }
4499
4500
4501 void InsetTabular::openLayoutDialog(BufferView * bv) const
4502 {
4503         InsetTabularMailer(*this).showDialog(bv);
4504 }
4505
4506
4507 bool InsetTabular::copySelection(Cursor & cur)
4508 {
4509         if (!cur.selection())
4510                 return false;
4511
4512         row_type rs, re;
4513         col_type cs, ce;
4514         getSelection(cur, rs, re, cs, ce);
4515
4516         paste_tabular.reset(new Tabular(tabular));
4517
4518         for (row_type i = 0; i < rs; ++i)
4519                 paste_tabular->deleteRow(0);
4520
4521         row_type const rows = re - rs + 1;
4522         while (paste_tabular->rows() > rows)
4523                 paste_tabular->deleteRow(rows);
4524
4525         paste_tabular->setTopLine(0, true, true);
4526         paste_tabular->setBottomLine(paste_tabular->getFirstCellInRow(rows - 1),
4527                                      true, true);
4528
4529         for (col_type i = 0; i < cs; ++i)
4530                 paste_tabular->deleteColumn(0);
4531
4532         col_type const columns = ce - cs + 1;
4533         while (paste_tabular->columns() > columns)
4534                 paste_tabular->deleteColumn(columns);
4535
4536         paste_tabular->setLeftLine(0, true, true);
4537         paste_tabular->setRightLine(paste_tabular->getLastCellInRow(0),
4538                                     true, true);
4539
4540         odocstringstream os;
4541         OutputParams const runparams(0);
4542         paste_tabular->plaintext(cur.buffer(), os, runparams, 0, true, '\t');
4543         // Needed for the "Edit->Paste recent" menu and the system clipboard.
4544         cap::copySelection(cur, os.str());
4545
4546         // mark tabular stack dirty
4547         // FIXME: this is a workaround for bug 1919. Should be removed for 1.5,
4548         // when we (hopefully) have a one-for-all paste mechanism.
4549         // This must be called after cap::copySelection.
4550         dirtyTabularStack(true);
4551
4552         return true;
4553 }
4554
4555
4556 bool InsetTabular::pasteClipboard(Cursor & cur)
4557 {
4558         if (!paste_tabular)
4559                 return false;
4560         col_type const actcol = tabular.column_of_cell(cur.idx());
4561         row_type const actrow = tabular.row_of_cell(cur.idx());
4562         for (row_type r1 = 0, r2 = actrow;
4563              r1 < paste_tabular->rows() && r2 < tabular.rows();
4564              ++r1, ++r2) {
4565                 for (col_type c1 = 0, c2 = actcol;
4566                     c1 < paste_tabular->columns() && c2 < tabular.columns();
4567                     ++c1, ++c2) {
4568                         if (paste_tabular->isPartOfMultiColumn(r1, c1) &&
4569                             tabular.isPartOfMultiColumn(r2, c2))
4570                                 continue;
4571                         if (paste_tabular->isPartOfMultiColumn(r1, c1)) {
4572                                 --c2;
4573                                 continue;
4574                         }
4575                         if (tabular.isPartOfMultiColumn(r2, c2)) {
4576                                 --c1;
4577                                 continue;
4578                         }
4579                         shared_ptr<InsetText> inset(
4580                                 new InsetText(*paste_tabular->getCellInset(r1, c1)));
4581                         tabular.setCellInset(r2, c2, inset);
4582                         // FIXME: change tracking (MG)
4583                         inset->setChange(Change(cur.buffer().params().trackChanges ?
4584                                                 Change::INSERTED : Change::UNCHANGED));
4585                         cur.pos() = 0;
4586                 }
4587         }
4588         return true;
4589 }
4590
4591
4592 void InsetTabular::cutSelection(Cursor & cur)
4593 {
4594         if (!cur.selection())
4595                 return;
4596
4597         row_type rs, re;
4598         col_type cs, ce;
4599         getSelection(cur, rs, re, cs, ce);
4600         for (row_type i = rs; i <= re; ++i) {
4601                 for (col_type j = cs; j <= ce; ++j) {
4602                         shared_ptr<InsetText> t
4603                                 = cell(tabular.getCellNumber(i, j));
4604                         if (cur.buffer().params().trackChanges)
4605                                 // FIXME: Change tracking (MG)
4606                                 t->setChange(Change(Change::DELETED));
4607                         else
4608                                 t->clear();
4609                 }
4610         }
4611
4612         // cursor position might be invalid now
4613         if (cur.pit() > cur.lastpit())
4614                 cur.pit() = cur.lastpit();
4615         if (cur.pos() > cur.lastpos())
4616                 cur.pos() = cur.lastpos();
4617         cur.clearSelection();
4618 }
4619
4620
4621 bool InsetTabular::isRightToLeft(Cursor & cur) const
4622 {
4623         BOOST_ASSERT(cur.depth() > 1);
4624         Paragraph const & parentpar = cur[cur.depth() - 2].paragraph();
4625         pos_type const parentpos = cur[cur.depth() - 2].pos();
4626         return parentpar.getFontSettings(cur.bv().buffer().params(),
4627                                          parentpos).language()->rightToLeft();
4628 }
4629
4630
4631 void InsetTabular::getSelection(Cursor & cur,
4632         row_type & rs, row_type & re, col_type & cs, col_type & ce) const
4633 {
4634         CursorSlice const & beg = cur.selBegin();
4635         CursorSlice const & end = cur.selEnd();
4636         cs = tabular.column_of_cell(beg.idx());
4637         ce = tabular.column_of_cell(end.idx());
4638         if (cs > ce) {
4639                 ce = cs;
4640                 cs = tabular.column_of_cell(end.idx());
4641         } else {
4642                 ce = tabular.right_column_of_cell(end.idx());
4643         }
4644
4645         rs = tabular.row_of_cell(beg.idx());
4646         re = tabular.row_of_cell(end.idx());
4647         if (rs > re)
4648                 swap(rs, re);
4649 }
4650
4651
4652 Text * InsetTabular::getText(int idx) const
4653 {
4654         return size_t(idx) < nargs() ? cell(idx)->getText(0) : 0;
4655 }
4656
4657
4658 void InsetTabular::setChange(Change const & change)
4659 {
4660         for (idx_type idx = 0; idx < nargs(); ++idx)
4661                 cell(idx)->setChange(change);
4662 }
4663
4664
4665 void InsetTabular::acceptChanges(BufferParams const & bparams)
4666 {
4667         for (idx_type idx = 0; idx < nargs(); ++idx)
4668                 cell(idx)->acceptChanges(bparams);
4669 }
4670
4671
4672 void InsetTabular::rejectChanges(BufferParams const & bparams)
4673 {
4674         for (idx_type idx = 0; idx < nargs(); ++idx)
4675                 cell(idx)->rejectChanges(bparams);
4676 }
4677
4678
4679 bool InsetTabular::forceDefaultParagraphs(idx_type cell) const
4680 {
4681         return tabular.getPWidth(cell).zero();
4682 }
4683
4684
4685 bool InsetTabular::insertPlaintextString(BufferView & bv, docstring const & buf,
4686                                      bool usePaste)
4687 {
4688         if (buf.length() <= 0)
4689                 return true;
4690
4691         Buffer const & buffer = bv.buffer();
4692
4693         col_type cols = 1;
4694         row_type rows = 1;
4695         col_type maxCols = 1;
4696         docstring::size_type const len = buf.length();
4697         docstring::size_type p = 0;
4698
4699         while (p < len &&
4700                (p = buf.find_first_of(from_ascii("\t\n"), p)) != docstring::npos) {
4701                 switch (buf[p]) {
4702                 case '\t':
4703                         ++cols;
4704                         break;
4705                 case '\n':
4706                         if (p + 1 < len)
4707                                 ++rows;
4708                         maxCols = max(cols, maxCols);
4709                         cols = 1;
4710                         break;
4711                 }
4712                 ++p;
4713         }
4714         maxCols = max(cols, maxCols);
4715         Tabular * loctab;
4716         idx_type cell = 0;
4717         col_type ocol = 0;
4718         row_type row = 0;
4719         if (usePaste) {
4720                 paste_tabular.reset(
4721                         new Tabular(buffer.params(), rows, maxCols));
4722                 loctab = paste_tabular.get();
4723                 cols = 0;
4724                 dirtyTabularStack(true);
4725         } else {
4726                 loctab = &tabular;
4727                 cell = bv.cursor().idx();
4728                 ocol = tabular.column_of_cell(cell);
4729                 row = tabular.row_of_cell(cell);
4730         }
4731
4732         docstring::size_type op = 0;
4733         idx_type const cells = loctab->getNumberOfCells();
4734         p = 0;
4735         cols = ocol;
4736         rows = loctab->rows();
4737         col_type const columns = loctab->columns();
4738
4739         while (cell < cells && p < len && row < rows &&
4740                (p = buf.find_first_of(from_ascii("\t\n"), p)) != docstring::npos)
4741         {
4742                 if (p >= len)
4743                         break;
4744                 switch (buf[p]) {
4745                 case '\t':
4746                         // we can only set this if we are not too far right
4747                         if (cols < columns) {
4748                                 shared_ptr<InsetText> inset = loctab->getCellInset(cell);
4749                                 Paragraph & par = inset->text_.getPar(0);
4750                                 Font const font = bv.textMetrics(&inset->text_).
4751                                         getDisplayFont(par, 0);
4752                                 inset->setText(buf.substr(op, p - op), font,
4753                                                buffer.params().trackChanges);
4754                                 ++cols;
4755                                 ++cell;
4756                         }
4757                         break;
4758                 case '\n':
4759                         // we can only set this if we are not too far right
4760                         if (cols < columns) {
4761                                 shared_ptr<InsetText> inset = tabular.getCellInset(cell);
4762                                 Paragraph & par = inset->text_.getPar(0);
4763                                 Font const font = bv.textMetrics(&inset->text_).
4764                                         getDisplayFont(par, 0);
4765                                 inset->setText(buf.substr(op, p - op), font,
4766                                                buffer.params().trackChanges);
4767                         }
4768                         cols = ocol;
4769                         ++row;
4770                         if (row < rows)
4771                                 cell = loctab->getCellNumber(row, cols);
4772                         break;
4773                 }
4774                 ++p;
4775                 op = p;
4776         }
4777         // check for the last cell if there is no trailing '\n'
4778         if (cell < cells && op < len) {
4779                 shared_ptr<InsetText> inset = loctab->getCellInset(cell);
4780                 Paragraph & par = inset->text_.getPar(0);
4781                 Font const font = bv.textMetrics(&inset->text_).getDisplayFont(par, 0);
4782                 inset->setText(buf.substr(op, len - op), font,
4783                         buffer.params().trackChanges);
4784         }
4785         return true;
4786 }
4787
4788
4789 void InsetTabular::addPreview(PreviewLoader & loader) const
4790 {
4791         row_type const rows = tabular.rows();
4792         col_type const columns = tabular.columns();
4793         for (row_type i = 0; i < rows; ++i) {
4794                 for (col_type j = 0; j < columns; ++j)
4795                         tabular.getCellInset(i, j)->addPreview(loader);
4796         }
4797 }
4798
4799
4800 bool InsetTabular::tablemode(Cursor & cur) const
4801 {
4802         return cur.selection() && cur.selBegin().idx() != cur.selEnd().idx();
4803 }
4804
4805
4806
4807
4808 string const InsetTabularMailer::name_("tabular");
4809
4810 InsetTabularMailer::InsetTabularMailer(InsetTabular const & inset)
4811         : inset_(const_cast<InsetTabular &>(inset))
4812 {}
4813
4814
4815 string const InsetTabularMailer::inset2string(Buffer const &) const
4816 {
4817         return params2string(inset_);
4818 }
4819
4820
4821 void InsetTabularMailer::string2params(string const & in, InsetTabular & inset)
4822 {
4823         istringstream data(in);
4824         Lexer lex(0,0);
4825         lex.setStream(data);
4826
4827         if (in.empty())
4828                 return;
4829
4830         string token;
4831         lex >> token;
4832         if (!lex || token != name_)
4833                 return print_mailer_error("InsetTabularMailer", in, 1,
4834                                           name_);
4835
4836         // This is part of the inset proper that is usually swallowed
4837         // by Buffer::readInset
4838         lex >> token;
4839         if (!lex || token != "Tabular")
4840                 return print_mailer_error("InsetTabularMailer", in, 2,
4841                                           "Tabular");
4842
4843         Buffer const & buffer = inset.buffer();
4844         inset.read(buffer, lex);
4845 }
4846
4847
4848 string const InsetTabularMailer::params2string(InsetTabular const & inset)
4849 {
4850         ostringstream data;
4851         data << name_ << ' ';
4852         inset.write(inset.buffer(), data);
4853         data << "\\end_inset\n";
4854         return data.str();
4855 }
4856
4857
4858 } // namespace lyx