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