]> git.lyx.org Git - features.git/blob - src/tabular.C
cc6744465c7b5e9472280d363243939d1ba1bed1
[features.git] / src / tabular.C
1 /* This file is part of
2  * ====================================================== 
3  * 
4  *           LyX, The Document Processor
5  *       
6  *           Copyright 2000 The LyX Team.
7  *
8  *           @author: Jürgen Vigna
9  *
10  * ====================================================== 
11  */
12
13 #include <config.h>
14
15 #ifdef __GNUG__
16 #pragma implementation
17 #endif
18
19 #include <algorithm>
20 #include <cstdlib>
21
22 #include "tabular.h"
23 #include "debug.h"
24 #include "vspace.h"
25 #include "layout.h"
26 #include "lyx_gui_misc.h"
27 #include "buffer.h"
28 #include "BufferView.h"
29 #include "Painter.h"
30 #include "LaTeXFeatures.h"
31 #include "support/lstrings.h"
32 #include "support/lyxmanip.h"
33 #include "insets/insettabular.h"
34 #include "insets/insettext.h"
35
36 using std::ostream;
37 using std::istream;
38 using std::getline;
39 using std::max;
40 using std::endl;
41 using std::vector;
42
43 static int const WIDTH_OF_LINE = 5;
44
45 /// Define a few methods for the inner structs
46
47 LyXTabular::cellstruct::cellstruct() 
48 {
49     cellno = 0;
50     width_of_cell = 0;
51     multicolumn = LyXTabular::CELL_NORMAL;
52     alignment = LYX_ALIGN_CENTER;
53     valignment = LYX_VALIGN_TOP;
54     top_line = true;
55     bottom_line = false;
56     left_line = true;
57     right_line = false;
58     usebox = BOX_NONE;
59     rotate = false;
60 }
61
62
63 LyXTabular::rowstruct::rowstruct() 
64 {
65     top_line = true;
66     bottom_line = false;
67     ascent_of_row = 0;
68     descent_of_row = 0;
69     newpage = false;
70 }
71
72
73 LyXTabular::columnstruct::columnstruct() 
74 {
75     left_line = true;
76     right_line = false;
77     alignment = LYX_ALIGN_CENTER;
78     valignment = LYX_VALIGN_TOP;
79     width_of_column = 0;
80 }
81
82
83 /* konstruktor */
84 LyXTabular::LyXTabular(InsetTabular * inset, int rows_arg, int columns_arg)
85 {
86     owner_ = inset;
87     Init(rows_arg, columns_arg);
88 }
89
90
91 LyXTabular::LyXTabular(InsetTabular * inset, LyXTabular const & lt)
92 {
93     owner_ = inset;
94     Init(lt.rows_, lt.columns_);
95 #warning Jürgen, can you make it the other way round. So that copy assignment depends on the copy constructor and not the other way. (Lgb)
96     operator=(lt);
97 }
98
99
100 LyXTabular::LyXTabular(Buffer const * buf, InsetTabular * inset, LyXLex & lex)
101 {
102     owner_ = inset;
103     Read(buf, lex);
104 }
105
106
107 LyXTabular & LyXTabular::operator=(LyXTabular const & lt)
108 {
109     // If this and lt is not of the same size we have a serious bug
110     // So then it is ok to throw an exception, or for now
111     // call abort()
112     Assert(rows_ == lt.rows_ && columns_ == lt.columns_);
113
114     cell_info = lt.cell_info;
115     row_info = lt.row_info;
116     column_info = lt.column_info;
117
118     // long tabular stuff
119     SetLongTabular(lt.is_long_tabular);
120     endhead = lt.endhead;
121     endfoot = lt.endfoot;
122     endfirsthead = lt.endfirsthead;
123     endlastfoot = lt.endlastfoot;
124
125     rotate = lt.rotate;
126
127     Reinit();
128     
129     return *this;
130 }
131
132
133 LyXTabular * LyXTabular::Clone(InsetTabular * inset)
134 {
135     LyXTabular * result = new LyXTabular(inset, *this);
136     // don't know if this is good but I need to Clone also
137     // the text-insets here, this is for the Undo-facility!
138     for (int i = 0; i < rows_; ++i) {
139         for (int j = 0; j < columns_; ++j) {
140             result->cell_info[i][j].inset = cell_info[i][j].inset;
141             result->cell_info[i][j].inset.setOwner(inset);
142         }
143     }
144     return result;
145 }
146
147
148 /* activates all lines and sets all widths to 0 */ 
149 void LyXTabular::Init(int rows_arg, int columns_arg)
150 {
151     rows_ = rows_arg;
152     columns_ = columns_arg;
153     row_info = row_vector(rows_, rowstruct());
154     column_info = column_vector(columns_, columnstruct());
155     cell_info = cell_vvector(rows_, cell_vector(columns_, cellstruct()));
156
157     int cellno = 0;
158     for (int i = 0; i < rows_; ++i) {
159         for (int j = 0; j < columns_; ++j) {
160             cell_info[i][j].inset.setOwner(owner_);
161             cell_info[i][j].inset.SetDrawFrame(0, InsetText::LOCKED);
162             cell_info[i][j].cellno = cellno++;
163         }
164         cell_info[i].back().right_line = true;
165     }
166     row_info.back().bottom_line = true;
167     row_info.front().bottom_line = true;
168
169     for (int i = 0; i < columns_; ++i) {
170         calculate_width_of_column(i);
171     }
172     column_info.back().right_line = true;
173    
174     calculate_width_of_tabular();
175
176     rowofcell = vector<int>();
177     columnofcell = vector<int>();
178     set_row_column_number_info();
179     is_long_tabular = false;
180     rotate = false;
181     endhead = 0;
182     endfirsthead = 0;
183     endfoot = 0;
184     endlastfoot = 0;
185 }
186
187
188 void LyXTabular::AppendRow(int cell)
189 {
190     ++rows_;
191    
192     int row = row_of_cell(cell);
193
194     row_vector::iterator rit = row_info.begin() + row;
195     row_info.insert(rit, rowstruct());
196
197 #if 0
198     cell_vvector::iterator cit = cell_info.begin() + row;
199     cell_info.insert(cit, vector<cellstruct>(columns_, cellstruct()));
200 #else
201     cell_vvector c_info = cell_vvector(rows_, cell_vector(columns_,
202                                                           cellstruct()));
203
204     for (int i = 0; i <= row; ++i) {
205         for (int j = 0; j < columns_; ++j) {
206             c_info[i][j] = cell_info[i][j];
207         }
208     }
209     for (int i = row + 1; i < rows_; ++i) {
210         for (int j = 0; j < columns_; ++j) {
211             c_info[i][j] = cell_info[i-1][j];
212         }
213     }
214     cell_info = c_info;
215     ++row;
216     for (int j = 0; j < columns_; ++j) {
217         cell_info[row][j].inset.clear();
218     }
219 #endif
220     Reinit();
221 }
222
223
224 void LyXTabular::DeleteRow(int row)
225 {
226     // Why make it so hard? (Lgb)
227     //if (!(rows_ - 1))
228     //return;
229     if (rows_ == 1) return; // Not allowed to delete last row
230         
231     row_info.erase(row_info.begin() + row); //&row_info[row]);
232     cell_info.erase(cell_info.begin() + row); //&cell_info[row]);
233     --rows_;
234     Reinit();
235 }
236
237
238 void LyXTabular::AppendColumn(int cell)
239 {
240     ++columns_;
241    
242     cell_vvector c_info = cell_vvector(rows_, cell_vector(columns_,
243                                                           cellstruct()));
244     int const column = column_of_cell(cell);
245     column_vector::iterator cit = column_info.begin() + column + 1;
246     column_info.insert(cit, columnstruct());
247
248     for (int i = 0; i < rows_; ++i) {
249         for (int j = 0; j <= column; ++j) {
250             c_info[i][j] = cell_info[i][j];
251         }
252         for (int j = column + 1; j < columns_; ++j) {
253             c_info[i][j] = cell_info[i][j - 1];
254         }
255         // care about multicolumns
256         if (cell_info[i][column + 1].multicolumn == CELL_BEGIN_OF_MULTICOLUMN) {
257             cell_info[i][column + 1].multicolumn = CELL_PART_OF_MULTICOLUMN;
258         }
259         if ((column + 1) == columns_ ||
260             cell_info[i][column + 2].multicolumn != CELL_PART_OF_MULTICOLUMN) {
261             cell_info[i][column + 1].multicolumn = LyXTabular::CELL_NORMAL;
262         }
263     }
264     cell_info = c_info;
265     //++column;
266     for (int i = 0; i < rows_; ++i) {
267         //cell_info[i][column].inset.clear();
268         cell_info[i][column + 1].inset.clear();
269     }
270     Reinit();
271 }
272
273
274 void LyXTabular::DeleteColumn(int column)
275 {
276     // Similar to DeleteRow
277     //if (!(columns_ - 1))
278     //return;
279     if (columns_ == 1) return; // Not allowed to delete last column
280          
281     column_info.erase(column_info.begin() + column);
282     for (int i = 0; i < rows_; ++i) {
283         cell_info[i].erase(cell_info[i].begin() + column);
284     }
285     --columns_;
286     Reinit();
287 }
288
289
290 void LyXTabular::Reinit()
291 {   
292     for (int i = 0; i < rows_; ++i) {
293         for (int j = 0; j < columns_; ++j) {
294             cell_info[i][j].width_of_cell = 0;
295             cell_info[i][j].inset.setOwner(owner_);
296         }
297     }
298   
299     for (int i = 0; i < columns_; ++i) {
300         calculate_width_of_column(i);
301     }
302     calculate_width_of_tabular();
303
304     set_row_column_number_info();
305 }
306
307
308 void LyXTabular::set_row_column_number_info(bool oldformat)
309 {
310     numberofcells = -1;
311     for (int row = 0; row < rows_; ++row) {
312         for (int column = 0; column<columns_; ++column) {
313             if (cell_info[row][column].multicolumn
314                 != LyXTabular::CELL_PART_OF_MULTICOLUMN)
315                 ++numberofcells;
316             cell_info[row][column].cellno = numberofcells;
317         }
318     }
319     ++numberofcells; // because this is one more than as we start from 0
320
321     rowofcell.resize(numberofcells);
322     columnofcell.resize(numberofcells);
323
324 #if 0
325     int row = 0;
326     int column = 0;
327     int c = 0;
328     
329     while (c < numberofcells && row < rows_ && column < columns_) {
330         rowofcell[c] = row;
331         columnofcell[c] = column;
332         ++c;
333         do {
334             ++column;
335         } while (column < columns_ &&
336                  cell_info[row][column].multicolumn
337                  == LyXTabular::CELL_PART_OF_MULTICOLUMN);
338         if (column == columns_) {
339             column = 0;
340             ++row;
341         }
342     }
343 #else
344     // Isn't this the same as the while above? (Lgb)
345 #warning Please check this Jürgen.
346     // if ok please delete the #if 0 section above. (Lgb)
347     for (int row = 0, column = 0, c = 0;
348          c < numberofcells && row < rows_ && column < columns_;) {
349         rowofcell[c] = row;
350         columnofcell[c] = column;
351         ++c;
352         do {
353             ++column;
354         } while (column < columns_ &&
355                  cell_info[row][column].multicolumn
356                  == LyXTabular::CELL_PART_OF_MULTICOLUMN);
357         if (column == columns_) {
358             column = 0;
359             ++row;
360         }
361     }
362 #endif
363
364     for (int row = 0; row < rows_; ++row) {
365         for (int column = 0; column < columns_; ++column) {
366             if (IsPartOfMultiColumn(row,column))
367                 continue;
368             // now set the right line of multicolumns right for oldformat read
369             if (oldformat &&
370                 cell_info[row][column].multicolumn==CELL_BEGIN_OF_MULTICOLUMN)
371             {
372                 int cn=cells_in_multicolumn(cell_info[row][column].cellno);
373                 cell_info[row][column].right_line =
374                     cell_info[row][column+cn-1].right_line;
375             }
376             cell_info[row][column].inset.SetAutoBreakRows(
377                 !GetPWidth(GetCellNumber(row, column)).empty());
378         }
379     }
380 }
381
382
383 int LyXTabular::GetNumberOfCells() const
384 {
385     return numberofcells;
386 }
387
388
389 int LyXTabular::NumberOfCellsInRow(int cell) const
390 {
391     int const row = row_of_cell(cell);
392     int result = 0;
393     for (int i = 0; i < columns_; ++i) {
394         if (cell_info[row][i].multicolumn != LyXTabular::CELL_PART_OF_MULTICOLUMN)
395             ++result;
396     }
397     return result;
398 }
399
400
401 /* returns 1 if there is a topline, returns 0 if not */ 
402 bool LyXTabular::TopLine(int cell, bool onlycolumn) const
403 {
404     int const row = row_of_cell(cell);
405     
406     if (!onlycolumn && IsMultiColumn(cell))
407         return cellinfo_of_cell(cell)->top_line;
408     return row_info[row].top_line;
409 }
410
411
412 bool LyXTabular::BottomLine(int cell, bool onlycolumn) const
413 {
414     // no bottom line underneath non-existent cells if you please
415     // Isn't that a programming error? Is so this should
416     // be an Assert instead. (Lgb)
417     if (cell >= numberofcells)
418         return false;
419
420     if (!onlycolumn && IsMultiColumn(cell))
421         return cellinfo_of_cell(cell)->bottom_line;
422     return row_info[row_of_cell(cell)].bottom_line;
423 }
424
425
426 bool LyXTabular::LeftLine(int cell, bool onlycolumn) const
427 {
428     if (!onlycolumn && IsMultiColumn(cell))
429         return cellinfo_of_cell(cell)->left_line;
430     return column_info[column_of_cell(cell)].left_line;
431 }
432
433
434 bool LyXTabular::RightLine(int cell, bool onlycolumn) const
435 {
436     if (!onlycolumn && IsMultiColumn(cell))
437         return cellinfo_of_cell(cell)->right_line;
438     return column_info[right_column_of_cell(cell)].right_line;
439 }
440
441
442 bool LyXTabular::TopAlreadyDrawed(int cell) const
443 {
444     if (GetAdditionalHeight(cell))
445         return false;
446     int row = row_of_cell(cell);
447     if (row > 0) {
448         int column = column_of_cell(cell);
449         --row;
450         while (column
451                && cell_info[row][column].multicolumn
452                == LyXTabular::CELL_PART_OF_MULTICOLUMN)
453             --column;
454         if (cell_info[row][column].multicolumn == LyXTabular::CELL_NORMAL)
455             return row_info[row].bottom_line;
456         else
457             return cell_info[row][column].bottom_line;
458     }
459     return false;
460 }
461
462
463 bool LyXTabular::LeftAlreadyDrawed(int cell) const
464 {
465     int column = column_of_cell(cell);
466     if (column > 0) {
467         int row = row_of_cell(cell);
468         while (--column &&
469                (cell_info[row][column].multicolumn ==
470                 LyXTabular::CELL_PART_OF_MULTICOLUMN));
471         if (GetAdditionalWidth(cell_info[row][column].cellno))
472             return false;
473         return column_info[column].right_line;
474     }
475     return false;
476 }
477
478
479 bool LyXTabular::IsLastRow(int cell) const
480 {
481     return (row_of_cell(cell) == rows_ - 1);
482 }
483
484
485 int LyXTabular::GetAdditionalHeight(int cell) const
486 {
487     int const row = row_of_cell(cell);
488     if (!row) return 0;
489
490     bool top = true;
491     bool bottom = true;
492
493     for (int column = 0; column < columns_ - 1 && bottom; ++column) {
494         switch (cell_info[row - 1][column].multicolumn) {
495         case LyXTabular::CELL_BEGIN_OF_MULTICOLUMN:
496             bottom = cell_info[row - 1][column].bottom_line;
497             break;
498         case LyXTabular::CELL_NORMAL:
499             bottom = row_info[row - 1].bottom_line;
500         }
501     }
502     for (int column = 0; column < columns_ - 1 && top; ++column) {
503         switch (cell_info[row][column].multicolumn){
504         case LyXTabular::CELL_BEGIN_OF_MULTICOLUMN:
505             top = cell_info[row][column].top_line;
506             break;
507         case LyXTabular::CELL_NORMAL:
508             top = row_info[row].top_line;
509         }
510     }
511     if (top && bottom)
512         return WIDTH_OF_LINE;
513     return 0;
514 }
515
516
517 int LyXTabular::GetAdditionalWidth(int cell) const
518 {
519     // internally already set in SetWidthOfCell
520     // used to get it back in text.C
521     int const col = right_column_of_cell(cell);
522     if (col < columns_ - 1 && column_info[col].right_line &&
523         column_info[col+1].left_line)
524         return WIDTH_OF_LINE;
525     else
526         return 0;
527 }
528
529
530 // returns the maximum over all rows 
531 int LyXTabular::GetWidthOfColumn(int cell) const
532 {
533     int const column1 = column_of_cell(cell);
534     int const column2 = right_column_of_cell(cell);
535     int result = 0;
536     for (int i = column1; i <= column2; ++i) {
537         result += column_info[i].width_of_column;
538     }
539     return result;
540 }
541
542
543 int LyXTabular::GetWidthOfTabular() const
544 {
545     return width_of_tabular;
546 }
547
548
549 /* returns 1 if a complete update is necessary, otherwise 0 */ 
550 bool LyXTabular::SetWidthOfMulticolCell(int cell, int new_width)
551 {
552     if (!IsMultiColumn(cell))
553         return false;
554     
555     int const row = row_of_cell(cell);
556     int const column1 = column_of_cell(cell);
557     int const column2 = right_column_of_cell(cell);
558
559     // first set columns to 0 so we can calculate the right width
560     for (int i = column1; i <= column2; ++i) {
561         cell_info[row][i].width_of_cell = 0;
562     }
563     // set the width to MAX_WIDTH until width > 0
564     int width = (new_width + 2 * WIDTH_OF_LINE);
565
566     int i = column1;
567     for (; i < column2 && width > column_info[i].width_of_column; ++i) {
568         cell_info[row][i].width_of_cell = column_info[i].width_of_column;
569         width -= column_info[i].width_of_column;
570     }
571     if (width > 0) {
572         cell_info[row][i].width_of_cell = width;
573     }
574     return true;
575 }
576
577
578 void LyXTabular::recalculateMulticolCells(int cell, int new_width)
579 {
580     int const row = row_of_cell(cell);
581     int const column1 = column_of_cell(cell);
582     int const column2 = right_column_of_cell(cell);
583
584     // first set columns to 0 so we can calculate the right width
585     int i = column1;
586     for (; i <= column2; ++i)
587         cell_info[row][i].width_of_cell = 0;
588     for (i = cell + 1; (i < numberofcells) && (!IsMultiColumn(i)); ++i)
589         ;
590     if (i < numberofcells)
591         recalculateMulticolCells(i, GetWidthOfCell(i) - (2 * WIDTH_OF_LINE));
592     SetWidthOfMulticolCell(cell, new_width);
593 }
594
595
596 /* returns 1 if a complete update is necessary, otherwise 0 */ 
597 bool LyXTabular::SetWidthOfCell(int cell, int new_width)
598 {
599     int const row = row_of_cell(cell);
600     int const column1 = column_of_cell(cell);
601     bool tmp = false;
602     int width = 0;
603
604     if (GetWidthOfCell(cell) == (new_width+2*WIDTH_OF_LINE))
605         return false;
606     if (IsMultiColumn(cell, true)) {
607         tmp = SetWidthOfMulticolCell(cell, new_width);
608     } else {
609         width = (new_width + 2*WIDTH_OF_LINE);
610         cell_info[row][column1].width_of_cell = width;
611         if (column_info[column1].right_line && (column1 < columns_-1) &&
612             column_info[column1+1].left_line) // additional width
613             cell_info[row][column1].width_of_cell += WIDTH_OF_LINE;
614         tmp = calculate_width_of_column_NMC(column1);
615     }
616     if (tmp) {
617         int i = 0;
618         for (; i<columns_; ++i)
619             calculate_width_of_column_NMC(i);
620         for (i = 0; (i < numberofcells) && !IsMultiColumn(i); ++i)
621             ;
622         if (i < numberofcells)
623             recalculateMulticolCells(i, GetWidthOfCell(i)-(2 * WIDTH_OF_LINE));
624         for (i = 0; i < columns_; ++i)
625             calculate_width_of_column(i);
626         calculate_width_of_tabular();
627         return true;
628     }
629     return false;
630 }
631
632
633 bool LyXTabular::SetAlignment(int cell, LyXAlignment align, bool onlycolumn)
634 {
635     if (!IsMultiColumn(cell) || onlycolumn)
636         column_info[column_of_cell(cell)].alignment = align;
637     if (!onlycolumn)
638         cellinfo_of_cell(cell)->alignment = align;
639     return true;
640 }
641
642
643 bool LyXTabular::SetVAlignment(int cell, VAlignment align, bool onlycolumn)
644 {
645     if (!IsMultiColumn(cell) || onlycolumn)
646         column_info[column_of_cell(cell)].valignment = align;
647     if (!onlycolumn)
648         cellinfo_of_cell(cell)->valignment = align;
649     return true;
650 }
651
652
653 bool LyXTabular::SetColumnPWidth(int cell, string const & width)
654 {
655     bool flag = !width.empty();
656     int const j = column_of_cell(cell);
657
658     column_info[j].p_width = width;
659     if (flag) // do this only if there is a width
660         SetAlignment(cell, LYX_ALIGN_LEFT);
661     for (int i = 0; i < rows_; ++i) {
662         int c = GetCellNumber(i, j);
663         flag = !GetPWidth(c).empty(); // because of multicolumns!
664         GetCellInset(c)->SetAutoBreakRows(flag);
665     }
666     return true;
667 }
668
669
670 bool LyXTabular::SetMColumnPWidth(int cell, string const & width)
671 {
672     bool const flag = !width.empty();
673
674     cellinfo_of_cell(cell)->p_width = width;
675     if (IsMultiColumn(cell)) {
676         GetCellInset(cell)->SetAutoBreakRows(flag);
677         return true;
678     }
679     return false;
680 }
681
682
683 bool LyXTabular::SetAlignSpecial(int cell, string const & special,
684                                  LyXTabular::Feature what)
685 {
686     if (what == SET_SPECIAL_MULTI)
687         cellinfo_of_cell(cell)->align_special = special;
688     else
689         column_info[column_of_cell(cell)].align_special = special;
690     return true;
691 }
692
693
694 bool LyXTabular::SetAllLines(int cell, bool line)
695 {
696     SetTopLine(cell, line);
697     SetBottomLine(cell, line);
698     SetRightLine(cell, line);
699     SetLeftLine(cell, line);
700     return true;
701 }
702
703
704 bool LyXTabular::SetTopLine(int cell, bool line, bool onlycolumn)
705 {
706     int const row = row_of_cell(cell);
707
708     if (onlycolumn || !IsMultiColumn(cell))
709         row_info[row].top_line = line;
710     else
711         cellinfo_of_cell(cell)->top_line = line;
712     return true;
713 }
714
715
716 bool LyXTabular::SetBottomLine(int cell, bool line, bool onlycolumn)
717 {
718     if (onlycolumn || !IsMultiColumn(cell))
719         row_info[row_of_cell(cell)].bottom_line = line;
720     else
721         cellinfo_of_cell(cell)->bottom_line = line;
722     return true;
723 }
724
725
726 bool LyXTabular::SetLeftLine(int cell, bool line, bool onlycolumn)
727 {
728     if (onlycolumn || !IsMultiColumn(cell))
729         column_info[column_of_cell(cell)].left_line = line;
730     else
731         cellinfo_of_cell(cell)->left_line = line;
732     return true;
733 }
734
735
736 bool LyXTabular::SetRightLine(int cell, bool line, bool onlycolumn)
737 {
738     if (onlycolumn || !IsMultiColumn(cell))
739         column_info[right_column_of_cell(cell)].right_line = line;
740     else
741         cellinfo_of_cell(cell)->right_line = line;
742     return true;
743 }
744
745
746 LyXAlignment LyXTabular::GetAlignment(int cell, bool onlycolumn) const
747 {
748     if (!onlycolumn && IsMultiColumn(cell))
749         return cellinfo_of_cell(cell)->alignment;
750     else
751         return column_info[column_of_cell(cell)].alignment;
752 }
753
754
755 LyXTabular::VAlignment
756 LyXTabular::GetVAlignment(int cell, bool onlycolumn) const
757 {
758     if (!onlycolumn && IsMultiColumn(cell))
759         return cellinfo_of_cell(cell)->valignment;
760     else
761         return column_info[column_of_cell(cell)].valignment;
762 }
763
764
765 string const LyXTabular::GetPWidth(int cell) const
766 {
767     if (IsMultiColumn(cell))
768         return cellinfo_of_cell(cell)->p_width;
769     return column_info[column_of_cell(cell)].p_width;
770 }
771
772
773 string const LyXTabular::GetColumnPWidth(int cell) const
774 {
775     return column_info[column_of_cell(cell)].p_width;
776 }
777
778
779 string const LyXTabular::GetMColumnPWidth(int cell) const
780 {
781     if (IsMultiColumn(cell))
782         return cellinfo_of_cell(cell)->p_width;
783     return string();
784 }
785
786
787 string const LyXTabular::GetAlignSpecial(int cell, int what) const
788 {
789     if (what == SET_SPECIAL_MULTI)
790         return cellinfo_of_cell(cell)->align_special;
791     return column_info[column_of_cell(cell)].align_special;
792 }
793
794
795 int LyXTabular::GetWidthOfCell(int cell) const
796 {
797     int const row = row_of_cell(cell);
798     int const column1 = column_of_cell(cell);
799     int const column2 = right_column_of_cell(cell);
800     int result = 0;
801     for (int i = column1; i <= column2; ++i) {
802         result += cell_info[row][i].width_of_cell;
803     }
804     return result;
805 }
806
807
808 int LyXTabular::GetBeginningOfTextInCell(int cell) const
809 {
810     int x = 0;
811    
812     switch (GetAlignment(cell)){
813     case LYX_ALIGN_CENTER:
814         x += (GetWidthOfColumn(cell) - GetWidthOfCell(cell)) / 2;
815         break;
816     case LYX_ALIGN_RIGHT:
817         x += GetWidthOfColumn(cell) - GetWidthOfCell(cell);
818         // + GetAdditionalWidth(cell);
819         break;
820     default: /* LYX_ALIGN_LEFT: nothing :-) */ 
821         break;
822     }
823     
824     // the LaTeX Way :-(
825     x += WIDTH_OF_LINE;
826     return x;
827 }
828
829
830 bool LyXTabular::IsFirstCellInRow(int cell) const
831 {
832     return column_of_cell(cell) == 0;
833 }
834
835
836 int LyXTabular::GetFirstCellInRow(int row) const
837 {
838     if (row > (rows_-1))
839         row = rows_ - 1;
840     return cell_info[row][0].cellno;
841 }
842
843 bool LyXTabular::IsLastCellInRow(int cell) const
844 {
845     return (right_column_of_cell(cell) == (columns_ - 1));
846 }
847
848
849 int LyXTabular::GetLastCellInRow(int row) const
850 {
851     if (row > (rows_-1))
852         row = rows_ - 1;
853     return cell_info[row][columns_-1].cellno;
854 }
855
856
857 bool LyXTabular::calculate_width_of_column(int column)
858 {
859     int const old_column_width = column_info[column].width_of_column;
860     int maximum = 0;
861     
862     for (int i = 0; i < rows_; ++i) {
863         maximum = max(cell_info[i][column].width_of_cell, maximum);
864     }
865     column_info[column].width_of_column = maximum;
866     return (column_info[column].width_of_column != old_column_width);
867 }
868
869
870 //
871 // calculate the with of the column without regarding REAL MultiColumn
872 // cells. This means MultiColumn-cells spanning more than 1 column.
873 //
874 bool LyXTabular::calculate_width_of_column_NMC(int column)
875 {
876     int const old_column_width = column_info[column].width_of_column;
877     int max = 0;
878     for (int i = 0; i < rows_; ++i) {
879         if (!IsMultiColumn(GetCellNumber(i, column), true) &&
880             (cell_info[i][column].width_of_cell > max)) {
881             max = cell_info[i][column].width_of_cell;
882         }
883     }
884     column_info[column].width_of_column = max;
885     return (column_info[column].width_of_column != old_column_width);
886 }
887
888
889 void LyXTabular::calculate_width_of_tabular()
890 {
891     width_of_tabular = 0;
892     for (int i = 0; i < columns_; ++i) {
893         width_of_tabular += column_info[i].width_of_column;
894     }
895 }
896
897
898 int LyXTabular::row_of_cell(int cell) const
899 {
900     if (cell >= numberofcells)
901         return rows_ - 1;
902     else if (cell < 0)
903         return 0;
904     return rowofcell[cell];
905 }
906
907
908 int LyXTabular::column_of_cell(int cell) const
909 {
910     if (cell >= numberofcells)
911         return columns_ - 1;
912     else if (cell < 0)
913         return 0;
914     return columnofcell[cell];
915 }
916
917
918 int LyXTabular::right_column_of_cell(int cell) const
919 {
920     int const row = row_of_cell(cell);
921     int column = column_of_cell(cell);
922     while (column < (columns_ - 1) &&
923            cell_info[row][column + 1].multicolumn == LyXTabular::CELL_PART_OF_MULTICOLUMN)
924         ++column;
925     return column;
926 }
927
928
929 // Perfect case for a template... (Lgb)
930 #if 1
931 template<class T>
932 string const write_attribute(string const & name, T const & t)
933 {
934      string str = " " + name + "=\"" + tostr(t) + "\"";
935      return str;
936 }
937
938 template <>
939 string const write_attribute(string const & name, bool const & b)
940 {
941         return write_attribute(name, int(b));
942 }
943
944 #else
945
946 string const write_attribute(string const & name, int value)
947 {
948     string str = " " + name + "=\"" + tostr(value) + "\"";
949     return str;
950 }
951
952
953 string const write_attribute(string const & name, string const & value)
954 {
955     string str = " " + name + "=\"" + value + "\"";
956     return str;
957 }
958
959
960 string const write_attribute(string const & name, bool value)
961 {
962     string str = " " + name + "=\"" + tostr(static_cast<int>(value)) + "\"";
963     return str;
964 }
965 #endif
966
967
968 void LyXTabular::Write(Buffer const * buf, ostream & os) const
969 {
970     // header line
971     os << "<LyXTabular"
972        << write_attribute("version", 1)
973        << write_attribute("rows", rows_)
974        << write_attribute("columns", columns_)
975        << ">\n";
976     // global longtable options
977     os << "<Features"
978        << write_attribute("rotate", rotate)
979        << write_attribute("islongtable", is_long_tabular)
980        << write_attribute("endhead", endhead)
981        << write_attribute("endfirsthead", endfirsthead)
982        << write_attribute("endfoot", endfoot)
983        << write_attribute("endlastfoot", endlastfoot)
984        << ">\n\n";
985     for (int i = 0; i < rows_; ++i) {
986         os << "<Row"
987            << write_attribute("topline", row_info[i].top_line)
988            << write_attribute("bottomline", row_info[i].bottom_line)
989            << write_attribute("newpage", row_info[i].newpage)
990            << ">\n";
991         for (int j = 0; j < columns_; ++j) {
992             if (!i) {
993                 os << "<Column"
994                    << write_attribute("alignment", column_info[j].alignment)
995                    << write_attribute("valignment", column_info[j].valignment)
996                    << write_attribute("leftline", column_info[j].left_line)
997                    << write_attribute("rightline", column_info[j].right_line)
998                    << write_attribute("width",
999                                       VSpace(column_info[j].p_width)
1000                                       .asLyXCommand())
1001                    << write_attribute("special", column_info[j].align_special)
1002                    << ">\n";
1003             } else {
1004                 os << "<Column>\n";
1005             }
1006             os << "<Cell"
1007                << write_attribute("multicolumn", cell_info[i][j].multicolumn)
1008                << write_attribute("alignment", cell_info[i][j].alignment)
1009                << write_attribute("valignment", cell_info[i][j].valignment)
1010                << write_attribute("topline", cell_info[i][j].top_line)
1011                << write_attribute("bottomline", cell_info[i][j].bottom_line)
1012                << write_attribute("leftline", cell_info[i][j].left_line)
1013                << write_attribute("rightline", cell_info[i][j].right_line)
1014                << write_attribute("rotate", cell_info[i][j].rotate)
1015                << write_attribute("usebox", cell_info[i][j].usebox)
1016                << write_attribute("width", cell_info[i][j].p_width)
1017                << write_attribute("special", cell_info[i][j].align_special)
1018                << ">\n";
1019             os << "\\begin_inset ";
1020             cell_info[i][j].inset.Write(buf, os);
1021             os << "\n\\end_inset \n"
1022                << "</Cell>\n"
1023                << "</Column>\n";
1024         }
1025         os << "</Row>\n";
1026     }
1027     os << "</LyXTabular>\n";
1028 }
1029
1030
1031 static
1032 bool getTokenValue(string const & str, const char * token, string & ret)
1033 {
1034     string::size_type pos = str.find(token);
1035     char ch = str[pos + strlen(token)];
1036
1037     if ((pos == string::npos) || (ch != '='))
1038         return false;
1039     ret.erase();
1040     pos += strlen(token) + 1;
1041     ch = str[pos];
1042     if ((ch != '"') && (ch != '\'')) { // only read till next space
1043         ret += ch;
1044         ch = ' ';
1045     }
1046     while((pos < str.length() - 1) && (str[++pos] != ch))
1047         ret += str[pos];
1048
1049     return true;
1050 }
1051
1052
1053 static
1054 bool getTokenValue(string const & str, const char * token, int & num)
1055 {
1056     string::size_type pos = str.find(token);
1057     char ch = str[pos + strlen(token)];
1058
1059     if ((pos == string::npos) || (ch != '='))
1060         return false;
1061     string ret;
1062     pos += strlen(token) + 1;
1063     ch = str[pos];
1064     if ((ch != '"') && (ch != '\'')) { // only read till next space
1065         if (!isdigit(ch))
1066             return false;
1067         ret += ch;
1068     }
1069     ++pos;
1070     while((pos < str.length() - 1) && isdigit(str[pos]))
1071         ret += str[pos++];
1072
1073     num = strToInt(ret);
1074     return true;
1075 }
1076
1077
1078 static
1079 bool getTokenValue(string const & str, const char * token, LyXAlignment & num)
1080 {
1081     int tmp;
1082     bool const ret = getTokenValue(str, token, tmp);
1083     num = static_cast<LyXAlignment>(tmp);
1084     return ret;
1085 }
1086
1087
1088 static
1089 bool getTokenValue(string const & str, const char * token,
1090                    LyXTabular::VAlignment & num)
1091 {
1092     int tmp;
1093     bool const ret = getTokenValue(str, token, tmp);
1094     num = static_cast<LyXTabular::VAlignment>(tmp);
1095     return ret;
1096 }
1097
1098
1099 static
1100 bool getTokenValue(string const & str, const char * token,
1101                    LyXTabular::BoxType & num)
1102 {
1103     int tmp;
1104     bool ret = getTokenValue(str, token, tmp);
1105     num = static_cast<LyXTabular::BoxType>(tmp);
1106     return ret;
1107 }
1108
1109
1110 static
1111 bool getTokenValue(string const & str, const char * token, bool & flag)
1112 {
1113     string::size_type pos = str.find(token);
1114     char ch = str[pos + strlen(token)];
1115
1116     if ((pos == string::npos) || (ch != '='))
1117         return false;
1118     string ret;
1119     pos += strlen(token) + 1;
1120     ch = str[pos];
1121     if ((ch != '"') && (ch != '\'')) { // only read till next space
1122         if (!isdigit(ch))
1123             return false;
1124         ret += ch;
1125     }
1126     ++pos;
1127     while((pos < str.length() - 1) && isdigit(str[pos]))
1128         ret += str[pos++];
1129
1130     flag = strToInt(ret);
1131     return true;
1132 }
1133
1134
1135 static inline
1136 void l_getline(istream & is, string & str)
1137 {
1138     getline(is, str);
1139     while(str.empty())
1140         getline(is, str);
1141 }
1142
1143
1144 void LyXTabular::Read(Buffer const * buf, LyXLex & lex)
1145 {
1146     string line;
1147     istream & is = lex.getStream();
1148
1149     l_getline(is, line);
1150     if (!prefixIs(line, "<LyXTabular ")) {
1151         OldFormatRead(lex, line);
1152         return;
1153     }
1154
1155     int version;
1156     int rows_arg;
1157     int columns_arg;
1158     if (!getTokenValue(line, "version", version))
1159         return;
1160     if (!getTokenValue(line, "rows", rows_arg))
1161         return;
1162     if (!getTokenValue(line, "columns", columns_arg))
1163         return;
1164     Init(rows_arg, columns_arg);
1165     l_getline(is, line);
1166     if (!prefixIs(line, "<Features ")) {
1167         lyxerr << "Wrong tabular format (expected <Feture ...> got" <<
1168             line << ")" << endl;
1169         return;
1170     }
1171     getTokenValue(line, "islongtable", is_long_tabular);
1172     getTokenValue(line, "endhead", endhead);
1173     getTokenValue(line, "endfirsthead", endfirsthead);
1174     getTokenValue(line, "endfoot", endfoot);
1175     getTokenValue(line, "endlastfoot", endlastfoot);
1176
1177     for (int i = 0; i < rows_; ++i) {
1178         l_getline(is, line);
1179         if (!prefixIs(line, "<Row ")) {
1180             lyxerr << "Wrong tabular format (expected <Row ...> got" <<
1181                 line << ")" << endl;
1182             return;
1183         }
1184         getTokenValue(line, "topline", row_info[i].top_line);
1185         getTokenValue(line, "bottomline", row_info[i].bottom_line);
1186         getTokenValue(line, "newpage", row_info[i].newpage);
1187         for (int j = 0; j < columns_; ++j) {
1188             l_getline(is,line);
1189             if (!prefixIs(line,"<Column")) {
1190                 lyxerr << "Wrong tabular format (expected <Column ...> got" <<
1191                     line << ")" << endl;
1192                 return;
1193             }
1194             if (!i) {
1195                 getTokenValue(line, "alignment", column_info[j].alignment);
1196                 getTokenValue(line, "valignment", column_info[j].valignment);
1197                 getTokenValue(line, "leftline", column_info[j].left_line);
1198                 getTokenValue(line, "rightline", column_info[j].right_line);
1199                 getTokenValue(line, "width", column_info[j].p_width);
1200                 getTokenValue(line, "special", column_info[j].align_special);
1201             }
1202             l_getline(is, line);
1203             if (!prefixIs(line, "<Cell")) {
1204                 lyxerr << "Wrong tabular format (expected <Cell ...> got" <<
1205                     line << ")" << endl;
1206                 return;
1207             }
1208             getTokenValue(line, "multicolumn", cell_info[i][j].multicolumn);
1209             getTokenValue(line, "alignment", cell_info[i][j].alignment);
1210             getTokenValue(line, "valignment", cell_info[i][j].valignment);
1211             getTokenValue(line, "topline", cell_info[i][j].top_line);
1212             getTokenValue(line, "bottomline", cell_info[i][j].bottom_line);
1213             getTokenValue(line, "leftline", cell_info[i][j].left_line);
1214             getTokenValue(line, "rightline", cell_info[i][j].right_line);
1215             getTokenValue(line, "rotate", cell_info[i][j].rotate);
1216             getTokenValue(line, "usebox", cell_info[i][j].usebox);
1217             getTokenValue(line, "width", cell_info[i][j].p_width);
1218             getTokenValue(line, "special", cell_info[i][j].align_special);
1219             l_getline(is, line);
1220             if (prefixIs(line, "\\begin_inset")) {
1221                 cell_info[i][j].inset.Read(buf, lex);
1222                 l_getline(is, line);
1223             }
1224             if (line != "</Cell>") {
1225                 lyxerr << "Wrong tabular format (expected </Cell> got" <<
1226                     line << ")" << endl;
1227                 return;
1228             }
1229             l_getline(is, line);
1230             if (line != "</Column>") {
1231                 lyxerr << "Wrong tabular format (expected </Column> got" <<
1232                     line << ")" << endl;
1233                 return;
1234             }
1235         }
1236         l_getline(is, line);
1237         if (line != "</Row>") {
1238             lyxerr << "Wrong tabular format (expected </Row> got" <<
1239                 line << ")" << endl;
1240             return;
1241         }
1242     }
1243     while (line != "</LyXTabular>") {
1244         l_getline(is, line);
1245     }
1246     set_row_column_number_info();
1247 }
1248
1249
1250 void LyXTabular::OldFormatRead(LyXLex & lex, string const & fl)
1251 {
1252     int version;
1253     int i, j;
1254     int rows_arg = 0;
1255     int columns_arg = 0;
1256     int is_long_tabular_arg = false;
1257     int rotate_arg = false;
1258     int a = -1;
1259     int b = -1;
1260     int c = -1;
1261     int d = -1;
1262     int e = 0;
1263     int f = 0;
1264     int g = 0;
1265     int h = 0;
1266         
1267     istream & is = lex.getStream();
1268     string s(fl);
1269     if (s.length() > 8)
1270         version = lyx::atoi(s.substr(8, string::npos));
1271     else
1272         version = 1;
1273
1274     vector<int> cont_row_info;
1275
1276     if (version < 5) {
1277         lyxerr << "Tabular format < 5 is not supported anymore\n"
1278             "Get an older version of LyX (< 1.1.x) for conversion!"
1279                << endl;
1280         WriteAlert(_("Warning:"),
1281                    _("Tabular format < 5 is not supported anymore\n"),
1282                    _("Get an older version of LyX (< 1.1.x) for conversion!"));
1283         if (version > 2) {
1284             is >> rows_arg >> columns_arg >> is_long_tabular_arg
1285                >> rotate_arg >> a >> b >> c >> d;
1286         } else
1287             is >> rows_arg >> columns_arg;
1288         Init(rows_arg, columns_arg);
1289         cont_row_info = vector<int>(rows_arg);
1290         SetLongTabular(is_long_tabular_arg);
1291         SetRotateTabular(rotate_arg);
1292         string tmp;
1293         for (i = 0; i < rows_; ++i) {
1294             getline(is, tmp);
1295             cont_row_info[i] = false;
1296         }
1297         for (i = 0; i < columns_; ++i) {
1298             getline(is, tmp);
1299         }
1300         for (i = 0; i < rows_; ++i) {
1301             for (j = 0; j < columns_; ++j) {
1302                 getline(is, tmp);
1303             }
1304         }
1305     } else {
1306         is >> rows_arg >> columns_arg >> is_long_tabular_arg
1307            >> rotate_arg >> a >> b >> c >> d;
1308         Init(rows_arg, columns_arg);
1309         cont_row_info = vector<int>(rows_arg);
1310         SetLongTabular(is_long_tabular_arg);
1311         SetRotateTabular(rotate_arg);
1312         endhead = a;
1313         endfirsthead = b;
1314         endfoot = c;
1315         endlastfoot = d;
1316         for (i = 0; i < rows_; ++i) {
1317             a = b = c = d = e = f = g = h = 0;
1318             is >> a >> b >> c >> d;
1319             row_info[i].top_line = a;
1320             row_info[i].bottom_line = b;
1321             cont_row_info[i] = c;
1322             row_info[i].newpage = d;
1323         }
1324         for (i = 0; i < columns_; ++i) {
1325             string s1;
1326             string s2;
1327             is >> a >> b >> c;
1328 #if 1
1329             char ch; // skip '"'
1330             is >> ch;
1331 #else
1332             // ignore is buggy but we will use it later (Lgb)
1333             is.ignore(); // skip '"'
1334 #endif    
1335             getline(is, s1, '"');
1336 #if 1
1337             is >> ch; // skip '"'
1338 #else
1339             // ignore is buggy but we will use it later (Lgb)
1340             is.ignore(); // skip '"'
1341 #endif
1342             getline(is, s2, '"');
1343             column_info[i].alignment = static_cast<LyXAlignment>(a);
1344             column_info[i].left_line = b;
1345             column_info[i].right_line = c;
1346             column_info[i].p_width = s1;
1347             column_info[i].align_special = s2;
1348         }
1349         for (i = 0; i < rows_; ++i) {
1350             for (j = 0; j < columns_; ++j) {
1351                 string s1;
1352                 string s2;
1353                 is >> a >> b >> c >> d >> e >> f >> g;
1354 #if 1
1355                 char ch;
1356                 is >> ch; // skip '"'
1357 #else
1358                 // ignore is buggy but we will use it later (Lgb)
1359                 is.ignore(); // skip '"'
1360 #endif
1361                 getline(is, s1, '"');
1362 #if 1
1363                 is >> ch; // skip '"'
1364 #else
1365                 // ignore is buggy but we will use it later (Lgb)
1366                 is.ignore(); // skip '"'
1367 #endif
1368                 getline(is, s2, '"');
1369                 cell_info[i][j].multicolumn = static_cast<char>(a);
1370                 cell_info[i][j].alignment = static_cast<LyXAlignment>(b);
1371                 cell_info[i][j].top_line = static_cast<char>(c);
1372                 cell_info[i][j].bottom_line = static_cast<char>(d);
1373                 cell_info[i][j].left_line = column_info[j].left_line;
1374                 cell_info[i][j].right_line = column_info[j].right_line;
1375                 cell_info[i][j].rotate = static_cast<bool>(f);
1376                 cell_info[i][j].usebox = static_cast<BoxType>(g);
1377                 cell_info[i][j].align_special = s1;
1378                 cell_info[i][j].p_width = s2;
1379             }
1380         }
1381     }
1382     set_row_column_number_info(true);
1383
1384     LyXParagraph * par = new LyXParagraph;
1385     LyXParagraph * return_par = 0;
1386 #ifndef NEW_INSETS
1387     LyXParagraph::footnote_flag footnoteflag = LyXParagraph::NO_FOOTNOTE;
1388     LyXParagraph::footnote_kind footnotekind = LyXParagraph::FOOTNOTE;
1389 #endif
1390     string tmptok;
1391     int pos = 0;
1392     char depth = 0;
1393     LyXFont font(LyXFont::ALL_SANE);
1394     font.setLanguage(owner_->BufferOwner()->GetLanguage());
1395
1396     while (lex.IsOK()) {
1397         lex.nextToken();
1398         string const token = lex.GetString();
1399         if (token.empty())
1400             continue;
1401         if (token == "\\layout"
1402             || token == "\\end_float"
1403             || token == "\\end_deeper") {
1404             lex.pushToken(token);
1405             break;
1406         }
1407         if (owner_->BufferOwner()->parseSingleLyXformat2Token(lex, par,
1408                                                               return_par,
1409                                                               token, pos,
1410                                                               depth, font
1411 #ifndef NEW_INSETS
1412                                                               ,
1413                                                               footnoteflag,
1414                                                               footnotekind
1415 #endif
1416                 ))
1417         {
1418             // the_end read
1419             lex.pushToken(token);
1420             break;
1421         }
1422         if (return_par) {
1423             lex.printError("New Paragraph allocated! This should not happen!");
1424             lex.pushToken(token);
1425             delete par;
1426             par = return_par;
1427             break;
1428         }
1429     }
1430     // now we have the par we should fill the insets with this!
1431     int cell = 0;
1432     InsetText * inset = GetCellInset(cell);
1433     int row;
1434
1435     for (int i = 0; i < par->Last(); ++i) {
1436         if (par->IsNewline(i)) {
1437             ++cell;
1438             if (cell > GetNumberOfCells()) {
1439                 lyxerr << "Some error in reading old table format occured!" <<
1440                     endl << "Terminating when reading cell[" << cell << "]!" <<
1441                     endl;
1442                 delete par;
1443                 return;
1444             }
1445             row = row_of_cell(cell);
1446             if (cont_row_info[row]) {
1447                 DeleteRow(row);
1448                 cont_row_info.erase(cont_row_info.begin() + row); //&cont_row_info[row]);
1449                 while(!IsFirstCellInRow(--cell));
1450             } else {
1451                 inset = GetCellInset(cell);
1452                 continue;
1453             }
1454             inset = GetCellInset(cell);
1455             row = row_of_cell(cell);
1456             if (!cell_info[row_of_cell(cell)][column_of_cell(cell)].usebox)
1457             {
1458                 // insert a space instead
1459                 par->Erase(i);
1460                 par->InsertChar(i, ' ');
1461             }
1462         }
1463         par->CopyIntoMinibuffer(owner_->BufferOwner()->params, i);
1464         inset->par->InsertFromMinibuffer(inset->par->Last());
1465     }
1466     delete par;
1467     Reinit();
1468 }
1469
1470
1471 string const LyXTabular::GetDocBookAlign(int cell, bool isColumn) const
1472 {
1473     int const i = isColumn ? cell : column_of_cell(cell);
1474         
1475     if (!isColumn && IsMultiColumn(cell)) {
1476        if (!cellinfo_of_cell(cell)->align_special.empty()) {
1477            return cellinfo_of_cell(cell)->align_special;
1478        } else {
1479            switch (GetAlignment(cell)) {
1480            case LYX_ALIGN_LEFT:
1481                return "left";
1482            case LYX_ALIGN_RIGHT:
1483                return "right";
1484            default:
1485                return "center";
1486            }
1487        }
1488     } else {
1489        if (!column_info[i].align_special.empty()) {
1490            return column_info[i].align_special;
1491        }
1492 #ifdef IGNORE_THIS_FOR_NOW
1493        else if (!column_info[i].p_width.empty()) {
1494            file += "p{";
1495            file += column_info[i].p_width;
1496            file += '}';
1497        }
1498 #endif
1499        else {
1500            switch (column_info[i].alignment) {
1501            case LYX_ALIGN_LEFT:
1502                return "left";
1503            case LYX_ALIGN_RIGHT:
1504                return "right";
1505            default:
1506                return "center";
1507            }
1508        }
1509     }
1510 }
1511
1512
1513 // cell <0 will tex the preamble
1514 // returns the number of printed newlines
1515 int LyXTabular::DocBookEndOfCell(ostream & os, int cell, int & depth) const
1516 {
1517     int ret = 0;
1518     if (IsLastCell(cell)) {
1519             os << newlineAndDepth(--depth)
1520                << "</ENTRY>"
1521                << newlineAndDepth(--depth)
1522                << "</ROW>"
1523                << newlineAndDepth(--depth)
1524                << "</TBODY>"
1525                << newlineAndDepth(--depth);
1526         if (is_long_tabular)
1527                 os << "</TGROUP>";
1528         else
1529                 os << "</TGROUP>"
1530                    << newlineAndDepth(--depth);
1531         ret += 4;
1532     } else {
1533         if (cell < 0) {
1534             // preamble
1535             if (is_long_tabular)
1536                     os << "<TGROUP ";
1537             else
1538                     os << "<TGROUP ";
1539             os << "COLS='"
1540                << columns_
1541                << "' COLSEP='1' ROWSEP='1'>"
1542                << newlineAndDepth(++depth);
1543             ++ret;
1544             for (int i = 0; i < columns_; ++i) {
1545                     os << "<COLSPEC ALIGN='"
1546                        << GetDocBookAlign(i, true)
1547                        << "' COLNAME='col"
1548                        << i + 1
1549                        << "' COLNUM='"
1550                        << i + 1
1551                        << "' COLSEP='";
1552                if (i == (columns_-1)) {
1553                        os << '1';
1554                } else {
1555                    if (column_info[i].right_line ||
1556                        column_info[i+1].left_line)
1557                            os << '1';
1558                    else
1559                            os << '0';
1560                }
1561                os << "'>"
1562                   << newlineAndDepth(depth);
1563                 ++ret;
1564 #ifdef NOT_HANDLED_YET_AS_I_DONT_KNOW_HOW
1565                 if (column_info[i].left_line)
1566                         os << '|';
1567 #endif
1568             }
1569             os << "<TBODY>"
1570                << newlineAndDepth(++depth)
1571                << "<ROW>"
1572                << newlineAndDepth(++depth)
1573                << "<ENTRY ALIGN='"
1574                << GetDocBookAlign(0)
1575                << "'";
1576            if (IsMultiColumn(0)) {
1577                    os << " NAMEST='col1' NAMEEND='col"
1578                       << cells_in_multicolumn(0)
1579                       << "'";
1580            }
1581            os << ">"
1582               << newlineAndDepth(++depth);
1583             ret += 3;
1584         } else {
1585             if (IsLastCellInRow(cell)) {
1586                     os << newlineAndDepth(--depth)
1587                        << "</ENTRY>"
1588                        << newlineAndDepth(--depth)
1589                        << "</ROW>"
1590                        << newlineAndDepth(depth)
1591                        << "<ROW>"
1592                        << newlineAndDepth(++depth)
1593                        << "<ENTRY ALIGN='"
1594                        << GetDocBookAlign(cell + 1)
1595                        << "' VALIGN='middle'";
1596                if (IsMultiColumn(cell + 1)) {
1597                        os << " NAMEST='col"
1598                           << column_of_cell(cell + 1) + 1
1599                           << "' NAMEEND='col"
1600                           << column_of_cell(cell + 1) +
1601                                cells_in_multicolumn(cell + 1)
1602                           << "'";
1603                }
1604                os << ">"
1605                   << newlineAndDepth(++depth);
1606                 ret += 4;
1607             } else {
1608                     os << newlineAndDepth(--depth)
1609                        << "</ENTRY>"
1610                        << newlineAndDepth(depth)
1611                        << "<ENTRY ALIGN='"
1612                        << GetDocBookAlign(cell + 1)
1613                        << "' VALIGN='middle'";
1614                if (IsMultiColumn(cell + 1)) {
1615                        os << " NAMEST='col"
1616                           << column_of_cell(cell + 1) + 1
1617                           << "' NAMEEND='col"
1618                           << column_of_cell(cell + 1) +
1619                                cells_in_multicolumn(cell + 1)
1620                           << "'";
1621                }
1622                os << ">"
1623                   << newlineAndDepth(++depth);
1624                 ret += 3;
1625             }
1626         }
1627     }
1628     return ret;
1629 }
1630
1631
1632 bool LyXTabular::IsMultiColumn(int cell, bool real) const
1633 {
1634     return ((!real || (column_of_cell(cell) != right_column_of_cell(cell))) &&
1635         (cellinfo_of_cell(cell)->multicolumn != LyXTabular::CELL_NORMAL));
1636 }
1637
1638
1639 LyXTabular::cellstruct * LyXTabular::cellinfo_of_cell(int cell) const
1640 {
1641     int const row = row_of_cell(cell);
1642     int const column = column_of_cell(cell);
1643     return  &cell_info[row][column];
1644 }
1645
1646
1647 void LyXTabular::SetMultiColumn(int cell, int number)
1648 {
1649     cellinfo_of_cell(cell)->multicolumn = CELL_BEGIN_OF_MULTICOLUMN;
1650     cellinfo_of_cell(cell)->alignment = column_info[column_of_cell(cell)].alignment;
1651     cellinfo_of_cell(cell)->top_line = row_info[row_of_cell(cell)].top_line;
1652     cellinfo_of_cell(cell)->bottom_line = row_info[row_of_cell(cell)].bottom_line;
1653     for (number--; number > 0; --number) {
1654         cellinfo_of_cell(cell+number)->multicolumn = CELL_PART_OF_MULTICOLUMN;
1655     }
1656     set_row_column_number_info();
1657 }
1658
1659
1660 int LyXTabular::cells_in_multicolumn(int cell) const
1661 {
1662     int const row = row_of_cell(cell);
1663     int column = column_of_cell(cell);
1664     int result = 1;
1665     ++column;
1666     while ((column < columns_) &&
1667            cell_info[row][column].multicolumn == CELL_PART_OF_MULTICOLUMN)
1668     {
1669         ++result;
1670         ++column;
1671     }
1672     return result;
1673 }
1674
1675
1676 int LyXTabular::UnsetMultiColumn(int cell)
1677 {
1678     int const row = row_of_cell(cell);
1679     int column = column_of_cell(cell);
1680     
1681     int result = 0;
1682     
1683     if (cell_info[row][column].multicolumn == CELL_BEGIN_OF_MULTICOLUMN) {
1684         cell_info[row][column].multicolumn = CELL_NORMAL;
1685         ++column;
1686         while ((column < columns_) &&
1687                (cell_info[row][column].multicolumn ==CELL_PART_OF_MULTICOLUMN))
1688         {
1689             cell_info[row][column].multicolumn = CELL_NORMAL;
1690             ++column;
1691             ++result;
1692         }
1693     }
1694     set_row_column_number_info();
1695     return result;
1696 }
1697
1698
1699 void LyXTabular::SetLongTabular(bool what)
1700 {
1701     is_long_tabular = what;
1702 }
1703
1704
1705 bool LyXTabular::IsLongTabular() const
1706 {
1707     return is_long_tabular;
1708 }
1709
1710
1711 void LyXTabular::SetRotateTabular(bool flag)
1712 {
1713     rotate = flag;
1714 }
1715
1716
1717 bool LyXTabular::GetRotateTabular() const
1718 {
1719     return rotate;
1720 }
1721
1722
1723 void LyXTabular::SetRotateCell(int cell, bool flag)
1724 {
1725     cellinfo_of_cell(cell)->rotate = flag;
1726 }
1727
1728
1729 bool LyXTabular::GetRotateCell(int cell) const
1730 {
1731     return cellinfo_of_cell(cell)->rotate;
1732 }
1733
1734
1735 bool LyXTabular::NeedRotating() const
1736 {
1737     if (rotate)
1738         return true;
1739     for (int i = 0; i < rows_; ++i) {
1740         for (int j = 0; j < columns_; ++j) {
1741             if (cell_info[i][j].rotate)
1742                 return true;
1743         }
1744     }
1745     return false;
1746 }
1747
1748
1749 bool LyXTabular::IsLastCell(int cell) const
1750 {
1751     if ((cell + 1) < GetNumberOfCells())
1752         return false;
1753     return true;
1754 }
1755
1756
1757 int LyXTabular::GetCellAbove(int cell) const
1758 {
1759     if (row_of_cell(cell) > 0)
1760         return cell_info[row_of_cell(cell)-1][column_of_cell(cell)].cellno;
1761     return cell;
1762 }
1763
1764
1765 int LyXTabular::GetCellBelow(int cell) const
1766 {
1767     if (row_of_cell(cell) + 1 < rows_)
1768         return cell_info[row_of_cell(cell)+1][column_of_cell(cell)].cellno;
1769     return cell;
1770 }
1771
1772
1773 int LyXTabular::GetLastCellAbove(int cell) const
1774 {
1775     if (row_of_cell(cell) <= 0)
1776         return cell;
1777     if (!IsMultiColumn(cell))
1778         return GetCellAbove(cell);
1779     return cell_info[row_of_cell(cell) - 1][right_column_of_cell(cell)].cellno;
1780 }
1781
1782
1783 int LyXTabular::GetLastCellBelow(int cell) const
1784 {
1785     if (row_of_cell(cell) + 1 >= rows_)
1786         return cell;
1787     if (!IsMultiColumn(cell))
1788         return GetCellBelow(cell);
1789     return cell_info[row_of_cell(cell) + 1][right_column_of_cell(cell)].cellno;
1790 }
1791
1792
1793 int LyXTabular::GetCellNumber(int row, int column) const
1794 {
1795     if (column >= columns_)
1796         column = columns_ - 1;
1797     else if (column < 0)
1798         column = 0;
1799     if (row >= rows_)
1800         row = rows_ - 1;
1801     else if (row < 0)
1802         row = 0;
1803     
1804     return cell_info[row][column].cellno;
1805 }
1806
1807
1808 void LyXTabular::SetUsebox(int cell, BoxType type)
1809 {
1810     cellinfo_of_cell(cell)->usebox = type;
1811 }
1812
1813
1814 LyXTabular::BoxType LyXTabular::GetUsebox(int cell) const
1815 {
1816     if (column_info[column_of_cell(cell)].p_width.empty() &&
1817         !(IsMultiColumn(cell) && !cellinfo_of_cell(cell)->p_width.empty()))
1818         return BOX_NONE;
1819     if (cellinfo_of_cell(cell)->usebox > 1)
1820         return cellinfo_of_cell(cell)->usebox;
1821     return UseParbox(cell);
1822 }
1823
1824
1825 void LyXTabular::SetLTHead(int cell, bool first)
1826 {
1827     int const row = row_of_cell(cell);
1828     int const val = (row + 1) * (column_of_cell(cell) ? 1 : -1);
1829
1830     if (first) {
1831         if (endfirsthead == val)
1832             endfirsthead = 0;
1833         else
1834             endfirsthead = val;
1835     } else {
1836         if (endhead == val)
1837             endhead = 0;
1838         else
1839             endhead = val;
1840     }
1841 }
1842
1843
1844 bool LyXTabular::GetRowOfLTHead(int cell, int & row) const
1845 {
1846     row = endhead;
1847     if (abs(endhead) > rows_)
1848         return false;
1849     return (row_of_cell(cell) == abs(endhead) - 1);
1850 }
1851
1852
1853 bool LyXTabular::GetRowOfLTFirstHead(int cell, int & row) const
1854 {
1855     row = endfirsthead;
1856     if (abs(endfirsthead) > rows_)
1857         return false;
1858     return (row_of_cell(cell) == abs(endfirsthead) - 1);
1859 }
1860
1861
1862 void LyXTabular::SetLTFoot(int cell, bool last)
1863 {
1864     int const row = row_of_cell(cell);
1865     int const val = (row + 1) * (column_of_cell(cell) ? 1 : -1);
1866
1867     if (last) {
1868         if (endlastfoot == val)
1869             endlastfoot = 0;
1870         else
1871             endlastfoot = val;
1872     } else {
1873         if (endfoot == val)
1874             endfoot = 0;
1875         else
1876             endfoot = val;
1877     }
1878 }
1879
1880
1881 bool LyXTabular::GetRowOfLTFoot(int cell, int & row) const
1882 {
1883     row = endfoot;
1884     if ((endfoot + 1) > rows_)
1885         return false;
1886     return (row_of_cell(cell) == abs(endfoot) - 1);
1887 }
1888
1889
1890 bool LyXTabular::GetRowOfLTLastFoot(int cell, int & row) const
1891 {
1892     row = endlastfoot;
1893     if (abs(endlastfoot) > rows_)
1894         return false;
1895     return (row_of_cell(cell) == (abs(endlastfoot)-1));
1896 }
1897
1898
1899 void LyXTabular::SetLTNewPage(int cell, bool what)
1900 {
1901     row_info[row_of_cell(cell)].newpage = what;
1902 }
1903
1904
1905 bool LyXTabular::GetLTNewPage(int cell) const
1906 {
1907     return row_info[row_of_cell(cell)].newpage;
1908 }
1909
1910
1911 bool LyXTabular::SetAscentOfRow(int row, int height)
1912 {
1913     if ((row >= rows_) || (row_info[row].ascent_of_row == height))
1914         return false;
1915     row_info[row].ascent_of_row = height;
1916     return true;
1917 }
1918
1919
1920 bool LyXTabular::SetDescentOfRow(int row, int height)
1921 {
1922     if ((row >= rows_) || (row_info[row].descent_of_row == height))
1923         return false;
1924     row_info[row].descent_of_row = height;
1925     return true;
1926 }
1927
1928
1929 int LyXTabular::GetAscentOfRow(int row) const
1930 {
1931     if (row >= rows_)
1932         return 0;
1933     return row_info[row].ascent_of_row;
1934 }
1935
1936
1937 int LyXTabular::GetDescentOfRow(int row) const
1938 {
1939     if (row >= rows_)
1940         return 0;
1941     return row_info[row].descent_of_row;
1942 }
1943
1944
1945 int LyXTabular::GetHeightOfTabular() const
1946 {
1947     int height = 0;
1948
1949     for (int row = 0; row < rows_; ++row)
1950         height += GetAscentOfRow(row) + GetDescentOfRow(row) +
1951             GetAdditionalHeight(GetCellNumber(row, 0));
1952     return height;
1953 }
1954
1955
1956 bool LyXTabular::IsPartOfMultiColumn(int row, int column) const
1957 {
1958     if ((row >= rows_) || (column >= columns_))
1959         return false;
1960     return (cell_info[row][column].multicolumn == CELL_PART_OF_MULTICOLUMN);
1961 }
1962
1963
1964 int LyXTabular::TeXTopHLine(ostream & os, int row) const
1965 {
1966     int const fcell = GetFirstCellInRow(row);
1967     int const n = NumberOfCellsInRow(fcell) + fcell;
1968     int tmp = 0;
1969
1970     for (int i = fcell; i < n; ++i) {
1971         if (TopLine(i))
1972             ++tmp;
1973     }
1974     if (tmp == (n - fcell)){
1975         os << "\\hline ";
1976     } else if (tmp) {
1977         for (int i = fcell; i < n; ++i) {
1978             if (TopLine(i)) {
1979                 os << "\\cline{"
1980                    << column_of_cell(i) + 1
1981                    << '-'
1982                    << right_column_of_cell(i) + 1
1983                    << "} ";
1984             }
1985         }
1986     } else {
1987         return 0;
1988     }
1989     os << "\n";
1990     return 1;
1991 }
1992
1993
1994 int LyXTabular::TeXBottomHLine(ostream & os, int row) const
1995 {
1996     int const fcell = GetFirstCellInRow(row);
1997     int const n = NumberOfCellsInRow(fcell) + fcell;
1998     int tmp = 0;
1999
2000     for (int i = fcell; i < n; ++i) {
2001         if (BottomLine(i))
2002             ++tmp;
2003     }
2004     if (tmp == (n-fcell)){
2005         os << "\\hline";
2006     } else if (tmp) {
2007         for (int i = fcell; i < n; ++i) {
2008             if (BottomLine(i)) {
2009                 os << "\\cline{"
2010                    << column_of_cell(i) + 1
2011                    << '-'
2012                    << right_column_of_cell(i) + 1
2013                    << "} ";
2014             }
2015         }
2016     } else {
2017         return 0;
2018     }
2019     os << "\n";
2020     return 1;
2021 }
2022
2023
2024 int LyXTabular::TeXCellPreamble(ostream & os, int cell) const
2025 {
2026     int ret = 0;
2027
2028     if (GetRotateCell(cell)) {
2029         os << "\\begin{sideways}\n";
2030         ++ret;
2031     }
2032     if (IsMultiColumn(cell)) {
2033         os << "\\multicolumn{" << cells_in_multicolumn(cell) << "}{";
2034         if (!cellinfo_of_cell(cell+1)->align_special.empty()) {
2035             os << cellinfo_of_cell(cell+1)->align_special << "}{";
2036         } else {
2037             if (LeftLine(cell))
2038                 os << '|';
2039             if (!GetPWidth(cell).empty()) {
2040                 switch (GetVAlignment(cell)) {
2041                 case LYX_VALIGN_TOP:
2042                     os << "p";
2043                     break;
2044                 case LYX_VALIGN_CENTER:
2045                     os << "m";
2046                     break;
2047                 case LYX_VALIGN_BOTTOM:
2048                     os << "b";
2049                     break;
2050                 }
2051                 os << "{" << GetPWidth(cell) << '}';
2052             } else {
2053                 switch (GetAlignment(cell)) {
2054                 case LYX_ALIGN_LEFT:
2055                     os << 'l';
2056                     break;
2057                 case LYX_ALIGN_RIGHT:
2058                     os << 'r';
2059                     break;
2060                 default:
2061                     os << 'c';
2062                     break;
2063                 }
2064             }
2065             if (RightLine(cell))
2066                 os << '|';
2067             if (((cell + 1) < numberofcells) && !IsFirstCellInRow(cell+1) &&
2068                 LeftLine(cell+1))
2069                 os << '|';
2070             os << "}{";
2071         }
2072     }
2073     if (GetUsebox(cell) == BOX_PARBOX) {
2074         os << "\\parbox[";
2075         switch (GetVAlignment(cell)) {
2076         case LYX_VALIGN_TOP:
2077             os << "t";
2078             break;
2079         case LYX_VALIGN_CENTER:
2080             os << "c";
2081             break;
2082         case LYX_VALIGN_BOTTOM:
2083             os << "b";
2084             break;
2085         }
2086         os << "]{" << GetPWidth(cell) << "}{";
2087     } else if (GetUsebox(cell) == BOX_MINIPAGE) {
2088         os << "\\begin{minipage}[";
2089         switch (GetVAlignment(cell)) {
2090         case LYX_VALIGN_TOP:
2091             os << "t";
2092             break;
2093         case LYX_VALIGN_CENTER:
2094             os << "m";
2095             break;
2096         case LYX_VALIGN_BOTTOM:
2097             os << "b";
2098             break;
2099         }
2100         os << "]{" << GetPWidth(cell) << "}\n";
2101         ++ret;
2102     }
2103     return ret;
2104 }
2105
2106
2107 int LyXTabular::TeXCellPostamble(ostream & os, int cell) const
2108 {
2109     int ret = 0;
2110
2111     // usual cells
2112     if (GetUsebox(cell) == BOX_PARBOX)
2113         os << "}";
2114     else if (GetUsebox(cell) == BOX_MINIPAGE) {
2115         os << "%\n\\end{minipage}";
2116         ret += 2;
2117     }
2118     if (IsMultiColumn(cell)){
2119         os << '}';
2120     }
2121     if (GetRotateCell(cell)) {
2122         os << "%\n\\end{sideways}";
2123         ++ret;
2124     }
2125     return ret;
2126 }
2127
2128
2129 int LyXTabular::Latex(Buffer const * buf,
2130                       ostream & os, bool fragile, bool fp) const
2131 {
2132     int ret = 0;
2133     int cell = 0;
2134
2135     //+---------------------------------------------------------------------
2136     //+                      first the opening preamble                    +
2137     //+---------------------------------------------------------------------
2138
2139     if (rotate) {
2140         os << "\\begin{sideways}\n";
2141         ++ret;
2142     }
2143     if (is_long_tabular)
2144         os << "\\begin{longtable}{";
2145     else
2146         os << "\\begin{tabular}{";
2147     for (int i = 0; i < columns_; ++i) {
2148         if (column_info[i].left_line)
2149             os << '|';
2150         if (!column_info[i].align_special.empty()) {
2151             os << column_info[i].align_special;
2152         } else if (!column_info[i].p_width.empty()) {
2153             switch (column_info[i].valignment) {
2154             case LYX_VALIGN_TOP:
2155                 os << "p";
2156                 break;
2157             case LYX_VALIGN_CENTER:
2158                 os << "m";
2159                 break;
2160             case LYX_VALIGN_BOTTOM:
2161                 os << "b";
2162                 break;
2163             }
2164             os << "{"
2165                << column_info[i].p_width
2166                << '}';
2167         } else {
2168             switch (column_info[i].alignment) {
2169             case LYX_ALIGN_LEFT:
2170                 os << 'l';
2171                 break;
2172             case LYX_ALIGN_RIGHT:
2173                 os << 'r';
2174                 break;
2175             default:
2176                 os << 'c';
2177                 break;
2178             }
2179         }
2180         if (column_info[i].right_line)
2181             os << '|';
2182     }
2183     os << "}\n";
2184     ++ret;
2185
2186     //+---------------------------------------------------------------------
2187     //+                      the single row and columns (cells)            +
2188     //+---------------------------------------------------------------------
2189
2190     //int bret;
2191     for (int i = 0; i < rows_; ++i) {
2192         ret += TeXTopHLine(os, i);
2193         int bret = ret;
2194         if (IsLongTabular()) {
2195             if ((endhead < 0) && (i == (abs(endhead)-1))) {
2196                 os << "\\endhead\n";
2197                 ++ret;
2198             }
2199             if ((endfirsthead < 0) && (i == (abs(endfirsthead)-1))) {
2200                 os << "\\endfirsthead\n";
2201                 ++ret;
2202             }
2203             if ((endfoot < 0) && (i == (abs(endfoot)-1))) {
2204                 os << "\\endfoot\n";
2205                 ++ret;
2206             }
2207             if ((endlastfoot < 0) && (i == (abs(endlastfoot)-1))) {
2208                 os << "\\endlastfoot\n";
2209                 ++ret;
2210             }
2211         }
2212         if (ret > bret) {
2213             if (i > 0)
2214                 ret += TeXBottomHLine(os, i-1);
2215             ret += TeXTopHLine(os, i);
2216         }
2217         for (int j = 0; j < columns_; ++j) {
2218             if (IsPartOfMultiColumn(i,j))
2219                 continue;
2220             ret += TeXCellPreamble(os, cell);
2221             ret += GetCellInset(cell)->Latex(buf, os, fragile, fp);
2222             ret += TeXCellPostamble(os, cell);
2223             if (!IsLastCellInRow(cell)) { // not last cell in row
2224                 os << "&\n";
2225                 ++ret;
2226             }
2227             ++cell;
2228         }
2229         os << "\\\\\n";
2230         ret += TeXBottomHLine(os, i);
2231         bret = ret;
2232         if (IsLongTabular()) {
2233             if ((endhead > 0) && (i == (endhead - 1))) {
2234                 os << "\\endhead\n";
2235                 ++ret;
2236             }
2237             if ((endfirsthead > 0) && (i == (endfirsthead - 1))) {
2238                 os << "\\endfirsthead\n";
2239                 ++ret;
2240             }
2241             if ((endfoot > 0) && (i == (endfoot - 1))) {
2242                 os << "\\endfoot\n";
2243                 ++ret;
2244             }
2245             if ((endlastfoot > 0) && (i == (endlastfoot - 1))) {
2246                 os << "\\endlastfoot\n";
2247                 ++ret;
2248             }
2249             if (ret > bret)
2250                 ret += TeXBottomHLine(os, i);
2251             if (row_info[i].newpage) {
2252                 os << "\\newpage\n";
2253                 ++ret;
2254             }
2255         }
2256     }
2257
2258     //+---------------------------------------------------------------------
2259     //+                      the closing of the tabular                    +
2260     //+---------------------------------------------------------------------
2261
2262     if (is_long_tabular)
2263         os << "\\end{longtable}";
2264     else
2265         os << "\\end{tabular}";
2266     if (rotate) {
2267         os << "\n\\end{sideways}";
2268         ++ret;
2269     }
2270
2271     return ret;
2272 }
2273
2274
2275 int LyXTabular::DocBook(Buffer const * buf, ostream & os) const
2276 {
2277     int ret = 0;
2278
2279     //+---------------------------------------------------------------------
2280     //+                      first the opening preamble                    +
2281     //+---------------------------------------------------------------------
2282
2283     os << "<tgroup cols=\"" << columns_
2284        << "\" colsep=\"1\" rowsep=\"1\">\n";
2285     
2286     for (int i = 0; i < columns_; ++i) {
2287         os << "<colspec colname=\"col" << i << "\" align=\"";
2288         switch (column_info[i].alignment) {
2289         case LYX_ALIGN_LEFT:
2290             os << "left";
2291             break;
2292         case LYX_ALIGN_RIGHT:
2293             os << "right";
2294             break;
2295         default:
2296             os << "center";
2297             break;
2298         }
2299         os << "\"/>\n";
2300         ++ret;
2301     }
2302
2303     //+---------------------------------------------------------------------
2304     //+                      the single row and columns (cells)            +
2305     //+---------------------------------------------------------------------
2306
2307     int cell = 0;
2308     os << "<tbody>\n";
2309     for (int i = 0; i < rows_; ++i) {
2310         os << "<row>\n";
2311         for (int j = 0; j < columns_; ++j) {
2312             if (IsPartOfMultiColumn(i, j))
2313                 continue;
2314             
2315             os << "<entry align=\"";
2316             switch (GetAlignment(cell)) {
2317             case LYX_ALIGN_LEFT:
2318                 os << "left";
2319                 break;
2320             case LYX_ALIGN_RIGHT:
2321                 os << "right";
2322                 break;
2323             default:
2324                 os << "center";
2325                 break;
2326             }
2327             
2328             os << "\" valign=\"";
2329             switch (GetVAlignment(cell)) {
2330             case LYX_VALIGN_TOP:
2331                 os << "top";
2332                 break;
2333             case LYX_VALIGN_BOTTOM:
2334                 os << "bottom";
2335                 break;
2336             case LYX_VALIGN_CENTER:
2337                 os << "middle";
2338             }
2339             os << "\"";
2340             
2341             if (IsMultiColumn(cell)) {
2342                 os << " namest=\"col" << j << "\" ";
2343                 os << "nameend=\"col" << j + cells_in_multicolumn(cell) - 1<< "\"";
2344             }
2345             
2346             os << ">";
2347             ret += GetCellInset(cell)->DocBook(buf, os);
2348             os << "</entry>";
2349             ++cell;
2350         }
2351         os << "</row>\n";
2352     }
2353     os << "</tbody>\n";
2354     //+---------------------------------------------------------------------
2355     //+                      the closing of the tabular                    +
2356     //+---------------------------------------------------------------------
2357
2358     os << "</tgroup>";
2359     ++ret;
2360
2361     return ret;
2362 }
2363
2364
2365 static
2366 inline
2367 void print_n_chars(ostream & os, unsigned char ch, int n)
2368 {
2369         os << string(n, ch);
2370 }
2371
2372
2373 int LyXTabular::AsciiTopHLine(ostream & os, int row,
2374                               vector<unsigned int> const & clen) const
2375 {
2376     int const fcell = GetFirstCellInRow(row);
2377     int const n = NumberOfCellsInRow(fcell) + fcell;
2378
2379 #if 0
2380     int tmp = 0;
2381
2382     for (int i = fcell; i < n; ++i) {
2383         if (TopLine(i))
2384             ++tmp;
2385     }
2386     if (!tmp)
2387         return 0;
2388 #else
2389     // Isn't this equivalent? (Lgb)
2390 #warning Please check this Jürgen.
2391     // If ok please delete the abofe #if 0 section. (Lgb)
2392     for (int i = fcell; i < n; ++i) {
2393             if (TopLine(i))
2394                     return 0;
2395     }
2396 #endif
2397
2398     unsigned char ch;
2399     for (int i = fcell; i < n; ++i) {
2400         if (TopLine(i)) {
2401             if (LeftLine(i))
2402                 os << "+-";
2403             else
2404                 os << "--";
2405             ch = '-';
2406         } else {
2407             os << "  ";
2408             ch = ' ';
2409         }
2410         int column = column_of_cell(i);
2411         int len = clen[column];
2412         while(IsPartOfMultiColumn(row, ++column))
2413             len += clen[column] + 4;
2414         print_n_chars(os, ch, len);
2415         if (TopLine(i)) {
2416             if (RightLine(i))
2417                 os << "-+";
2418             else
2419                 os << "--";
2420         } else {
2421             os << "  ";
2422         }
2423     }
2424     os << endl;
2425     return 1;
2426 }
2427
2428
2429 int LyXTabular::AsciiBottomHLine(ostream & os, int row,
2430                                  vector<unsigned int> const & clen) const
2431 {
2432     int const fcell = GetFirstCellInRow(row);
2433     int const n = NumberOfCellsInRow(fcell) + fcell;
2434
2435 #if 0
2436     int tmp = 0;
2437
2438     for (int i = fcell; i < n; ++i) {
2439         if (BottomLine(i))
2440             ++tmp;
2441     }
2442     if (!tmp)
2443         return 0;
2444 #else
2445     // Isn't this equivalent? (Lgb)
2446 #warning Please check this Jürgen.
2447     // If ok, please delete the above #if 0 section. (Lgb)
2448     for (int i = fcell; i < n; ++i) {
2449         if (BottomLine(i))
2450             return 0;
2451     }
2452 #endif
2453     unsigned char ch;
2454     for (int i = fcell; i < n; ++i) {
2455         if (BottomLine(i)) {
2456             if (LeftLine(i))
2457                 os << "+-";
2458             else
2459                 os << "--";
2460             ch = '-';
2461         } else {
2462             os << "  ";
2463             ch = ' ';
2464         }
2465         int column = column_of_cell(i);
2466         int len = clen[column];
2467         while(IsPartOfMultiColumn(row, ++column))
2468             len += clen[column] + 4;
2469         print_n_chars(os, ch, len);
2470         if (BottomLine(i)) {
2471             if (RightLine(i))
2472                 os << "-+";
2473             else
2474                 os << "--";
2475         } else {
2476             os << "  ";
2477         }
2478     }
2479     os << endl;
2480     return 1;
2481 }
2482
2483
2484 int LyXTabular::AsciiPrintCell(Buffer const * buf, ostream & os,
2485                                int cell, int row, int column,
2486                                vector<unsigned int> const & clen) const
2487 {
2488     ostringstream sstr;
2489     int ret = GetCellInset(cell)->Ascii(buf, sstr, 0);
2490
2491     if (LeftLine(cell))
2492         os << "| ";
2493     else
2494         os << "  ";
2495
2496     unsigned int len1 = sstr.str().length();
2497     unsigned int len2 = clen[column];
2498     while(IsPartOfMultiColumn(row, ++column))
2499         len2 += clen[column] + 4;
2500     len2 -= len1;
2501
2502     switch (GetAlignment(cell)) {
2503     default:
2504     case LYX_ALIGN_LEFT:
2505         len1 = 0;
2506         break;
2507     case LYX_ALIGN_RIGHT:
2508         len1 = len2;
2509         len2 = 0;
2510         break;
2511     case LYX_ALIGN_CENTER:
2512         len1 = len2 / 2;
2513         len2 -= len1;
2514         break;
2515     }
2516
2517     for (unsigned int i = 0; i < len1; ++i)
2518         os << " ";
2519     os << sstr.str();
2520     for (unsigned int i = 0; i < len2; ++i)
2521         os << " ";
2522     if (RightLine(cell))
2523         os << " |";
2524     else
2525         os << "  ";
2526
2527     return ret * 0; // eh? (Lgb)
2528 }
2529
2530
2531 int LyXTabular::Ascii(Buffer const * buf, ostream & os) const
2532 {
2533     int ret = 0;
2534
2535     //+---------------------------------------------------------------------
2536     //+           first calculate the width of the single columns          +
2537     //+---------------------------------------------------------------------
2538     vector<unsigned int> clen(columns_);
2539
2540     // first all non (real) multicolumn cells!
2541     for (int j = 0; j < columns_; ++j) {
2542         clen[j] = 0;
2543         for (int i = 0; i < rows_; ++i) {
2544             int cell = GetCellNumber(i, j);
2545             if (IsMultiColumn(cell, true))
2546                 continue;
2547             ostringstream sstr;
2548             GetCellInset(cell)->Ascii(buf, sstr, 0);
2549             if (clen[j] < sstr.str().length())
2550                 clen[j] = sstr.str().length();
2551         }
2552     }
2553     // then all (real) multicolumn cells!
2554     for (int j = 0; j < columns_; ++j) {
2555         for (int i = 0; i < rows_; ++i) {
2556             int cell = GetCellNumber(i, j);
2557             if (!IsMultiColumn(cell, true) || IsPartOfMultiColumn(i, j))
2558                 continue;
2559             ostringstream sstr;
2560             GetCellInset(cell)->Ascii(buf, sstr, 0);
2561             int len = int(sstr.str().length());
2562             int const n = cells_in_multicolumn(cell);
2563             for (int k = j; (len > 0) && (k < (j + n - 1)); ++k)
2564                 len -= clen[k];
2565             if (len > int(clen[j + n - 1]))
2566                 clen[j + n - 1] = len;
2567         }
2568     }
2569     int cell = 0;
2570     for (int i = 0; i < rows_; ++i) {
2571         AsciiTopHLine(os, i, clen);
2572         for (int j = 0; j < columns_; ++j) {
2573             if (IsPartOfMultiColumn(i,j))
2574                 continue;
2575             ret += AsciiPrintCell(buf, os, cell, i, j, clen);
2576             ++cell;
2577         }
2578         os << endl;
2579         AsciiBottomHLine(os, i, clen);
2580     }
2581     return ret;
2582 }
2583
2584
2585 InsetText * LyXTabular::GetCellInset(int cell) const
2586 {
2587     return & cell_info[row_of_cell(cell)][column_of_cell(cell)].inset;
2588 }
2589
2590
2591 void LyXTabular::Validate(LaTeXFeatures & features) const
2592 {
2593     if (IsLongTabular())
2594         features.longtable = true;
2595     if (NeedRotating())
2596         features.rotating = true;
2597     for (int cell = 0; cell < numberofcells; ++cell) {
2598         if (GetVAlignment(cell) != LYX_VALIGN_TOP)
2599             features.array = true;
2600         GetCellInset(cell)->Validate(features);
2601     }
2602 }
2603
2604
2605 LyXTabular::BoxType LyXTabular::UseParbox(int cell) const
2606 {
2607     LyXParagraph * par = GetCellInset(cell)->par;
2608
2609     for (; par; par = par->next) {
2610         for (int i = 0; i < par->Last(); ++i) {
2611             if (par->GetChar(i) == LyXParagraph::META_NEWLINE)
2612                 return BOX_PARBOX;
2613         }
2614     }
2615     return BOX_NONE;
2616 }