]> git.lyx.org Git - lyx.git/blob - src/table.C
Move some using directives at the beginninc of files
[lyx.git] / src / table.C
1 /* This file is part of
2  * ====================================================== 
3  * 
4  *           LyX, The Document Processor
5  *       
6  *        Copyright (C) 1995 Matthias Ettrich
7  *        Copyright (C) 1995-1998 The LyX Team.
8  *
9  * ====================================================== 
10  */
11
12 #include <config.h>
13
14 #include <cstdlib>
15 #include "table.h"
16 #include "vspace.h"
17 #include "layout.h"
18 #include "support/lstrings.h"
19
20 #include <algorithm>
21 using std::max;
22
23 #ifdef __GNUG__
24 #pragma implementation
25 #endif
26
27 extern void addNewlineAndDepth(string & file, int const depth); // Jug 990923
28
29 static int const WIDTH_OF_LINE = 5;
30
31 /* konstruktor */
32 LyXTable::LyXTable(int rows_arg, int columns_arg)
33 {
34         Init(rows_arg, columns_arg);
35 }
36
37
38 LyXTable::LyXTable(LyXLex & lex)
39 {
40         istream & is = lex.getStream();
41         Read(is);
42 }
43
44
45 LyXTable::~LyXTable() {
46         delete[] rowofcell;
47         delete[] columnofcell;
48         delete[] column_info;
49         delete[] row_info;
50         for (int i = 0; i < rows; ++i) {
51                 delete[] cell_info[i]; // verify that this shoudn't be freed with delete
52         }
53         delete[] cell_info;
54 }
55
56
57 LyXTable * LyXTable::Clone()
58 {
59     LyXTable * result = new LyXTable(rows, columns);
60     int row, column;;
61
62     for (row = 0; row < rows; ++row) {
63         for (column = 0; column < columns; ++column) {
64             result->cell_info[row][column] = cell_info[row][column];
65         }
66     }
67
68     for (row = 0; row < rows; ++row) {
69         result->row_info[row] = row_info[row];
70     }
71
72     for (column = 0; column < columns; ++column) {
73         result->column_info[column].left_line = column_info[column].left_line;
74         result->column_info[column].right_line = column_info[column].right_line;
75         result->column_info[column].alignment = column_info[column].alignment;
76         result->column_info[column].p_width = column_info[column].p_width;
77         result->column_info[column].align_special = column_info[column].align_special;
78     }
79   
80     result->SetLongTable(is_long_table);
81     result->rotate = rotate;
82     result->Reinit();
83     return result;
84 }
85
86
87 /* activates all lines and sets all widths to 0 */ 
88 void LyXTable::Init(int rows_arg, int columns_arg)
89 {
90     int i, j;
91     rows = rows_arg;
92     columns = columns_arg;
93     column_info = new columnstruct[columns];
94     row_info = new rowstruct[rows];
95     cell_info = new cellstruct*[rows];
96
97     int cellno = 0;
98     for (i = 0; i < rows; ++i) {
99         cell_info[i] = new cellstruct[columns];
100         row_info[i].top_line = true;
101         row_info[i].bottom_line = false;
102         row_info[i].is_cont_row = false;
103         row_info[i].newpage = false;
104         for (j = 0; j < columns; ++j) {
105             cell_info[i][j].cellno = cellno++;
106             cell_info[i][j].width_of_cell = 0;
107             cell_info[i][j].multicolumn = LyXTable::CELL_NORMAL;
108             cell_info[i][j].alignment = LYX_ALIGN_CENTER;
109             cell_info[i][j].top_line = row_info[i].top_line;
110             cell_info[i][j].bottom_line = row_info[i].bottom_line;
111             cell_info[i][j].has_cont_row = false;
112             cell_info[i][j].rotate = false;
113             cell_info[i][j].linebreaks = false;
114         }
115     }
116     row_info[i-1].bottom_line = true;
117     row_info[0].bottom_line = true;
118
119     for (i = 0; i < columns; ++i) {
120         column_info[i].left_line = true;
121         column_info[i].right_line = false;
122         column_info[i].alignment = LYX_ALIGN_CENTER;
123         // set width_of_column to zero before it is used in
124         // calculate_width_of_column() (thornley)
125         column_info[i].width_of_column = 0;
126         calculate_width_of_column(i);
127     }
128     column_info[i-1].right_line = true;
129    
130     calculate_width_of_table();
131
132     rowofcell = 0;
133     columnofcell = 0;
134     set_row_column_number_info();
135     is_long_table = false;
136     rotate = 0;
137     endhead = -1;
138     endfirsthead = -1;
139     endfoot = -1;
140     endlastfoot = -1;
141 }
142
143
144 void LyXTable::AppendRow(int cell)
145 {
146     int row = row_of_cell(cell);
147     rowstruct * row_info2 = new rowstruct[rows + 1];
148     cellstruct ** cell_info2 = new cellstruct * [rows + 1];
149     int i;
150
151     for (i = 0; i <= row; ++i) {
152         cell_info2[i] = cell_info[i];
153         row_info2[i] = row_info[i];
154     }
155     for (i = rows - 1; i >= row; --i) {
156         cell_info2[i + 1] = cell_info[i];
157         row_info2[i + 1] = row_info[i];
158     }
159     for (i = row; row_info[i].is_cont_row; --i);
160     if (((row + 1) >= rows) || !row_info[row + 1].is_cont_row)
161         row_info2[row + 1].is_cont_row = false;
162     row_info2[row + 1].top_line = row_info[i].top_line;
163     cell_info2[row + 1] = new cellstruct[columns];
164     for (i = 0; i < columns; ++i) {
165         cell_info2[row + 1][i].width_of_cell = 0;
166         cell_info2[row + 1][i] = cell_info2[row][i];
167     }
168    
169     delete[] cell_info;
170     cell_info = cell_info2;
171     delete[] row_info;
172     row_info = row_info2;
173    
174     ++rows;
175    
176     Reinit();
177 }
178
179
180 void LyXTable::DeleteRow(int cell)
181 {
182         int row = row_of_cell(cell);
183         while(!row_info[row].is_cont_row && RowHasContRow(cell))
184             DeleteRow(cell_info[row+1][0].cellno);
185         rowstruct * row_info2 = new rowstruct[rows - 1];
186         cellstruct ** cell_info2 = new cellstruct * [rows - 1];
187
188         delete[] cell_info[row];
189         int i = 0;
190         for (; i < row; ++i) {
191                 cell_info2[i] = cell_info[i];
192                 row_info2[i] = row_info[i];
193         }
194         if (row_info[i].is_cont_row)
195             row_info2[i - 1].bottom_line = row_info[i].bottom_line;
196         for (i = row; i < rows - 1; ++i) {
197                 cell_info2[i] = cell_info[i + 1];
198                 row_info2[i] = row_info[i + 1];
199         }
200
201         delete[] cell_info;
202         cell_info = cell_info2;
203         delete[] row_info;
204         row_info = row_info2;
205    
206         --rows;
207
208         Reinit();
209 }
210
211
212 void LyXTable::AppendColumn(int cell)
213 {
214     int j;
215     columnstruct * column_info2 = new columnstruct[columns + 1];
216     int column = right_column_of_cell(cell);
217
218     int i = 0;
219     for (; i <= column; ++i) {
220         column_info2[i] = column_info[i];
221     }
222     for (i = columns - 1; i >= column; --i) {
223         column_info2[i + 1] = column_info[i];
224     }
225     
226     delete[] column_info;
227     column_info = column_info2;
228     
229     for (i = 0; i < rows; ++i) {
230         cellstruct * tmp = cell_info[i];
231         cell_info[i] = new cellstruct[columns + 1];
232         for (j = 0; j <= column; ++j) {
233             cell_info[i][j] = tmp[j];
234         }
235         for (j = column; j < columns; ++j) {
236             cell_info[i][j + 1] = tmp[j];
237         }
238         // care about multicolumns
239         if (cell_info[i][column + 1].multicolumn
240             == LyXTable::CELL_BEGIN_OF_MULTICOLUMN){
241             cell_info[i][column + 1].multicolumn = 
242                 LyXTable::CELL_PART_OF_MULTICOLUMN;
243         }
244         if (column + 1 == columns
245             || cell_info[i][column + 2].multicolumn
246             != LyXTable::CELL_PART_OF_MULTICOLUMN){
247             cell_info[i][column + 1].multicolumn = 
248                 LyXTable::CELL_NORMAL;
249         }
250         delete[] tmp;
251     }
252     
253     ++columns;
254     Reinit();
255 }
256
257
258 void LyXTable::Reinit()
259 {   
260         int j;
261
262         int i = 0;
263         for (; i < rows; ++i) {
264                 for (j = 0; j < columns; ++j) {
265                         cell_info[i][j].width_of_cell = 0;
266                         if ((i + 1 < rows) && !row_info[i+1].is_cont_row)
267                             cell_info[i][j].has_cont_row = false;
268                 }
269         }
270   
271         for (i = 0; i < columns; ++i) {
272                 calculate_width_of_column(i);
273         }
274         calculate_width_of_table();
275
276         set_row_column_number_info();
277 }
278
279
280 void LyXTable::set_row_column_number_info()
281 {
282         int c = 0;
283         int column = 0;
284         numberofcells = -1;
285         int row = 0;
286         for (; row < rows; ++row) {
287                 for (column = 0; column<columns; ++column) {
288                         if (cell_info[row][column].multicolumn
289                             != LyXTable::CELL_PART_OF_MULTICOLUMN)
290                                 ++numberofcells;
291                         cell_info[row][column].cellno = numberofcells;
292                 }
293         }
294         ++numberofcells; // because this is one more than as we start from 0
295         row = 0;
296         column = 0;
297
298         if (rowofcell) // DEL LINE
299                 delete [] rowofcell;
300         rowofcell = new int[numberofcells];
301         if (columnofcell) // DEL LINE
302                 delete [] columnofcell;
303         columnofcell = new int[numberofcells];
304   
305         while (c < numberofcells && row < rows && column < columns) {
306                 rowofcell[c] = row;
307                 columnofcell[c] = column;
308                 ++c;
309                 do{
310                         ++column;
311                 } while (column < columns &&
312                          cell_info[row][column].multicolumn
313                          == LyXTable::CELL_PART_OF_MULTICOLUMN);
314                 if (column == columns){
315                         column = 0;
316                         ++row;
317                 }
318         }
319 }
320
321
322 void LyXTable::DeleteColumn(int cell)
323 {
324         int column1 = column_of_cell(cell);
325         int column2 = right_column_of_cell(cell);
326    
327         if (column1 == 0 && column2 == columns - 1)
328                 return;
329    
330         for (int column = column1; column <= column2; ++column) {
331                 delete_column(column1);
332         }
333         Reinit();
334 }
335
336
337 int LyXTable::GetNumberOfCells()
338 {
339         return numberofcells;
340 }
341
342
343 int LyXTable::NumberOfCellsInRow(int cell)
344 {
345         int row = row_of_cell(cell);
346         int result = 0;
347         for (int i = 0; i < columns; ++i) {
348                 if (cell_info[row][i].multicolumn != LyXTable::CELL_PART_OF_MULTICOLUMN)
349                         ++result;
350         }
351         return result;
352 }
353
354
355 int LyXTable::AppendCellAfterCell(int append_cell, int question_cell)
356 {
357         return (right_column_of_cell(append_cell) == 
358                 right_column_of_cell(question_cell));
359 }
360
361
362 int LyXTable::DeleteCellIfColumnIsDeleted(int cell, int delete_column_cell)
363 {
364     if (column_of_cell(delete_column_cell) == 0 && 
365         right_column_of_cell(delete_column_cell) == columns - 1)
366         return 0;
367     else
368         return
369             (column_of_cell(cell) >= column_of_cell(delete_column_cell) &&
370              column_of_cell(cell) <= right_column_of_cell(delete_column_cell));
371 }
372
373
374 /* returns 1 if there is a topline, returns 0 if not */ 
375 bool LyXTable::TopLine(int cell)
376 {
377     int row = row_of_cell(cell);
378     
379     if (IsContRow(cell))
380         return TopLine(cell_info[row-1][column_of_cell(cell)].cellno);
381     if (IsMultiColumn(cell))
382         return cellinfo_of_cell(cell)->top_line;
383     return row_info[row].top_line;
384 }
385
386
387 bool LyXTable::BottomLine(int cell)
388 {
389     //no bottom line underneath non-existent cells if you please
390     if(cell >= numberofcells)
391         return false;
392
393     int row = row_of_cell(cell);
394     
395     if (RowHasContRow(cell))
396         return BottomLine(cell_info[row+1][column_of_cell(cell)].cellno);
397     if (IsMultiColumn(cell))
398         return cellinfo_of_cell(cell)->bottom_line;
399     return row_info[row_of_cell(cell)].bottom_line;
400 }
401
402
403 bool LyXTable::LeftLine(int cell)
404 {
405         return column_info[column_of_cell(cell)].left_line;
406 }
407
408
409 bool LyXTable::RightLine(int cell)
410 {
411         return column_info[right_column_of_cell(cell)].right_line;
412 }
413
414
415 bool LyXTable::TopAlreadyDrawed(int cell)
416 {
417         if (AdditionalHeight(cell))
418                 return false;
419         int row = row_of_cell(cell);
420         if (row > 0){
421                 int column = column_of_cell(cell);
422                 while (column
423                        && cell_info[row-1][column].multicolumn
424                        == LyXTable::CELL_PART_OF_MULTICOLUMN)
425                         --column;
426                 if (cell_info[row-1][column].multicolumn
427                     == LyXTable::CELL_NORMAL)
428                         return row_info[row-1].bottom_line;
429                 else
430                         return cell_info[row-1][column].bottom_line;
431         }
432         return false;
433 }
434
435
436 bool LyXTable::VeryLastRow(int cell)
437 {
438         return (row_of_cell(cell) == rows - 1);
439 }
440
441
442 int LyXTable::AdditionalHeight(int cell)
443 {
444         int row = row_of_cell(cell);
445         if (!row) return 0;
446         
447         int top = 1; // bool top = true; ??
448         int bottom = 1; // bool bottom = true; ??
449         int column;
450
451         for (column = 0; column < columns - 1 && bottom; ++column) {
452                 switch (cell_info[row - 1][column].multicolumn) {
453                 case LyXTable::CELL_BEGIN_OF_MULTICOLUMN:
454                         bottom = cell_info[row - 1][column].bottom_line;
455                         break;
456                 case LyXTable::CELL_NORMAL:
457                         bottom = row_info[row - 1].bottom_line;
458                 }
459         }
460         for (column = 0; column < columns - 1 && top; ++column) {
461                 switch (cell_info[row][column].multicolumn){
462                 case LyXTable::CELL_BEGIN_OF_MULTICOLUMN:
463                         top = cell_info[row][column].top_line;
464                         break;
465                 case LyXTable::CELL_NORMAL:
466                         top = row_info[row].top_line;
467                 }
468         }
469         if (top && bottom)
470                 return WIDTH_OF_LINE;
471         return 0;
472 }
473
474
475 int LyXTable::AdditionalWidth(int cell)
476 {
477         // internally already set in SetWidthOfCell
478         // used to get it back in text.C
479         int col = right_column_of_cell(cell);
480         if (col < columns - 1 && column_info[col].right_line &&
481             column_info[col+1].left_line)
482                 return WIDTH_OF_LINE;
483         else
484                 return 0;
485 }
486
487
488 // returns the maximum over all rows 
489 int LyXTable::WidthOfColumn(int cell)
490 {
491         int column1 = column_of_cell(cell);
492         int column2 = right_column_of_cell(cell);
493         int result = 0;
494         int i = column1;
495         for (; i <= column2; ++i) {
496                 result += column_info[i].width_of_column;
497         }
498         return result;
499 }
500
501
502 int LyXTable::WidthOfTable()
503 {
504         return width_of_table;
505 }
506
507 /* returns 1 if a complete update is necessary, otherwise 0 */ 
508 bool LyXTable::SetWidthOfMulticolCell(int cell, int new_width)
509 {
510     if (!IsMultiColumn(cell))
511         return false;
512     
513     int row = row_of_cell(cell);
514     int column1 = column_of_cell(cell);
515     int column2 = right_column_of_cell(cell);
516
517     // first set columns to 0 so we can calculate the right width
518     int i = column1;
519     for (; i <= column2; ++i) {
520         cell_info[row][i].width_of_cell = 0;
521     }
522     // set the width to MAX_WIDTH until width > 0
523     int width = (new_width + 2 * WIDTH_OF_LINE);
524     for (i = column1; (i < column2) && (width > 0); ++i) {
525         cell_info[row][i].width_of_cell = column_info[i].width_of_column;
526         width -= column_info[i].width_of_column;
527     }
528     if (i == column2) {
529         cell_info[row][i].width_of_cell = width;
530     }
531     return true;
532 }
533
534
535 void LyXTable::recalculateMulticolCells(int cell, int new_width)
536 {
537         int row = row_of_cell(cell);
538         int column1 = column_of_cell(cell);
539         int column2 = right_column_of_cell(cell);
540
541     // first set columns to 0 so we can calculate the right width
542         int i = column1;
543     for (; i <= column2; ++i)
544         cell_info[row][i].width_of_cell = 0;
545     for(i = cell + 1; (i < numberofcells) && (!IsMultiColumn(i)); ++i)
546         ;
547     if (i < numberofcells)
548         recalculateMulticolCells(i, GetWidthOfCell(i) - (2 * WIDTH_OF_LINE));
549     SetWidthOfMulticolCell(cell, new_width);
550 }
551
552
553 /* returns 1 if a complete update is necessary, otherwise 0 */ 
554 bool LyXTable::SetWidthOfCell(int cell, int new_width)
555 {
556     int row = row_of_cell(cell);
557     int column1 = column_of_cell(cell);
558     int tmp = 0;
559     int width = 0;
560
561     if (IsMultiColumn(cell)) {
562         tmp = SetWidthOfMulticolCell(cell, new_width);
563     } else {
564         width = (new_width + 2*WIDTH_OF_LINE);
565         cell_info[row][column1].width_of_cell = width;
566         if (column_info[column1].right_line && (column1 < columns-1) &&
567             column_info[column1+1].left_line) // additional width
568             cell_info[row][column1].width_of_cell += WIDTH_OF_LINE;
569         tmp = calculate_width_of_column_NMC(column1);
570     }
571     if (tmp) {
572         int i;
573         for(i = 0; i<columns;++i)
574             calculate_width_of_column_NMC(i);
575         for(i = 0; (i<numberofcells) && !IsMultiColumn(i); ++i)
576             ;
577         if (i<numberofcells)
578             recalculateMulticolCells(i, GetWidthOfCell(i)-(2*WIDTH_OF_LINE));
579         for(i = 0; i<columns;++i)
580             calculate_width_of_column(i);
581         calculate_width_of_table();
582         return true;
583     }
584     return false;
585 }
586
587
588 bool LyXTable::SetAlignment(int cell, char align)
589 {
590     if (!IsMultiColumn(cell))
591         column_info[column_of_cell(cell)].alignment = align;
592     cellinfo_of_cell(cell)->alignment = align;
593     return true;
594 }
595
596 bool LyXTable::SetPWidth(int cell, string width)
597 {
598     int fvcell = FirstVirtualCell(cell);
599
600     if (IsMultiColumn(fvcell)) {
601 //        if (column_info[column_of_cell(cell)].p_width.empty())
602 //            column_info[column_of_cell(cell)].p_width = width;
603         cellinfo_of_cell(fvcell)->p_width = width;
604     } else {
605         column_info[column_of_cell(fvcell)].p_width = width;
606         if (!width.empty()) // do this only if there is a width
607                 SetAlignment(cell, LYX_ALIGN_LEFT);
608     }
609     return true;
610 }
611
612 bool LyXTable::SetAlignSpecial(int cell, string special, int what)
613 {
614     if (what == SET_SPECIAL_MULTI)
615         cellinfo_of_cell(cell)->align_special = special;
616     else
617         column_info[column_of_cell(cell)].align_special = special;
618     return true;
619 }
620
621 bool LyXTable::SetAllLines(int cell, bool line)
622 {
623     SetTopLine(cell, line);
624     SetBottomLine(cell, line);
625     SetRightLine(cell, line);
626     SetLeftLine(cell, line);
627     return true;
628 }
629
630 bool LyXTable::SetTopLine(int cell, bool line)
631 {
632     int row = row_of_cell(cell);
633
634     if (IsContRow(cell))
635         SetTopLine(cell_info[row-1][column_of_cell(cell)].cellno, line);
636     else if (!IsMultiColumn(cell))
637         row_info[row].top_line = line;
638     else
639         cellinfo_of_cell(cell)->top_line = line;
640     return true;
641 }
642
643
644 bool LyXTable::SetBottomLine(int cell, bool line)
645 {
646     int row = row_of_cell(cell);
647
648     if (RowHasContRow(cell))
649         SetBottomLine(cell_info[row+1][column_of_cell(cell)].cellno, line);
650     else if (!IsMultiColumn(cell))
651         row_info[row_of_cell(cell)].bottom_line = line;
652     else
653         cellinfo_of_cell(cell)->bottom_line = line;
654     return true;
655 }
656
657
658 bool LyXTable::SetLeftLine(int cell, bool line)
659 {
660         column_info[column_of_cell(cell)].left_line = line;
661         return true;
662 }
663
664
665 bool LyXTable::SetRightLine(int cell, bool line)
666 {
667         column_info[right_column_of_cell(cell)].right_line = line;
668         return true;
669 }
670
671
672 char LyXTable::GetAlignment(int cell)
673 {
674         if (IsMultiColumn(cell))
675                 return cellinfo_of_cell(cell)->alignment;
676         else
677                 return column_info[column_of_cell(cell)].alignment;
678 }
679
680 string LyXTable::GetPWidth(int cell)
681 {
682         int fvcell = FirstVirtualCell(cell);
683         
684         if (IsMultiColumn(fvcell)) // && !cellinfo_of_cell(cell)->p_width.empty())
685                 return cellinfo_of_cell(fvcell)->p_width;
686         return column_info[column_of_cell(fvcell)].p_width;
687 }
688
689 string LyXTable::GetAlignSpecial(int cell, int what)
690 {
691     if (what == SET_SPECIAL_MULTI)
692         return cellinfo_of_cell(cell)->align_special;
693     return column_info[column_of_cell(cell)].align_special;
694 }
695
696 int LyXTable::GetWidthOfCell(int cell)
697 {
698         int row = row_of_cell(cell);
699         int column1 = column_of_cell(cell);
700         int column2 = right_column_of_cell(cell);
701         int result = 0;
702         int i = column1;
703         for (; i <= column2; ++i) {
704                 result += cell_info[row][i].width_of_cell;
705         }
706   
707         result += AdditionalWidth(cell);
708   
709         return result;
710 }
711
712
713 int LyXTable::GetBeginningOfTextInCell(int cell)
714 {
715         int x = 0;
716    
717         switch (GetAlignment(cell)){
718         case LYX_ALIGN_CENTER:
719                 x += (WidthOfColumn(cell) - GetWidthOfCell(cell)) / 2;
720                 break;
721         case LYX_ALIGN_RIGHT:
722                 x += WidthOfColumn(cell) - GetWidthOfCell(cell) + AdditionalWidth(cell);
723                 break;
724         default: /* LYX_ALIGN_LEFT: nothing :-) */ 
725                 break;
726         }
727
728         // the LaTeX Way :-(
729         x += WIDTH_OF_LINE;
730         return x;
731 }
732
733
734 bool LyXTable::IsFirstCell(int cell)
735 {
736         return (column_of_cell(cell) == 0);
737 }
738
739 bool LyXTable::IsLastCell(int cell)
740 {
741         return (right_column_of_cell(cell) == (columns - 1));
742 }
743
744
745 bool LyXTable::calculate_width_of_column(int column)
746 {
747         int old_column_width = column_info[column].width_of_column;
748         int maximum = 0;
749
750         for (int i = 0; i < rows; ++i) {
751                 maximum = max(cell_info[i][column].width_of_cell, maximum);
752         }
753         column_info[column].width_of_column = maximum;
754         return (column_info[column].width_of_column != old_column_width);
755 }
756
757 bool LyXTable::calculate_width_of_column_NMC(int column)
758 {
759     int old_column_width = column_info[column].width_of_column;
760     int max = 0;
761     for (int i = 0; i < rows; ++i) {
762         if (!IsMultiColumn(GetCellNumber(column, i)) &&
763             (cell_info[i][column].width_of_cell > max)) {
764             max = cell_info[i][column].width_of_cell;
765         }
766     }
767     column_info[column].width_of_column = max;
768     return (column_info[column].width_of_column != old_column_width);
769 }
770
771 void LyXTable::calculate_width_of_table()
772 {
773         width_of_table = 0;
774         for (int i = 0; i < columns; ++i) {
775                 width_of_table += column_info[i].width_of_column;
776         }
777 }
778
779
780 int LyXTable::row_of_cell(int cell) 
781 {
782     if (cell >= numberofcells)
783         return rows-1;
784     else if (cell < 0)
785         return 0;
786     return rowofcell[cell];
787 }
788
789
790 int LyXTable::column_of_cell(int cell)
791 {
792     if (cell >= numberofcells)
793         return columns-1;
794     else if (cell < 0)
795         return 0;
796     return columnofcell[cell];
797 }
798
799
800 int LyXTable::right_column_of_cell(int cell) 
801 {
802         int row = row_of_cell(cell);
803         int column = column_of_cell(cell);
804         while (column < columns - 1 &&
805                cell_info[row][column+1].multicolumn == LyXTable::CELL_PART_OF_MULTICOLUMN)
806                 ++column;
807         return column;
808 }
809
810
811 void LyXTable::Write(ostream & os)
812 {
813     int i, j;
814     os << "multicol5\n"
815        << rows << " " << columns << " " << is_long_table << " "
816        << rotate << " " << endhead << " " << endfirsthead << " "
817        << endfoot << " " << endlastfoot << "\n";
818     for (i = 0; i < rows; ++i) {
819             os << row_info[i].top_line << " "
820                << row_info[i].bottom_line << " "
821                << row_info[i].is_cont_row << " "
822                << row_info[i].newpage << "\n";
823     }
824     for (i = 0; i < columns; ++i) {
825             os << column_info[i].alignment << " "
826                << column_info[i].left_line << " "
827                << column_info[i].right_line << " \""
828                << VSpace(column_info[i].p_width).asLyXCommand() << "\" \""
829                << column_info[i].align_special << "\"\n";
830     }
831
832     for (i = 0; i < rows; ++i) {
833         for (j = 0; j < columns; ++j) {
834                 os << cell_info[i][j].multicolumn << " "
835                    << cell_info[i][j].alignment << " "
836                    << cell_info[i][j].top_line << " "
837                    << cell_info[i][j].bottom_line << " "
838                    << cell_info[i][j].has_cont_row << " "
839                    << cell_info[i][j].rotate << " "
840                    << cell_info[i][j].linebreaks << " \""
841                    << cell_info[i][j].align_special << "\" \""
842                    << cell_info[i][j].p_width << "\"\n";
843         }
844     }
845 }
846
847
848 void LyXTable::Read(istream & is)
849 {
850         int version;
851         int i, j;
852         int rows_arg = 0;
853         int columns_arg = 0;
854         int is_long_table_arg = false;
855         int rotate_arg = false;
856         int a = -1;
857         int b = -1;
858         int c = -1;
859         int d = -1;
860         int e = 0;
861         int f = 0;
862         int g = 0;
863         int h = 0;
864         
865         string s;
866         getline(is, s);
867         if (s.length() > 8)
868                 version = atoi(s.c_str() + 8);
869         else
870                 version = 1;
871 #ifdef WITH_WARNINGS
872 #warning Insert a error message window here that this format is not supported anymore
873 #endif
874         if (version < 5) {
875                 lyxerr << "Tabular format < 5 is not supported anymore\n"
876                         "Get an older version of LyX (< 1.1.x) for conversion!"
877                        << endl;
878                 if (version > 2) {
879                         is >> rows_arg >> columns_arg >> is_long_table_arg
880                            >> rotate_arg >> a >> b >> c >> d;
881                 } else
882                         is >> rows_arg >> columns_arg;
883                 Init(rows_arg, columns_arg);
884                 SetLongTable(is_long_table_arg);
885                 SetRotateTable(rotate_arg);
886                 string tmp;
887                 for (i = 0; i < rows; ++i) {
888                         getline(is, tmp);
889                 }
890                 for (i = 0; i < columns; ++i) {
891                         getline(is, tmp);
892                 }
893                 for (i = 0; i < rows; ++i) {
894                         for (j = 0; j < columns; ++j) {
895                                 getline(is, tmp);
896                         }
897                 }
898                 set_row_column_number_info();
899                 return;
900         }
901         is >> rows_arg >> columns_arg >> is_long_table_arg
902            >> rotate_arg >> a >> b >> c >> d;
903         Init(rows_arg, columns_arg);
904         SetLongTable(is_long_table_arg);
905         SetRotateTable(rotate_arg);
906         endhead = a;
907         endfirsthead = b;
908         endfoot = c;
909         endlastfoot = d;
910         for (i = 0; i < rows; ++i) {
911                 a = b = c = d = e = f = g = h = 0;
912                 is >> a >> b >> c >> d;
913                 row_info[i].top_line = a;
914                 row_info[i].bottom_line = b;
915                 row_info[i].is_cont_row = c;
916                 row_info[i].newpage = d;
917         }
918         for (i = 0; i < columns; ++i) {
919                 string s1;
920                 string s2;
921                 is >> a >> b >> c;
922                 char ch; // skip '"'
923                 is >> ch;
924                 getline(is, s1, '"');
925                 is >> ch; // skip '"'
926                 getline(is, s2, '"');
927                 column_info[i].alignment = static_cast<char>(a);
928                 column_info[i].left_line = b;
929                 column_info[i].right_line = c;
930                 column_info[i].p_width = s1;
931                 column_info[i].align_special = s2;
932         }
933         for (i = 0; i < rows; ++i) {
934                 for (j = 0; j < columns; ++j) {
935                         string s1;
936                         string s2;
937                         is >> a >> b >> c >> d >> e >> f >> g;
938                         char ch;
939                         is >> ch; // skip '"'
940                         getline(is, s1, '"');
941                         is >> ch; // skip '"'
942                         getline(is, s2, '"');
943                         cell_info[i][j].multicolumn = static_cast<char>(a);
944                         cell_info[i][j].alignment = static_cast<char>(b);
945                         cell_info[i][j].top_line = static_cast<char>(c);
946                         cell_info[i][j].bottom_line = static_cast<char>(d);
947                         cell_info[i][j].has_cont_row = static_cast<bool>(e);
948                         cell_info[i][j].rotate = static_cast<bool>(f);
949                         cell_info[i][j].linebreaks = static_cast<bool>(g);
950                         cell_info[i][j].align_special = s1;
951                         cell_info[i][j].p_width = s2;
952                 }
953         }
954         set_row_column_number_info();
955 }
956
957
958 // cell <0 will tex the preamble
959 // returns the number of printed newlines
960 int LyXTable::TexEndOfCell(string & file, int cell)
961 {
962     int i;
963     int ret = 0;
964     int tmp; // tmp2;
965     int fcell, nvcell;
966     if (ShouldBeVeryLastCell(cell)) {
967         // the very end at the very beginning
968         if (Linebreaks(cell))
969             file += "\\smallskip{}}";
970         if (IsMultiColumn(cell))
971             file += '}';
972         if (RotateCell(cell)) {
973             file += "\n\\end{sideways}";
974             ++ret;
975         }
976         file += "\\\\\n";
977         ++ret;
978     
979         tmp = 0;
980         fcell = cell; 
981         while (!IsFirstCell(fcell)) --fcell;
982         for (i = 0; i < NumberOfCellsInRow(fcell); ++i) {
983             if (BottomLine(fcell + i))
984                 ++tmp;
985         }
986         if (tmp == NumberOfCellsInRow(fcell)) {
987             file += "\\hline ";
988         } else {
989             tmp = 0;
990             for (i = 0; i < NumberOfCellsInRow(fcell); ++i) {
991                 if (BottomLine(fcell + i)) {
992                     file += "\\cline{";
993                     file += tostr(column_of_cell(fcell + i) + 1);
994                     file += '-';
995                     file += tostr(right_column_of_cell(fcell + i) + 1);
996                     file += "} ";
997                     tmp = 1;
998                 }
999             }
1000         }
1001         if (tmp){
1002             file += '\n';
1003             ++ret;
1004         }
1005         if (is_long_table)
1006             file += "\\end{longtable}";
1007         else
1008             file += "\\end{tabular}";
1009         if (rotate) {
1010             file += "\n\\end{sideways}";
1011             ++ret;
1012         }
1013     } else {
1014         nvcell = NextVirtualCell(cell + 1);
1015         if (cell < 0){
1016             // preamble
1017             if (rotate) {
1018                 file += "\\begin{sideways}\n";
1019                 ++ret;
1020             }
1021             if (is_long_table)
1022                 file += "\\begin{longtable}{";
1023             else
1024                 file += "\\begin{tabular}{";
1025             for (i = 0; i < columns; ++i) {
1026                 if (column_info[i].left_line)
1027                     file += '|';
1028                 if (!column_info[i].align_special.empty()) {
1029                     file += column_info[i].align_special.c_str();
1030                 } else if (!column_info[i].p_width.empty()) {
1031                     file += "p{";
1032                     file += column_info[i].p_width;
1033                     file += '}';
1034                 } else {
1035                     switch (column_info[i].alignment) {
1036                       case LYX_ALIGN_LEFT:
1037                           file += 'l';
1038                           break;
1039                       case LYX_ALIGN_RIGHT:
1040                           file += 'r';
1041                           break;
1042                       default:
1043                           file += 'c';
1044                           break;
1045                     }
1046                 }
1047                 if (column_info[i].right_line)
1048                     file += '|';
1049             }
1050             file += "}\n";
1051             ++ret;
1052             tmp = 0;
1053             if (GetNumberOfCells()) {
1054                 fcell = 0;
1055                 for (i = 0; i < NumberOfCellsInRow(fcell); ++i) {
1056                     if (TopLine(fcell + i))
1057                         ++tmp;
1058                 }
1059                 if (tmp == NumberOfCellsInRow(fcell)){
1060                     file += "\\hline ";
1061                 } else {
1062                     tmp = 0;
1063                     for (i = 0; i < NumberOfCellsInRow(fcell); ++i) {
1064                         if (TopLine(fcell + i)) {
1065                             file += "\\cline{";
1066                             file += tostr(column_of_cell(fcell + i) + 1);
1067                             file += '-';
1068                             file += tostr(right_column_of_cell(fcell + i) + 1);
1069                             file += "} ";
1070                             tmp = 1;
1071                         }
1072                     }
1073                 }
1074                 if (tmp){
1075                     file += '\n';
1076                     ++ret;
1077                 }
1078             }
1079             if (RotateCell(0)) {
1080                 file += "\\begin{sideways}\n";
1081                 ++ret;
1082             }
1083         } else {
1084             // usual cells
1085             if (Linebreaks(cell))
1086                 file += "\\smallskip{}}";
1087             if (IsMultiColumn(cell)){
1088                 file += '}';
1089             }
1090             if (RotateCell(cell)) {
1091                 file += "\n\\end{sideways}";
1092                 ++ret;
1093             }
1094             if (IsLastCell(cell)) {
1095                 int row = row_of_cell(cell);
1096                 string hline1, hline2;
1097                 bool print_hline = true;
1098                 bool flag1 = IsLongTable() &&
1099                     ((row == endhead) || (row == endfirsthead) ||
1100                      (row == endfoot) || (row == endlastfoot));
1101                 ++row;
1102                 bool flag2 = IsLongTable() &&
1103                     ((row <= endhead) || (row <= endfirsthead) ||
1104                      (row <= endfoot) || (row <= endlastfoot));
1105                 --row;
1106                 // print the bottom hline only if (otherwise it is doubled):
1107                 // - is no LongTable
1108                 // - there IS a first-header
1109                 // - the next row is no special header/footer
1110                 //   & this row is no special header/footer
1111                 // - the next row is a special header/footer
1112                 //   & this row is a special header/footer
1113                 bool pr_top_hline = (flag1 && flag2) || (!flag1 && !flag2) ||
1114                     (endfirsthead == endhead);
1115                 file += "\\\\\n";
1116                 ++ret;
1117                 tmp = 0;
1118                 fcell = cell;
1119                 while (!IsFirstCell(fcell))
1120                     --fcell;
1121                 for (i = 0; i < NumberOfCellsInRow(cell); ++i) {
1122                     if (BottomLine(fcell + i))
1123                         ++tmp;
1124                 }
1125                 if (tmp == NumberOfCellsInRow(cell)){
1126                     file += "\\hline ";
1127                     hline1 = "\\hline ";
1128                 } else {
1129                     tmp = 0;
1130                     for (i = 0; i < NumberOfCellsInRow(fcell); ++i) {
1131                         if (BottomLine(fcell + i)){
1132                             file += "\\cline{";
1133                             file += tostr(column_of_cell(fcell + i) + 1);
1134                             file += '-';
1135                             file += tostr(right_column_of_cell(fcell + i) + 1);
1136                             file += "} ";
1137                             hline1 += "\\cline{";
1138                             hline1 += tostr(column_of_cell(fcell + i) + 1);
1139                             hline1 += '-';
1140                             hline1 += tostr(right_column_of_cell(fcell + i) + 1);
1141                             hline1 += "} ";
1142                             tmp = 1;
1143                         }
1144                     }
1145                 }
1146                 if (tmp){
1147                     file += '\n';
1148                     ++ret;
1149                 }
1150                 if (IsLongTable() && (row == endfoot)) {
1151                     file += "\\endfoot\n";
1152                     ++ret;
1153                     print_hline = false; // no double line below footer
1154                 }
1155                 if (IsLongTable() && (row == endlastfoot)) {
1156                     file += "\\endlastfoot\n";
1157                     ++ret;
1158                     print_hline = false; // no double line below footer
1159                 }
1160                 if (IsLongTable() && row_info[row].newpage) {
1161                     file += "\\newpage\n";
1162                     ++ret;
1163                     print_hline = false; // no line below a \\newpage-command
1164                 }
1165                 tmp = 0;
1166                 if (nvcell < numberofcells && (cell < GetNumberOfCells() - 1) &&
1167                     !ShouldBeVeryLastCell(cell)) {
1168                     fcell = nvcell;
1169                     for (i = 0; i < NumberOfCellsInRow(fcell); ++i) {
1170                         if (TopLine(fcell + i))
1171                             ++tmp;
1172                     }
1173                     if (tmp == NumberOfCellsInRow(fcell)) {
1174                         if (print_hline)
1175                             file += "\\hline ";
1176                         hline2 = "\\hline ";
1177                     } else {
1178                         tmp = 0;
1179                         for (i = 0; i < NumberOfCellsInRow(fcell); ++i) {
1180                             if (TopLine(fcell + i)) {
1181                                 if (print_hline) {
1182                                     file += "\\cline{";
1183                                     file += tostr(column_of_cell(fcell+i)+1);
1184                                     file += '-';
1185                                     file += tostr(right_column_of_cell(fcell+i)+1);
1186                                     file += "} ";
1187                                 }
1188                                 hline2 += "\\cline{";
1189                                 hline2 += tostr(column_of_cell(fcell+i)+1);
1190                                 hline2 += '-';
1191                                 hline2 += tostr(right_column_of_cell(fcell+i)+1);
1192                                 hline2 += "} ";
1193                                 tmp = 1;
1194                             }
1195                         }
1196                     }
1197                     if (tmp && print_hline){
1198                         file += '\n';
1199                         ++ret;
1200                     }
1201                 }
1202                 // the order here is important as if one defines two
1203                 // or more things in one line only the first entry is
1204                 // displayed the other are set to an empty-row. This
1205                 // is important if I have a footer and want that the
1206                 // lastfooter is NOT displayed!!!
1207                 bool sflag2 = (row == endhead) || (row == endfirsthead) ||
1208                     (row == endfoot) || (row == endlastfoot);
1209                 --row;
1210 //                sflag2 = IsLongTable() && (row >= 0) &&
1211 //                    (sflag2 || (row == endhead) || (row == endfirsthead));
1212                 row += 2;
1213                 bool sflag1 = IsLongTable() && (row != endhead) &&
1214                     (row != endfirsthead) &&
1215                     ((row == endfoot) || (row == endlastfoot));
1216                 --row;
1217                 if (IsLongTable() && (row == endhead)) {
1218                     file += "\\endhead\n";
1219                     ++ret;
1220                 }
1221                 if (IsLongTable() && (row == endfirsthead)) {
1222                     file += "\\endfirsthead\n";
1223                     ++ret;
1224                 }
1225                 if (sflag1) { // add the \hline for next foot row
1226                     if (!hline1.empty()) {
1227                         file += hline1 + '\n';
1228                         ++ret;
1229                     }
1230                 }
1231                 // add the \hline for the first row
1232                 if (pr_top_hline && sflag2) {
1233                     if (!hline2.empty()) {
1234                         file += hline2 + '\n';
1235                         ++ret;
1236                     }
1237                 }
1238                 if (nvcell < numberofcells && RotateCell(nvcell)) {
1239                     file += "\\begin{sideways}\n";
1240                     ++ret;
1241                 }
1242             } else {
1243                 file += "&\n";
1244                 ++ret;
1245                 if (nvcell < numberofcells && RotateCell(nvcell)) {
1246                     file += "\\begin{sideways}\n";
1247                     ++ret;
1248                 }
1249             }
1250         }
1251         if (nvcell < numberofcells && IsMultiColumn(nvcell)) {
1252             file += "\\multicolumn{";
1253             file += tostr(cells_in_multicolumn(nvcell));
1254             file += "}{";
1255             if (!cellinfo_of_cell(cell+1)->align_special.empty()) {
1256                 file += cellinfo_of_cell(cell+1)->align_special;
1257                 file += "}{";
1258             } else {
1259                 if (LeftLine(nvcell))
1260                     file += '|';
1261                 if (!GetPWidth(nvcell).empty()) {
1262                     file += "p{";
1263                     file += GetPWidth(nvcell);
1264                     file += '}';
1265                 } else {
1266                     switch (GetAlignment(nvcell)) {
1267                       case LYX_ALIGN_LEFT: file += 'l'; break;
1268                       case LYX_ALIGN_RIGHT: file += 'r'; break;
1269                       default:  file += 'c'; break;
1270                     }
1271                 }
1272                 if (RightLine(nvcell))
1273                     file += '|';
1274                 //if (column_of_cell(cell+2)!= 0 && LeftLine(cell+2))
1275                 if (((nvcell+1) < numberofcells) &&
1276                     (NextVirtualCell(nvcell+1) < numberofcells) &&
1277                     (column_of_cell(NextVirtualCell(nvcell+1))!= 0) &&
1278                     LeftLine(NextVirtualCell(nvcell+1)))
1279                     file += '|';
1280                 file += "}{";
1281             }
1282         }
1283         if (nvcell < numberofcells && Linebreaks(nvcell)) {
1284 //            !column_info[column_of_cell(nvcell)].p_width.empty()) {
1285             file += "\\parbox{";
1286             file += GetPWidth(nvcell);
1287             file += "}{\\smallskip{}";
1288         }
1289     }
1290     return ret;
1291 }
1292
1293
1294 // cell <0 will tex the preamble
1295 // returns the number of printed newlines
1296 int LyXTable::RoffEndOfCell(ostream & os, int cell)
1297 {
1298     int ret = 0;
1299
1300     if (cell == GetNumberOfCells() - 1){
1301         // the very end at the very beginning
1302         if (CellHasContRow(cell) >= 0) {
1303                 os << "\nT}";
1304             ++ret;
1305         }
1306         os << "\n";
1307         ++ret;
1308         if (row_info[row_of_cell(cell)].bottom_line) {
1309                 os << "_\n";
1310             ++ret;
1311         }
1312         os << ".TE\n.pl 1c";
1313     } else {  
1314         if (cell < 0) {
1315             int fcell = 0;
1316             // preamble
1317             os << "\n.pl 500c\n.TS\n";
1318             for (int j = 0; j < rows; ++j) {
1319                 for (int i = 0; i < columns; ++i, ++fcell) {
1320                     if (column_info[i].left_line)
1321                             os << " | ";
1322                     if (cell_info[j][i].multicolumn == CELL_PART_OF_MULTICOLUMN)
1323                             os << "s";
1324                     else {
1325                         switch (column_info[i].alignment) {
1326                           case LYX_ALIGN_LEFT:
1327                                   os << "l";
1328                               break;
1329                           case LYX_ALIGN_RIGHT:
1330                                   os << "r";
1331                               break;
1332                           default:
1333                                   os << "c";
1334                               break;
1335                         }
1336                     }
1337                     if (!column_info[i].p_width.empty())
1338                             os << "w(" << column_info[i].p_width << ")";
1339                     if (column_info[i].right_line)
1340                             os << " | ";
1341                 }
1342                 if ((j + 1) < rows) {
1343                         os << "\n";
1344                     ++ret;
1345                 }
1346             }
1347             os << ".\n";
1348             ++ret;
1349             if (row_info[0].top_line) {
1350                     os << "_\n";
1351                 ++ret;
1352             }
1353             if (CellHasContRow(0) >= 0) {
1354                     os << "T{\n";
1355                 ++ret;
1356             }
1357         } else {
1358             // usual cells
1359             if (CellHasContRow(cell) >= 0) {
1360                     os << "\nT}";
1361                 ++ret;
1362             }
1363             if (right_column_of_cell(cell) == columns -1){
1364                     os << "\n";
1365                 ++ret;
1366                 int row = row_of_cell(cell);
1367                 if (row_info[row++].bottom_line) {
1368                         os << "_\n";
1369                     ++ret;
1370                 }
1371                 if ((row < rows) && row_info[row].top_line) {
1372                         os << "_\n";
1373                     ++ret;
1374                 }
1375             } else
1376                     os << "\t";
1377             if ((cell < GetNumberOfCells() - 1) &&
1378                 (CellHasContRow(cell+1) >= 0)) {
1379                     os << "T{\n";
1380                 ++ret;
1381             }
1382         }
1383     }
1384     return ret;
1385 }
1386
1387
1388 char const *LyXTable::getDocBookAlign(int cell, bool isColumn)
1389 {
1390     int i;
1391     if (isColumn)
1392        i = cell;
1393     else
1394        i = column_of_cell(cell);
1395     if (!isColumn && IsMultiColumn(cell)) {
1396        if (!cellinfo_of_cell(cell)->align_special.empty()) {
1397            return cellinfo_of_cell(cell)->align_special.c_str();
1398        } else {
1399            switch (GetAlignment(cell)) {
1400            case LYX_ALIGN_LEFT:
1401                return "left";
1402            case LYX_ALIGN_RIGHT:
1403                return "right";
1404            default:
1405                return "center";
1406            }
1407        }
1408     } else {
1409        if (!column_info[i].align_special.empty()) {
1410            return column_info[i].align_special.c_str();
1411        }
1412 #ifdef IGNORE_THIS_FOR_NOW
1413        else if (!column_info[i].p_width.empty()) {
1414            file += "p{";
1415            file += column_info[i].p_width;
1416            file += '}';
1417        }
1418 #endif
1419        else {
1420            switch (column_info[i].alignment) {
1421            case LYX_ALIGN_LEFT:
1422                return "left";
1423            case LYX_ALIGN_RIGHT:
1424                return "right";
1425            default:
1426                return "center";
1427            }
1428        }
1429     }
1430 }
1431
1432 // cell <0 will tex the preamble
1433 // returns the number of printed newlines
1434 int LyXTable::DocBookEndOfCell(string & file, int cell, int &depth)
1435 {
1436     int i;
1437     int ret = 0;
1438     //int tmp; // tmp2; // unused
1439     int nvcell; // fcell; // unused
1440     if (ShouldBeVeryLastCell(cell)) {
1441        addNewlineAndDepth(file,--depth);
1442         file += "</ENTRY>";
1443        addNewlineAndDepth(file,--depth);
1444         file += "</ROW>";
1445        addNewlineAndDepth(file,--depth);
1446         file += "</TBODY>";
1447        addNewlineAndDepth(file,--depth);
1448         if (is_long_table)
1449             file += "</TGROUP>";
1450         else
1451             file += "</TGROUP>";
1452        addNewlineAndDepth(file,--depth);
1453         ret += 4;
1454     } else {
1455         nvcell = NextVirtualCell(cell+1);
1456         if (cell < 0) {
1457             // preamble
1458             if (is_long_table)
1459                 file += "<TGROUP ";
1460             else
1461                 file += "<TGROUP ";
1462             file += "COLS='";
1463             file += tostr(columns);
1464             file += "' COLSEP='1' ROWSEP='1'>";
1465            addNewlineAndDepth(file,++depth);
1466             ++ret;
1467             for (i = 0; i < columns; ++i) {
1468                 file += "<COLSPEC ALIGN='";
1469                file += getDocBookAlign(i, true);
1470                file += "' COLNAME='col";
1471                 file += tostr(i+1);
1472                 file += "' COLNUM='";
1473                 file += tostr(i+1);
1474                file += "' COLSEP='";
1475                if (i == (columns-1)) {
1476                     file += '1';
1477                } else {
1478                    if (column_info[i].right_line ||
1479                        column_info[i+1].left_line)
1480                        file += '1';
1481                    else
1482                        file += '0';
1483                }
1484                file += "'>";
1485                addNewlineAndDepth(file, depth);
1486                 ++ret;
1487 #ifdef NOT_HANDLED_YET_AS_I_DONT_KNOW_HOW
1488                 if (column_info[i].left_line)
1489                     file += '|';
1490 #endif
1491             }
1492             file += "<TBODY>";
1493            addNewlineAndDepth(file,++depth);
1494             file += "<ROW>";
1495            addNewlineAndDepth(file,++depth);
1496             file += "<ENTRY ALIGN='";
1497             file += getDocBookAlign(0);
1498            file += "'";
1499            if (IsMultiColumn(0)) {
1500                file += " NAMEST='col1' NAMEEND='col";
1501                file += tostr(cells_in_multicolumn(0));
1502                file += "'";
1503            }
1504             file += ">";
1505            addNewlineAndDepth(file,++depth);
1506             ret += 3;
1507         } else {
1508             if (IsLastCell(cell)) {
1509                addNewlineAndDepth(file,--depth);
1510                 file += "</ENTRY>";
1511                addNewlineAndDepth(file,--depth);
1512                 file += "</ROW>";
1513                addNewlineAndDepth(file, depth);
1514                file += "<ROW>";
1515                addNewlineAndDepth(file,++depth);
1516                 file += "<ENTRY ALIGN='";
1517                 file += getDocBookAlign(cell+1);
1518                 file += "' VALIGN='middle'";
1519                if (IsMultiColumn(cell+1)) {
1520                    file += " NAMEST='col";
1521                    file += tostr(column_of_cell(cell+1) + 1);
1522                    file += "' NAMEEND='col";
1523                    file += tostr(column_of_cell(cell+1) +
1524                        cells_in_multicolumn(cell+1));
1525                    file += "'";
1526                }
1527                file += ">";
1528                addNewlineAndDepth(file,++depth);
1529                 ret += 4;
1530             } else {
1531                addNewlineAndDepth(file,--depth);
1532                 file += "</ENTRY>";
1533                addNewlineAndDepth(file, depth);
1534                 file += "<ENTRY ALIGN='";
1535                 file += getDocBookAlign(cell+1);
1536                 file += "' VALIGN='middle'";
1537                if (IsMultiColumn(cell+1)) {
1538                    file += " NAMEST='col";
1539                    file += tostr(column_of_cell(cell+1) + 1);
1540                    file += "' NAMEEND='col";
1541                    file += tostr(column_of_cell(cell+1) +
1542                        cells_in_multicolumn(cell+1));
1543                    file += "'";
1544                }
1545                file += ">";
1546                addNewlineAndDepth(file,++depth);
1547                 ret += 3;
1548             }
1549         }
1550     }
1551     return ret;
1552 }
1553
1554
1555 bool LyXTable::IsMultiColumn(int cell)
1556 {
1557     int fvcell = FirstVirtualCell(cell);
1558
1559     return (cellinfo_of_cell(fvcell)->multicolumn != LyXTable::CELL_NORMAL);
1560 }
1561
1562
1563 LyXTable::cellstruct* LyXTable::cellinfo_of_cell(int cell)
1564 {
1565     int row = row_of_cell(cell);
1566     int column = column_of_cell(cell);
1567     return  &cell_info[row][column];
1568 }
1569    
1570
1571 void LyXTable::SetMultiColumn(int cell, int number)
1572 {
1573     int fvcell = FirstVirtualCell(cell);
1574     int new_width = cellinfo_of_cell(fvcell)->width_of_cell;
1575     
1576     cellinfo_of_cell(fvcell)->multicolumn = LyXTable::CELL_BEGIN_OF_MULTICOLUMN;
1577     cellinfo_of_cell(fvcell)->alignment = column_info[column_of_cell(fvcell)].alignment;
1578     cellinfo_of_cell(fvcell)->top_line = row_info[row_of_cell(fvcell)].top_line;
1579     cellinfo_of_cell(fvcell)->bottom_line = row_info[row_of_cell(fvcell)].bottom_line;
1580     for (number--; number > 0; --number) {
1581         cellinfo_of_cell(fvcell+number)->multicolumn = 
1582             LyXTable::CELL_PART_OF_MULTICOLUMN;
1583         new_width += cellinfo_of_cell(fvcell+number)->width_of_cell;
1584     }
1585     set_row_column_number_info();
1586     SetWidthOfCell(fvcell, new_width);
1587 }
1588
1589
1590 int LyXTable::cells_in_multicolumn(int cell)
1591 {
1592     int row = row_of_cell(cell);
1593     int column = column_of_cell(cell);
1594     int result = 1;
1595     ++column;
1596     while (column < columns && cell_info[row][column].multicolumn
1597            == LyXTable::CELL_PART_OF_MULTICOLUMN){
1598         ++result;
1599         ++column;
1600     }
1601     return result;
1602 }
1603
1604
1605 int  LyXTable::UnsetMultiColumn(int cell)
1606 {
1607     int fvcell = FirstVirtualCell(cell);
1608     int row = row_of_cell(fvcell);
1609     int column = column_of_cell(fvcell);
1610     
1611     int result = 0;
1612     
1613     if (cell_info[row][column].multicolumn
1614         == LyXTable::CELL_BEGIN_OF_MULTICOLUMN){
1615         cell_info[row][column].multicolumn = LyXTable::CELL_NORMAL;
1616         ++column;
1617         while (column < columns &&
1618                cell_info[row][column].multicolumn
1619                == LyXTable::CELL_PART_OF_MULTICOLUMN){
1620             cell_info[row][column].multicolumn = 
1621                 LyXTable::CELL_NORMAL;
1622             ++column;
1623             ++result;
1624         }
1625     }
1626     set_row_column_number_info();
1627     return result;
1628 }
1629
1630
1631 void LyXTable::delete_column(int column)
1632 {
1633     int i, j;
1634     columnstruct * column_info2 = new columnstruct[columns-1];
1635    
1636     for (i = 0; i < column; ++i) {
1637         column_info2[i] = column_info[i];
1638     }
1639     for (i = column; i < columns - 1; ++i) {
1640         column_info2[i] = column_info[i + 1];
1641     }
1642    
1643     delete[] column_info;
1644     column_info = column_info2;
1645
1646     for (i = 0; i < rows; ++i) {
1647         cellstruct * tmp = cell_info[i];
1648         cell_info[i] = new cellstruct[columns - 1];
1649         for (j = 0; j < column; ++j) {
1650             cell_info[i][j] = tmp[j];
1651         }
1652         for (j = column; j < columns - 1; ++j) {
1653             cell_info[i][j] = tmp[j + 1];
1654         }
1655         delete[] tmp;
1656     }
1657
1658     --columns;
1659     Reinit();
1660 }
1661
1662
1663 void LyXTable::SetLongTable(int what)
1664 {
1665     is_long_table = what;
1666 }
1667
1668
1669 bool LyXTable::IsLongTable()
1670 {
1671     return is_long_table;
1672 }
1673
1674 void LyXTable::SetRotateTable(int what)
1675 {
1676     rotate = what;
1677 }
1678
1679 bool LyXTable::RotateTable()
1680 {
1681     return rotate;
1682 }
1683
1684 void LyXTable::SetRotateCell(int cell, int what)
1685 {
1686     cellinfo_of_cell(cell)->rotate = what;
1687 }
1688
1689 bool LyXTable::RotateCell(int cell)
1690 {
1691     return cellinfo_of_cell(cell)->rotate;
1692 }
1693
1694 bool LyXTable::NeedRotating()
1695 {
1696     if (rotate)
1697         return true;
1698     for (int i = 0; i < rows; ++i) {
1699         for (int j = 0; j < columns; ++j) {
1700             if (cell_info[i][j].rotate)
1701                 return true;
1702         }
1703     }
1704     return false;
1705 }
1706
1707 void LyXTable::AppendContRow(int cell)
1708 {
1709     int row = row_of_cell(cell)+1;
1710
1711     if (!RowHasContRow(cell) || (CellHasContRow(cell)>= 0))
1712         AppendRow(cell);
1713     row_info[row].is_cont_row = true;
1714     row_info[row].top_line = false;
1715     cell_info[row-1][column_of_cell(cell)].has_cont_row = true;
1716     Reinit();
1717 }
1718
1719 bool LyXTable::IsContRow(int cell)
1720 {
1721     return row_info[row_of_cell(cell)].is_cont_row;
1722 }
1723
1724 int LyXTable::CellHasContRow(int cell)
1725 {
1726     int row = row_of_cell(cell);
1727
1728     if (VeryLastRow(cell))
1729         return -1;
1730     if (cell_info[row][column_of_cell(cell)].has_cont_row)
1731         return cell_info[row+1][column_of_cell(cell)].cellno;
1732     return -1;
1733 }
1734
1735 bool LyXTable::RowHasContRow(int cell)
1736 {
1737     int row = row_of_cell(cell) + 1;
1738
1739     if (row < rows)
1740         return row_info[row].is_cont_row;
1741     return false;
1742 }
1743
1744 int LyXTable::FirstVirtualCell(int cell)
1745 {
1746     if (!IsContRow(cell))
1747         return cell;
1748     int row = row_of_cell(cell);
1749     int column = column_of_cell(cell);
1750     for(; (row > 0) && IsContRow(cell_info[row][column].cellno); --row)
1751         ;
1752     return cell_info[row][column].cellno;
1753 }
1754
1755
1756 int LyXTable::NextVirtualCell(int cell)
1757 {
1758     if (!IsContRow(cell))
1759         return cell;
1760     int row = row_of_cell(cell);
1761     for(;(row < rows - 1) && IsContRow(cell_info[row][0].cellno); ++row)
1762         ;
1763     // what if(row >= rows) ?
1764     return cell_info[row][0].cellno;
1765 }
1766
1767
1768 bool LyXTable::ShouldBeVeryLastCell(int cell)
1769 // "very last cell" ..of what? the row? the table?
1770 // "Cell" in this context appears to not count `virtual' cells
1771 {
1772     int fcell = cell + 1;
1773
1774     if (cell == GetNumberOfCells() - 1)
1775         return true; // not really sure if I should return false here
1776     if (!IsContRow(fcell))
1777         return false;
1778     while((fcell < GetNumberOfCells() - 1) && IsContRow(fcell))
1779         ++fcell;
1780     if (fcell < GetNumberOfCells() - 1)
1781         return false;
1782     return true;
1783 }
1784
1785 bool LyXTable::ShouldBeVeryLastRow(int cell)
1786 {
1787     if (CellHasContRow(cell)>= 0)
1788         return false;
1789     int row = row_of_cell(cell) + 1;
1790     int column = column_of_cell(cell);
1791     while((row < rows) && IsContRow(cell_info[row][column].cellno))
1792         ++row;
1793     if (row < rows)
1794         return false; // found another valid row
1795     // I do not have any valid row after the actual
1796     return true;
1797 }
1798
1799 int LyXTable::GetCellAbove(int cell)
1800 {
1801     int row = row_of_cell(cell);
1802     
1803     if (row > 0)
1804         return cell_info[row-1][column_of_cell(cell)].cellno;
1805     return cell;
1806 }
1807
1808 int LyXTable::GetCellNumber(int column, int row)
1809 {
1810     if (column >= columns)
1811         column = columns - 1;
1812     else if (column < 0)
1813         column = 0;
1814     if (row >= rows)
1815         row = rows - 1;
1816     else if (row < 0)
1817         row = 0;
1818     
1819     return cell_info[row][column].cellno;
1820 }
1821
1822 void LyXTable::SetLinebreaks(int cell, bool what)
1823 {
1824     cellinfo_of_cell(FirstVirtualCell(cell))->linebreaks = what;
1825 }
1826
1827 bool LyXTable::Linebreaks(int cell)
1828 {
1829     int fvcell = FirstVirtualCell(cell);
1830
1831     if (column_info[column_of_cell(fvcell)].p_width.empty() &&
1832         !(IsMultiColumn(fvcell) && !cellinfo_of_cell(fvcell)->p_width.empty()))
1833         return false;
1834     return cellinfo_of_cell(fvcell)->linebreaks;
1835 }
1836
1837 void LyXTable::SetLTHead(int cell, bool first)
1838 {
1839     int row = row_of_cell(cell);
1840
1841     if (first) {
1842         if (row == endfirsthead)
1843             endfirsthead = -1;
1844         else
1845             endfirsthead = row;
1846     } else {
1847         if (row == endhead)
1848             endhead = -1;
1849         else
1850             endhead = row;
1851     }
1852 }
1853
1854 bool LyXTable::RowOfLTHead(int cell)
1855 {
1856     if ((endhead+1) > rows)
1857         endhead = -1;
1858     return (row_of_cell(cell) == endhead);
1859 }
1860
1861 bool LyXTable::RowOfLTFirstHead(int cell)
1862 {
1863     if ((endfirsthead+1) > rows)
1864         endfirsthead = -1;
1865     return (row_of_cell(cell) == endfirsthead);
1866 }
1867
1868 void LyXTable::SetLTFoot(int cell, bool last)
1869 {
1870     int row = row_of_cell(cell);
1871
1872     if (last) {
1873         if (row == endlastfoot)
1874             endlastfoot = -1;
1875         else
1876             endlastfoot = row;
1877     } else {
1878         if (row == endfoot)
1879             endfoot = -1;
1880         else
1881             endfoot = row;
1882     }
1883 }
1884
1885 bool LyXTable::RowOfLTFoot(int cell)
1886 {
1887     if ((endfoot+1) > rows) {
1888         endfoot = -1;
1889         return false;
1890     }
1891     return (row_of_cell(cell) == endfoot);
1892 }
1893
1894 bool LyXTable::RowOfLTLastFoot(int cell)
1895 {
1896     if ((endlastfoot+1) > rows)
1897         endlastfoot = -1;
1898     return (row_of_cell(cell) == endlastfoot);
1899 }
1900
1901 void LyXTable::SetLTNewPage(int cell, bool what)
1902 {
1903     row_info[row_of_cell(cell)].newpage = what;
1904 }
1905
1906 bool LyXTable::LTNewPage(int cell)
1907 {
1908     return row_info[row_of_cell(cell)].newpage;
1909 }