2000-04-21 15:16:22 +00:00
|
|
|
|
/* This file is part of
|
2002-03-21 17:27:08 +00:00
|
|
|
|
* ======================================================
|
|
|
|
|
*
|
2000-04-21 15:16:22 +00:00
|
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2002-03-01 16:04:10 +00:00
|
|
|
|
* Copyright 2000-2002 The LyX Team.
|
2000-08-23 15:18:19 +00:00
|
|
|
|
*
|
|
|
|
|
* @author: J<EFBFBD>rgen Vigna
|
2000-04-21 15:16:22 +00:00
|
|
|
|
*
|
2002-03-21 17:27:08 +00:00
|
|
|
|
* ======================================================
|
2000-04-21 15:16:22 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2001-08-08 13:29:13 +00:00
|
|
|
|
// temporary until verified (08/08/2001 Jug)
|
|
|
|
|
#define SPECIAL_COLUM_HANDLING 1
|
|
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
|
#include "tabular.h"
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
#include "vspace.h"
|
|
|
|
|
#include "layout.h"
|
2000-05-17 14:43:09 +00:00
|
|
|
|
#include "buffer.h"
|
2000-05-19 10:32:05 +00:00
|
|
|
|
#include "BufferView.h"
|
2002-05-23 09:21:32 +00:00
|
|
|
|
#include "frontends/Painter.h"
|
2000-05-19 10:32:05 +00:00
|
|
|
|
#include "LaTeXFeatures.h"
|
2001-12-20 14:52:15 +00:00
|
|
|
|
#include "insets/insettabular.h"
|
|
|
|
|
#include "insets/insettext.h"
|
2000-04-21 15:16:22 +00:00
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
#include "support/lyxmanip.h"
|
2001-07-29 15:34:18 +00:00
|
|
|
|
#include "support/LAssert.h"
|
2001-12-20 14:52:15 +00:00
|
|
|
|
#include "frontends/Alert.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
|
#include "gettext.h"
|
2003-05-13 09:48:57 +00:00
|
|
|
|
#include "Lsstream.h"
|
2001-12-20 14:52:15 +00:00
|
|
|
|
#include "tabular_funcs.h"
|
2002-07-21 21:21:06 +00:00
|
|
|
|
#include "lyxlex.h"
|
2001-12-20 14:52:15 +00:00
|
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <cstdlib>
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2002-06-10 07:57:39 +00:00
|
|
|
|
using std::abs;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
using std::ostream;
|
|
|
|
|
using std::istream;
|
2000-05-04 10:57:00 +00:00
|
|
|
|
using std::getline;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
using std::max;
|
|
|
|
|
using std::endl;
|
2000-05-05 12:39:38 +00:00
|
|
|
|
using std::vector;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2001-06-01 10:53:24 +00:00
|
|
|
|
#ifndef CXX_GLOBAL_CSTD
|
|
|
|
|
using std::strlen;
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const WIDTH_OF_LINE = 5;
|
2001-03-20 01:22:46 +00:00
|
|
|
|
|
|
|
|
|
} // namespace
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
|
|
/// Define a few methods for the inner structs
|
|
|
|
|
|
2002-03-03 20:25:07 +00:00
|
|
|
|
LyXTabular::cellstruct::cellstruct(BufferParams const & bg)
|
|
|
|
|
: inset(bg)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cellno = 0;
|
|
|
|
|
width_of_cell = 0;
|
|
|
|
|
multicolumn = LyXTabular::CELL_NORMAL;
|
|
|
|
|
alignment = LYX_ALIGN_CENTER;
|
|
|
|
|
valignment = LYX_VALIGN_TOP;
|
|
|
|
|
top_line = true;
|
|
|
|
|
bottom_line = false;
|
|
|
|
|
left_line = true;
|
|
|
|
|
right_line = false;
|
|
|
|
|
usebox = BOX_NONE;
|
|
|
|
|
rotate = false;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
LyXTabular::rowstruct::rowstruct()
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
top_line = true;
|
|
|
|
|
bottom_line = false;
|
|
|
|
|
ascent_of_row = 0;
|
|
|
|
|
descent_of_row = 0;
|
2001-12-19 21:25:34 +00:00
|
|
|
|
endhead = false;
|
|
|
|
|
endfirsthead = false;
|
|
|
|
|
endfoot = false;
|
|
|
|
|
endlastfoot = false;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
newpage = false;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
LyXTabular::columnstruct::columnstruct()
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
left_line = true;
|
|
|
|
|
right_line = false;
|
|
|
|
|
alignment = LYX_ALIGN_CENTER;
|
|
|
|
|
valignment = LYX_VALIGN_TOP;
|
|
|
|
|
width_of_column = 0;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-14 15:01:06 +00:00
|
|
|
|
LyXTabular::ltType::ltType()
|
2001-10-24 15:07:39 +00:00
|
|
|
|
{
|
|
|
|
|
topDL = false;
|
|
|
|
|
bottomDL = false;
|
2001-12-19 16:13:21 +00:00
|
|
|
|
empty = false;
|
2001-10-24 15:07:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
|
/* konstruktor */
|
2002-03-03 20:25:07 +00:00
|
|
|
|
LyXTabular::LyXTabular(BufferParams const & bp,
|
|
|
|
|
InsetTabular * inset, int rows_arg, int columns_arg)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
owner_ = inset;
|
2001-06-27 14:10:35 +00:00
|
|
|
|
cur_cell = -1;
|
2002-03-03 20:25:07 +00:00
|
|
|
|
Init(bp, rows_arg, columns_arg);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-03 20:25:07 +00:00
|
|
|
|
LyXTabular::LyXTabular(BufferParams const & bp,
|
2003-05-26 09:13:55 +00:00
|
|
|
|
InsetTabular * inset, LyXTabular const & lt)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
owner_ = inset;
|
2001-06-27 14:10:35 +00:00
|
|
|
|
cur_cell = -1;
|
2002-03-03 20:25:07 +00:00
|
|
|
|
Init(bp, lt.rows_, lt.columns_, <);
|
2001-04-27 14:03:25 +00:00
|
|
|
|
#if 0
|
2000-11-21 15:46:13 +00:00
|
|
|
|
#ifdef WITH_WARNINGS
|
2000-09-14 17:53:12 +00:00
|
|
|
|
#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)
|
2000-11-21 15:46:13 +00:00
|
|
|
|
#endif
|
2001-04-02 14:02:58 +00:00
|
|
|
|
operator=(lt);
|
2001-04-27 14:03:25 +00:00
|
|
|
|
#endif
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
LyXTabular::LyXTabular(Buffer const * buf, InsetTabular * inset, LyXLex & lex)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
owner_ = inset;
|
2001-06-27 14:10:35 +00:00
|
|
|
|
cur_cell = -1;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
Read(buf, lex);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LyXTabular & LyXTabular::operator=(LyXTabular const & lt)
|
|
|
|
|
{
|
2001-05-08 10:50:09 +00:00
|
|
|
|
#if 0
|
2003-02-14 15:01:06 +00:00
|
|
|
|
#warning This whole method should look like this: (Lgb)
|
2001-05-08 10:50:09 +00:00
|
|
|
|
|
|
|
|
|
LyXTabular tmp(lt);
|
|
|
|
|
tmp.swap(*this);
|
|
|
|
|
#else
|
2001-04-02 14:02:58 +00:00
|
|
|
|
// If this and lt is not of the same size we have a serious bug
|
|
|
|
|
// So then it is ok to throw an exception, or for now
|
|
|
|
|
// call abort()
|
2001-04-24 15:25:26 +00:00
|
|
|
|
lyx::Assert(rows_ == lt.rows_ && columns_ == lt.columns_);
|
2001-06-27 14:10:35 +00:00
|
|
|
|
cur_cell = -1;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cell_info = lt.cell_info;
|
|
|
|
|
row_info = lt.row_info;
|
|
|
|
|
column_info = lt.column_info;
|
|
|
|
|
SetLongTabular(lt.is_long_tabular);
|
|
|
|
|
rotate = lt.rotate;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
Reinit();
|
2001-05-08 10:50:09 +00:00
|
|
|
|
#endif
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return *this;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2002-03-03 20:25:07 +00:00
|
|
|
|
LyXTabular * LyXTabular::clone(BufferParams const & bp,
|
2003-05-26 09:13:55 +00:00
|
|
|
|
InsetTabular * inset)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2003-05-26 09:13:55 +00:00
|
|
|
|
LyXTabular * result = new LyXTabular(bp, inset, *this);
|
2001-04-27 14:03:25 +00:00
|
|
|
|
#if 0
|
2001-04-02 14:02:58 +00:00
|
|
|
|
// don't know if this is good but I need to Clone also
|
|
|
|
|
// the text-insets here, this is for the Undo-facility!
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
result->cell_info[i][j].inset = cell_info[i][j].inset;
|
|
|
|
|
result->cell_info[i][j].inset.setOwner(inset);
|
|
|
|
|
}
|
2000-05-16 15:17:19 +00:00
|
|
|
|
}
|
2001-04-27 14:03:25 +00:00
|
|
|
|
#endif
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return result;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
/* activates all lines and sets all widths to 0 */
|
2002-03-03 20:25:07 +00:00
|
|
|
|
void LyXTabular::Init(BufferParams const & bp,
|
2002-03-21 17:27:08 +00:00
|
|
|
|
int rows_arg, int columns_arg, LyXTabular const * lt)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
rows_ = rows_arg;
|
|
|
|
|
columns_ = columns_arg;
|
|
|
|
|
row_info = row_vector(rows_, rowstruct());
|
|
|
|
|
column_info = column_vector(columns_, columnstruct());
|
2002-03-03 20:25:07 +00:00
|
|
|
|
cell_info = cell_vvector(rows_, cell_vector(columns_, cellstruct(bp)));
|
2001-04-02 14:02:58 +00:00
|
|
|
|
|
2001-04-27 14:03:25 +00:00
|
|
|
|
if (lt) {
|
|
|
|
|
operator=(*lt);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int cellno = 0;
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
cell_info[i][j].inset.setOwner(owner_);
|
2001-06-28 10:25:20 +00:00
|
|
|
|
cell_info[i][j].inset.setDrawFrame(0, InsetText::LOCKED);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cell_info[i][j].cellno = cellno++;
|
|
|
|
|
}
|
|
|
|
|
cell_info[i].back().right_line = true;
|
|
|
|
|
}
|
|
|
|
|
row_info.back().bottom_line = true;
|
|
|
|
|
row_info.front().bottom_line = true;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < columns_; ++i) {
|
|
|
|
|
calculate_width_of_column(i);
|
|
|
|
|
}
|
|
|
|
|
column_info.back().right_line = true;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
calculate_width_of_tabular();
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
rowofcell = vector<int>();
|
|
|
|
|
columnofcell = vector<int>();
|
|
|
|
|
set_row_column_number_info();
|
|
|
|
|
is_long_tabular = false;
|
|
|
|
|
rotate = false;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-03 20:25:07 +00:00
|
|
|
|
void LyXTabular::AppendRow(BufferParams const & bp, int cell)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
++rows_;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int row = row_of_cell(cell);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
row_vector::iterator rit = row_info.begin() + row;
|
|
|
|
|
row_info.insert(rit, rowstruct());
|
|
|
|
|
// now set the values of the row before
|
2002-03-03 20:25:07 +00:00
|
|
|
|
row_info[row] = row_info[row + 1];
|
2000-05-26 13:09:14 +00:00
|
|
|
|
|
2000-06-23 15:02:46 +00:00
|
|
|
|
#if 0
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cell_vvector::iterator cit = cell_info.begin() + row;
|
2002-03-03 20:25:07 +00:00
|
|
|
|
cell_info.insert(cit, vector<cellstruct>(columns_, cellstruct(bp)));
|
2000-06-12 11:27:15 +00:00
|
|
|
|
#else
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cell_vvector c_info = cell_vvector(rows_, cell_vector(columns_,
|
2002-03-03 20:25:07 +00:00
|
|
|
|
cellstruct(bp)));
|
2000-06-12 11:27:15 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (int i = 0; i <= row; ++i) {
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
c_info[i][j] = cell_info[i][j];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for (int i = row + 1; i < rows_; ++i) {
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
c_info[i][j] = cell_info[i-1][j];
|
|
|
|
|
}
|
2000-05-26 13:09:14 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cell_info = c_info;
|
|
|
|
|
++row;
|
2000-11-04 10:00:12 +00:00
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
2003-02-08 19:18:01 +00:00
|
|
|
|
cell_info[row][j].inset.clear(false);
|
|
|
|
|
if (bp.tracking_changes)
|
|
|
|
|
cell_info[row][j].inset.markNew(true);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
|
#endif
|
2001-04-02 14:02:58 +00:00
|
|
|
|
Reinit();
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-19 10:32:05 +00:00
|
|
|
|
void LyXTabular::DeleteRow(int row)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (rows_ == 1) return; // Not allowed to delete last row
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
row_info.erase(row_info.begin() + row); //&row_info[row]);
|
|
|
|
|
cell_info.erase(cell_info.begin() + row); //&cell_info[row]);
|
|
|
|
|
--rows_;
|
|
|
|
|
Reinit();
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-03 20:25:07 +00:00
|
|
|
|
void LyXTabular::AppendColumn(BufferParams const & bp, int cell)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
++columns_;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cell_vvector c_info = cell_vvector(rows_, cell_vector(columns_,
|
2002-03-03 20:25:07 +00:00
|
|
|
|
cellstruct(bp)));
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const column = column_of_cell(cell);
|
|
|
|
|
column_vector::iterator cit = column_info.begin() + column + 1;
|
|
|
|
|
column_info.insert(cit, columnstruct());
|
|
|
|
|
// set the column values of the column before
|
2002-03-03 20:25:07 +00:00
|
|
|
|
column_info[column + 1] = column_info[column];
|
2001-04-02 14:02:58 +00:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
for (int j = 0; j <= column; ++j) {
|
|
|
|
|
c_info[i][j] = cell_info[i][j];
|
|
|
|
|
}
|
|
|
|
|
for (int j = column + 1; j < columns_; ++j) {
|
|
|
|
|
c_info[i][j] = cell_info[i][j - 1];
|
|
|
|
|
}
|
|
|
|
|
// care about multicolumns
|
2002-01-02 14:04:45 +00:00
|
|
|
|
if (c_info[i][column + 1].multicolumn==CELL_BEGIN_OF_MULTICOLUMN)
|
|
|
|
|
{
|
2001-12-17 13:40:04 +00:00
|
|
|
|
c_info[i][column + 1].multicolumn = CELL_PART_OF_MULTICOLUMN;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2002-01-02 14:04:45 +00:00
|
|
|
|
if ((column + 2) >= columns_ ||
|
|
|
|
|
c_info[i][column + 2].multicolumn != CELL_PART_OF_MULTICOLUMN)
|
|
|
|
|
{
|
2001-12-17 13:40:04 +00:00
|
|
|
|
c_info[i][column + 1].multicolumn = LyXTabular::CELL_NORMAL;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
cell_info = c_info;
|
|
|
|
|
//++column;
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
2003-02-08 19:18:01 +00:00
|
|
|
|
cell_info[i][column + 1].inset.clear(false);
|
|
|
|
|
if (bp.tracking_changes)
|
|
|
|
|
cell_info[i][column + 1].inset.markNew(true);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
|
|
|
|
Reinit();
|
2000-05-05 12:14:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-26 13:09:14 +00:00
|
|
|
|
void LyXTabular::DeleteColumn(int column)
|
2000-05-05 12:14:16 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
// Similar to DeleteRow
|
|
|
|
|
//if (!(columns_ - 1))
|
|
|
|
|
//return;
|
|
|
|
|
if (columns_ == 1) return; // Not allowed to delete last column
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
column_info.erase(column_info.begin() + column);
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
cell_info[i].erase(cell_info[i].begin() + column);
|
|
|
|
|
}
|
|
|
|
|
--columns_;
|
|
|
|
|
Reinit();
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-04 16:10:19 +00:00
|
|
|
|
void LyXTabular::reinit()
|
|
|
|
|
{
|
|
|
|
|
Reinit(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LyXTabular::Reinit(bool reset_widths)
|
|
|
|
|
{
|
|
|
|
|
if (reset_widths) {
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
cell_info[i][j].width_of_cell = 0;
|
|
|
|
|
cell_info[i][j].inset.setOwner(owner_);
|
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (int i = 0; i < columns_; ++i) {
|
|
|
|
|
calculate_width_of_column(i);
|
|
|
|
|
}
|
|
|
|
|
calculate_width_of_tabular();
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
set_row_column_number_info();
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-28 14:05:24 +00:00
|
|
|
|
void LyXTabular::set_row_column_number_info(bool oldformat)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
numberofcells = -1;
|
|
|
|
|
for (int row = 0; row < rows_; ++row) {
|
|
|
|
|
for (int column = 0; column<columns_; ++column) {
|
|
|
|
|
if (cell_info[row][column].multicolumn
|
|
|
|
|
!= LyXTabular::CELL_PART_OF_MULTICOLUMN)
|
|
|
|
|
++numberofcells;
|
|
|
|
|
cell_info[row][column].cellno = numberofcells;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
++numberofcells; // because this is one more than as we start from 0
|
|
|
|
|
|
|
|
|
|
rowofcell.resize(numberofcells);
|
|
|
|
|
columnofcell.resize(numberofcells);
|
|
|
|
|
|
|
|
|
|
for (int row = 0, column = 0, c = 0;
|
|
|
|
|
c < numberofcells && row < rows_ && column < columns_;) {
|
|
|
|
|
rowofcell[c] = row;
|
|
|
|
|
columnofcell[c] = column;
|
|
|
|
|
++c;
|
|
|
|
|
do {
|
|
|
|
|
++column;
|
|
|
|
|
} while (column < columns_ &&
|
|
|
|
|
cell_info[row][column].multicolumn
|
|
|
|
|
== LyXTabular::CELL_PART_OF_MULTICOLUMN);
|
|
|
|
|
if (column == columns_) {
|
|
|
|
|
column = 0;
|
|
|
|
|
++row;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int row = 0; row < rows_; ++row) {
|
|
|
|
|
for (int column = 0; column < columns_; ++column) {
|
|
|
|
|
if (IsPartOfMultiColumn(row,column))
|
|
|
|
|
continue;
|
|
|
|
|
// now set the right line of multicolumns right for oldformat read
|
|
|
|
|
if (oldformat &&
|
|
|
|
|
cell_info[row][column].multicolumn==CELL_BEGIN_OF_MULTICOLUMN)
|
|
|
|
|
{
|
|
|
|
|
int cn=cells_in_multicolumn(cell_info[row][column].cellno);
|
|
|
|
|
cell_info[row][column].right_line =
|
|
|
|
|
cell_info[row][column+cn-1].right_line;
|
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
|
cell_info[row][column].inset.setAutoBreakRows(
|
2001-12-11 17:26:52 +00:00
|
|
|
|
!GetPWidth(GetCellNumber(row, column)).zero());
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::GetNumberOfCells() const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return numberofcells;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::NumberOfCellsInRow(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const row = row_of_cell(cell);
|
|
|
|
|
int result = 0;
|
|
|
|
|
for (int i = 0; i < columns_; ++i) {
|
|
|
|
|
if (cell_info[row][i].multicolumn != LyXTabular::CELL_PART_OF_MULTICOLUMN)
|
|
|
|
|
++result;
|
|
|
|
|
}
|
|
|
|
|
return result;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
/* returns 1 if there is a topline, returns 0 if not */
|
2000-07-17 14:31:07 +00:00
|
|
|
|
bool LyXTabular::TopLine(int cell, bool onlycolumn) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const row = row_of_cell(cell);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (!onlycolumn && IsMultiColumn(cell))
|
|
|
|
|
return cellinfo_of_cell(cell)->top_line;
|
|
|
|
|
return row_info[row].top_line;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-17 14:31:07 +00:00
|
|
|
|
bool LyXTabular::BottomLine(int cell, bool onlycolumn) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
// no bottom line underneath non-existent cells if you please
|
|
|
|
|
// Isn't that a programming error? Is so this should
|
|
|
|
|
// be an Assert instead. (Lgb)
|
|
|
|
|
if (cell >= numberofcells)
|
|
|
|
|
return false;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (!onlycolumn && IsMultiColumn(cell))
|
|
|
|
|
return cellinfo_of_cell(cell)->bottom_line;
|
|
|
|
|
return row_info[row_of_cell(cell)].bottom_line;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-17 14:31:07 +00:00
|
|
|
|
bool LyXTabular::LeftLine(int cell, bool onlycolumn) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2002-03-18 15:27:41 +00:00
|
|
|
|
if (!onlycolumn && IsMultiColumn(cell) &&
|
|
|
|
|
(IsFirstCellInRow(cell) || IsMultiColumn(cell-1)))
|
|
|
|
|
{
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#ifdef SPECIAL_COLUM_HANDLING
|
|
|
|
|
if (cellinfo_of_cell(cell)->align_special.empty())
|
|
|
|
|
return cellinfo_of_cell(cell)->left_line;
|
2002-07-28 22:50:13 +00:00
|
|
|
|
return prefixIs(ltrim(cellinfo_of_cell(cell)->align_special), "|");
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#else
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return cellinfo_of_cell(cell)->left_line;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
#ifdef SPECIAL_COLUM_HANDLING
|
|
|
|
|
if (column_info[column_of_cell(cell)].align_special.empty())
|
|
|
|
|
return column_info[column_of_cell(cell)].left_line;
|
2002-07-28 22:50:13 +00:00
|
|
|
|
return prefixIs(ltrim(column_info[column_of_cell(cell)].align_special), "|");
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#else
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return column_info[column_of_cell(cell)].left_line;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#endif
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-17 14:31:07 +00:00
|
|
|
|
bool LyXTabular::RightLine(int cell, bool onlycolumn) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2002-03-18 15:27:41 +00:00
|
|
|
|
if (!onlycolumn && IsMultiColumn(cell) &&
|
|
|
|
|
(IsLastCellInRow(cell) || IsMultiColumn(cell+1)))
|
|
|
|
|
{
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#ifdef SPECIAL_COLUM_HANDLING
|
|
|
|
|
if (cellinfo_of_cell(cell)->align_special.empty())
|
|
|
|
|
return cellinfo_of_cell(cell)->right_line;
|
2002-07-28 22:50:13 +00:00
|
|
|
|
return suffixIs(rtrim(cellinfo_of_cell(cell)->align_special), "|");
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#else
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return cellinfo_of_cell(cell)->right_line;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
#ifdef SPECIAL_COLUM_HANDLING
|
|
|
|
|
if (column_info[column_of_cell(cell)].align_special.empty())
|
|
|
|
|
return column_info[right_column_of_cell(cell)].right_line;
|
2002-07-28 22:50:13 +00:00
|
|
|
|
return suffixIs(rtrim(column_info[column_of_cell(cell)].align_special), "|");
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#else
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return column_info[right_column_of_cell(cell)].right_line;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#endif
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-14 15:01:06 +00:00
|
|
|
|
bool LyXTabular::topAlreadyDrawn(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int row = row_of_cell(cell);
|
2001-04-27 14:03:25 +00:00
|
|
|
|
if ((row > 0) && !GetAdditionalHeight(row)) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int column = column_of_cell(cell);
|
|
|
|
|
--row;
|
|
|
|
|
while (column
|
|
|
|
|
&& cell_info[row][column].multicolumn
|
|
|
|
|
== LyXTabular::CELL_PART_OF_MULTICOLUMN)
|
|
|
|
|
--column;
|
|
|
|
|
if (cell_info[row][column].multicolumn == LyXTabular::CELL_NORMAL)
|
|
|
|
|
return row_info[row].bottom_line;
|
|
|
|
|
else
|
|
|
|
|
return cell_info[row][column].bottom_line;
|
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-14 15:01:06 +00:00
|
|
|
|
bool LyXTabular::leftAlreadyDrawn(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int column = column_of_cell(cell);
|
|
|
|
|
if (column > 0) {
|
|
|
|
|
int row = row_of_cell(cell);
|
|
|
|
|
while (--column &&
|
|
|
|
|
(cell_info[row][column].multicolumn ==
|
|
|
|
|
LyXTabular::CELL_PART_OF_MULTICOLUMN));
|
|
|
|
|
if (GetAdditionalWidth(cell_info[row][column].cellno))
|
|
|
|
|
return false;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#ifdef SPECIAL_COLUM_HANDLING
|
2002-03-18 15:27:41 +00:00
|
|
|
|
return RightLine(cell_info[row][column].cellno);
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#else
|
|
|
|
|
return RightLine(cell_info[row][column].cellno, true);
|
|
|
|
|
#endif
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
|
|
|
|
return false;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
bool LyXTabular::IsLastRow(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return (row_of_cell(cell) == rows_ - 1);
|
2000-05-04 08:14:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-04-27 14:03:25 +00:00
|
|
|
|
int LyXTabular::GetAdditionalHeight(int row) const
|
2000-05-04 08:14:34 +00:00
|
|
|
|
{
|
2001-04-27 14:03:25 +00:00
|
|
|
|
if (!row || row >= rows_)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool top = true;
|
|
|
|
|
bool bottom = true;
|
2000-05-04 08:14:34 +00:00
|
|
|
|
|
2002-01-16 16:07:09 +00:00
|
|
|
|
for (int column = 0; column < columns_ && bottom; ++column) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
switch (cell_info[row - 1][column].multicolumn) {
|
|
|
|
|
case LyXTabular::CELL_BEGIN_OF_MULTICOLUMN:
|
|
|
|
|
bottom = cell_info[row - 1][column].bottom_line;
|
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::CELL_NORMAL:
|
|
|
|
|
bottom = row_info[row - 1].bottom_line;
|
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
2002-01-16 16:07:09 +00:00
|
|
|
|
for (int column = 0; column < columns_ && top; ++column) {
|
2002-02-16 15:59:55 +00:00
|
|
|
|
switch (cell_info[row][column].multicolumn) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
case LyXTabular::CELL_BEGIN_OF_MULTICOLUMN:
|
|
|
|
|
top = cell_info[row][column].top_line;
|
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::CELL_NORMAL:
|
|
|
|
|
top = row_info[row].top_line;
|
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (top && bottom)
|
|
|
|
|
return WIDTH_OF_LINE;
|
|
|
|
|
return 0;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::GetAdditionalWidth(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
// internally already set in SetWidthOfCell
|
|
|
|
|
// used to get it back in text.C
|
|
|
|
|
int const col = right_column_of_cell(cell);
|
2001-08-08 13:29:13 +00:00
|
|
|
|
int const row = row_of_cell(cell);
|
2002-03-18 15:27:41 +00:00
|
|
|
|
if (col < columns_ - 1 && RightLine(cell) &&
|
|
|
|
|
LeftLine(cell_info[row][col+1].cellno)) // column_info[col+1].left_line)
|
2001-08-08 13:29:13 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return WIDTH_OF_LINE;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
} else {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return 0;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
// returns the maximum over all rows
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::GetWidthOfColumn(int cell) const
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const column1 = column_of_cell(cell);
|
|
|
|
|
int const column2 = right_column_of_cell(cell);
|
|
|
|
|
int result = 0;
|
|
|
|
|
for (int i = column1; i <= column2; ++i) {
|
|
|
|
|
result += column_info[i].width_of_column;
|
|
|
|
|
}
|
|
|
|
|
return result;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::GetWidthOfTabular() const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return width_of_tabular;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
/* returns 1 if a complete update is necessary, otherwise 0 */
|
2000-04-21 15:16:22 +00:00
|
|
|
|
bool LyXTabular::SetWidthOfMulticolCell(int cell, int new_width)
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (!IsMultiColumn(cell))
|
|
|
|
|
return false;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const row = row_of_cell(cell);
|
|
|
|
|
int const column1 = column_of_cell(cell);
|
|
|
|
|
int const column2 = right_column_of_cell(cell);
|
2002-03-01 16:04:10 +00:00
|
|
|
|
int const old_val = cell_info[row][column2].width_of_cell;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
// first set columns to 0 so we can calculate the right width
|
|
|
|
|
for (int i = column1; i <= column2; ++i) {
|
|
|
|
|
cell_info[row][i].width_of_cell = 0;
|
|
|
|
|
}
|
|
|
|
|
// set the width to MAX_WIDTH until width > 0
|
|
|
|
|
int width = (new_width + 2 * WIDTH_OF_LINE);
|
|
|
|
|
int i = column1;
|
|
|
|
|
for (; i < column2 && width > column_info[i].width_of_column; ++i) {
|
|
|
|
|
cell_info[row][i].width_of_cell = column_info[i].width_of_column;
|
|
|
|
|
width -= column_info[i].width_of_column;
|
|
|
|
|
}
|
|
|
|
|
if (width > 0) {
|
|
|
|
|
cell_info[row][i].width_of_cell = width;
|
|
|
|
|
}
|
2002-03-01 16:04:10 +00:00
|
|
|
|
if (old_val != cell_info[row][column2].width_of_cell) {
|
|
|
|
|
// in this case we have to recalculate all multicolumn cells which
|
|
|
|
|
// have this column as one of theirs but not as last one
|
2002-03-04 11:26:17 +00:00
|
|
|
|
calculate_width_of_column_NMC(i);
|
2002-03-01 16:04:10 +00:00
|
|
|
|
recalculateMulticolumnsOfColumn(i);
|
2002-03-04 11:26:17 +00:00
|
|
|
|
calculate_width_of_column(i);
|
2002-03-01 16:04:10 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return true;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-01 16:04:10 +00:00
|
|
|
|
void LyXTabular::recalculateMulticolumnsOfColumn(int column)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2002-03-01 16:04:10 +00:00
|
|
|
|
// the last column does not have to be recalculated because all
|
|
|
|
|
// multicolumns will have here there last multicolumn cell which
|
|
|
|
|
// always will have the whole rest of the width of the cell.
|
|
|
|
|
if (column > (columns_ - 2))
|
|
|
|
|
return;
|
|
|
|
|
for(int row = 0; row < rows_; ++row) {
|
|
|
|
|
int mc = cell_info[row][column].multicolumn;
|
|
|
|
|
int nmc = cell_info[row][column+1].multicolumn;
|
|
|
|
|
// we only have to update multicolumns which do not have this
|
|
|
|
|
// column as their last column!
|
|
|
|
|
if (mc == CELL_BEGIN_OF_MULTICOLUMN ||
|
|
|
|
|
((mc == CELL_PART_OF_MULTICOLUMN) &&
|
|
|
|
|
(nmc == CELL_PART_OF_MULTICOLUMN)))
|
|
|
|
|
{
|
|
|
|
|
int const cellno = cell_info[row][column].cellno;
|
|
|
|
|
SetWidthOfMulticolCell(cellno,
|
2002-03-21 17:27:08 +00:00
|
|
|
|
GetWidthOfCell(cellno)-(2 * WIDTH_OF_LINE));
|
2002-03-01 16:04:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
/* returns 1 if a complete update is necessary, otherwise 0 */
|
2000-04-21 15:16:22 +00:00
|
|
|
|
bool LyXTabular::SetWidthOfCell(int cell, int new_width)
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const row = row_of_cell(cell);
|
|
|
|
|
int const column1 = column_of_cell(cell);
|
|
|
|
|
bool tmp = false;
|
|
|
|
|
int width = 0;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
int add_width = 0;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2001-08-08 13:29:13 +00:00
|
|
|
|
#ifdef SPECIAL_COLUM_HANDLING
|
|
|
|
|
if (RightLine(cell_info[row][column1].cellno, true) &&
|
|
|
|
|
(column1 < columns_-1) &&
|
|
|
|
|
LeftLine(cell_info[row][column1+1].cellno, true))
|
|
|
|
|
#else
|
|
|
|
|
if (column_info[column1].right_line && (column1 < columns_-1) &&
|
|
|
|
|
column_info[column1+1].left_line) // additional width
|
|
|
|
|
#endif
|
|
|
|
|
{
|
|
|
|
|
// additional width
|
|
|
|
|
add_width = WIDTH_OF_LINE;
|
|
|
|
|
}
|
|
|
|
|
if (GetWidthOfCell(cell) == (new_width+2*WIDTH_OF_LINE+add_width)) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return false;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (IsMultiColumn(cell, true)) {
|
|
|
|
|
tmp = SetWidthOfMulticolCell(cell, new_width);
|
|
|
|
|
} else {
|
2001-08-08 13:29:13 +00:00
|
|
|
|
width = (new_width + 2*WIDTH_OF_LINE + add_width);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cell_info[row][column1].width_of_cell = width;
|
|
|
|
|
tmp = calculate_width_of_column_NMC(column1);
|
2002-03-01 16:04:10 +00:00
|
|
|
|
if (tmp)
|
|
|
|
|
recalculateMulticolumnsOfColumn(column1);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
|
|
|
|
if (tmp) {
|
2002-03-01 16:04:10 +00:00
|
|
|
|
for (int i = 0; i < columns_; ++i)
|
2001-04-02 14:02:58 +00:00
|
|
|
|
calculate_width_of_column(i);
|
|
|
|
|
calculate_width_of_tabular();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2000-08-07 15:21:05 +00:00
|
|
|
|
return false;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-27 18:13:30 +00:00
|
|
|
|
bool LyXTabular::SetAlignment(int cell, LyXAlignment align, bool onlycolumn)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (!IsMultiColumn(cell) || onlycolumn)
|
|
|
|
|
column_info[column_of_cell(cell)].alignment = align;
|
|
|
|
|
if (!onlycolumn)
|
|
|
|
|
cellinfo_of_cell(cell)->alignment = align;
|
|
|
|
|
return true;
|
2000-07-17 14:31:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-28 14:05:24 +00:00
|
|
|
|
bool LyXTabular::SetVAlignment(int cell, VAlignment align, bool onlycolumn)
|
2000-07-17 14:31:07 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (!IsMultiColumn(cell) || onlycolumn)
|
|
|
|
|
column_info[column_of_cell(cell)].valignment = align;
|
|
|
|
|
if (!onlycolumn)
|
|
|
|
|
cellinfo_of_cell(cell)->valignment = align;
|
|
|
|
|
return true;
|
2000-07-17 14:31:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-11 17:26:52 +00:00
|
|
|
|
bool LyXTabular::SetColumnPWidth(int cell, LyXLength const & width)
|
2000-07-17 14:31:07 +00:00
|
|
|
|
{
|
2001-12-11 17:26:52 +00:00
|
|
|
|
bool flag = !width.zero();
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const j = column_of_cell(cell);
|
2000-07-17 14:31:07 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
column_info[j].p_width = width;
|
2002-09-06 13:41:19 +00:00
|
|
|
|
// This should not ne necessary anymore
|
|
|
|
|
// if (flag) // do this only if there is a width
|
|
|
|
|
// SetAlignment(cell, LYX_ALIGN_LEFT);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
int c = GetCellNumber(i, j);
|
2001-12-11 17:26:52 +00:00
|
|
|
|
flag = !GetPWidth(c).zero(); // because of multicolumns!
|
2001-06-28 10:25:20 +00:00
|
|
|
|
GetCellInset(c)->setAutoBreakRows(flag);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
|
|
|
|
return true;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2001-12-11 17:26:52 +00:00
|
|
|
|
bool LyXTabular::SetMColumnPWidth(int cell, LyXLength const & width)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-12-11 17:26:52 +00:00
|
|
|
|
bool const flag = !width.zero();
|
2000-05-15 14:49:36 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cellinfo_of_cell(cell)->p_width = width;
|
|
|
|
|
if (IsMultiColumn(cell)) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
GetCellInset(cell)->setAutoBreakRows(flag);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-09-28 14:05:24 +00:00
|
|
|
|
bool LyXTabular::SetAlignSpecial(int cell, string const & special,
|
2002-03-21 17:27:08 +00:00
|
|
|
|
LyXTabular::Feature what)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (what == SET_SPECIAL_MULTI)
|
|
|
|
|
cellinfo_of_cell(cell)->align_special = special;
|
|
|
|
|
else
|
|
|
|
|
column_info[column_of_cell(cell)].align_special = special;
|
|
|
|
|
return true;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
|
bool LyXTabular::SetAllLines(int cell, bool line)
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
SetTopLine(cell, line);
|
|
|
|
|
SetBottomLine(cell, line);
|
|
|
|
|
SetRightLine(cell, line);
|
|
|
|
|
SetLeftLine(cell, line);
|
|
|
|
|
return true;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-07-17 14:31:07 +00:00
|
|
|
|
bool LyXTabular::SetTopLine(int cell, bool line, bool onlycolumn)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const row = row_of_cell(cell);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (onlycolumn || !IsMultiColumn(cell))
|
|
|
|
|
row_info[row].top_line = line;
|
|
|
|
|
else
|
|
|
|
|
cellinfo_of_cell(cell)->top_line = line;
|
|
|
|
|
return true;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-17 14:31:07 +00:00
|
|
|
|
bool LyXTabular::SetBottomLine(int cell, bool line, bool onlycolumn)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (onlycolumn || !IsMultiColumn(cell))
|
|
|
|
|
row_info[row_of_cell(cell)].bottom_line = line;
|
|
|
|
|
else
|
|
|
|
|
cellinfo_of_cell(cell)->bottom_line = line;
|
|
|
|
|
return true;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-17 14:31:07 +00:00
|
|
|
|
bool LyXTabular::SetLeftLine(int cell, bool line, bool onlycolumn)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (onlycolumn || !IsMultiColumn(cell))
|
|
|
|
|
column_info[column_of_cell(cell)].left_line = line;
|
|
|
|
|
else
|
|
|
|
|
cellinfo_of_cell(cell)->left_line = line;
|
|
|
|
|
return true;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-17 14:31:07 +00:00
|
|
|
|
bool LyXTabular::SetRightLine(int cell, bool line, bool onlycolumn)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (onlycolumn || !IsMultiColumn(cell))
|
|
|
|
|
column_info[right_column_of_cell(cell)].right_line = line;
|
|
|
|
|
else
|
|
|
|
|
cellinfo_of_cell(cell)->right_line = line;
|
|
|
|
|
return true;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-28 14:05:24 +00:00
|
|
|
|
LyXAlignment LyXTabular::GetAlignment(int cell, bool onlycolumn) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (!onlycolumn && IsMultiColumn(cell))
|
|
|
|
|
return cellinfo_of_cell(cell)->alignment;
|
|
|
|
|
else
|
|
|
|
|
return column_info[column_of_cell(cell)].alignment;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-10-30 21:53:29 +00:00
|
|
|
|
LyXTabular::VAlignment
|
|
|
|
|
LyXTabular::GetVAlignment(int cell, bool onlycolumn) const
|
2000-07-17 14:31:07 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (!onlycolumn && IsMultiColumn(cell))
|
|
|
|
|
return cellinfo_of_cell(cell)->valignment;
|
|
|
|
|
else
|
|
|
|
|
return column_info[column_of_cell(cell)].valignment;
|
2000-07-17 14:31:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-11 17:26:52 +00:00
|
|
|
|
LyXLength const LyXTabular::GetPWidth(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (IsMultiColumn(cell))
|
|
|
|
|
return cellinfo_of_cell(cell)->p_width;
|
|
|
|
|
return column_info[column_of_cell(cell)].p_width;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2001-12-11 17:26:52 +00:00
|
|
|
|
LyXLength const LyXTabular::GetColumnPWidth(int cell) const
|
2000-07-17 14:31:07 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return column_info[column_of_cell(cell)].p_width;
|
2000-07-17 14:31:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-11 17:26:52 +00:00
|
|
|
|
LyXLength const LyXTabular::GetMColumnPWidth(int cell) const
|
2000-07-17 14:31:07 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (IsMultiColumn(cell))
|
|
|
|
|
return cellinfo_of_cell(cell)->p_width;
|
2001-12-11 17:26:52 +00:00
|
|
|
|
return LyXLength();
|
2000-07-17 14:31:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
string const LyXTabular::GetAlignSpecial(int cell, int what) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (what == SET_SPECIAL_MULTI)
|
|
|
|
|
return cellinfo_of_cell(cell)->align_special;
|
|
|
|
|
return column_info[column_of_cell(cell)].align_special;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::GetWidthOfCell(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const row = row_of_cell(cell);
|
|
|
|
|
int const column1 = column_of_cell(cell);
|
|
|
|
|
int const column2 = right_column_of_cell(cell);
|
|
|
|
|
int result = 0;
|
|
|
|
|
for (int i = column1; i <= column2; ++i) {
|
|
|
|
|
result += cell_info[row][i].width_of_cell;
|
|
|
|
|
}
|
|
|
|
|
return result;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-09-26 13:54:57 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::GetBeginningOfTextInCell(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int x = 0;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
switch (GetAlignment(cell)) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
case LYX_ALIGN_CENTER:
|
|
|
|
|
x += (GetWidthOfColumn(cell) - GetWidthOfCell(cell)) / 2;
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
|
x += GetWidthOfColumn(cell) - GetWidthOfCell(cell);
|
|
|
|
|
// + GetAdditionalWidth(cell);
|
|
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
default: /* LYX_ALIGN_LEFT: nothing :-) */
|
2001-04-02 14:02:58 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
// the LaTeX Way :-(
|
|
|
|
|
x += WIDTH_OF_LINE;
|
|
|
|
|
return x;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
bool LyXTabular::IsFirstCellInRow(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return column_of_cell(cell) == 0;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
|
int LyXTabular::GetFirstCellInRow(int row) const
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (row > (rows_-1))
|
|
|
|
|
row = rows_ - 1;
|
|
|
|
|
return cell_info[row][0].cellno;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
bool LyXTabular::IsLastCellInRow(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return (right_column_of_cell(cell) == (columns_ - 1));
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
|
int LyXTabular::GetLastCellInRow(int row) const
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (row > (rows_-1))
|
|
|
|
|
row = rows_ - 1;
|
|
|
|
|
return cell_info[row][columns_-1].cellno;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
|
bool LyXTabular::calculate_width_of_column(int column)
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const old_column_width = column_info[column].width_of_column;
|
|
|
|
|
int maximum = 0;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
maximum = max(cell_info[i][column].width_of_cell, maximum);
|
|
|
|
|
}
|
|
|
|
|
column_info[column].width_of_column = maximum;
|
|
|
|
|
return (column_info[column].width_of_column != old_column_width);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
//
|
2002-03-04 11:26:17 +00:00
|
|
|
|
// Calculate the columns regarding ONLY the normal cells and if this
|
|
|
|
|
// column is inside a multicolumn cell then use it only if its the last
|
|
|
|
|
// column of this multicolumn cell as this gives an added with to the
|
|
|
|
|
// column, all the rest should be adapted!
|
2000-09-14 17:53:12 +00:00
|
|
|
|
//
|
2000-04-21 15:16:22 +00:00
|
|
|
|
bool LyXTabular::calculate_width_of_column_NMC(int column)
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const old_column_width = column_info[column].width_of_column;
|
|
|
|
|
int max = 0;
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
2002-03-04 11:26:17 +00:00
|
|
|
|
int cell = GetCellNumber(i, column);
|
|
|
|
|
bool ismulti = IsMultiColumn(cell, true);
|
|
|
|
|
if ((!ismulti || (column == right_column_of_cell(cell))) &&
|
|
|
|
|
(cell_info[i][column].width_of_cell > max))
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
max = cell_info[i][column].width_of_cell;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
column_info[column].width_of_column = max;
|
|
|
|
|
return (column_info[column].width_of_column != old_column_width);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
|
void LyXTabular::calculate_width_of_tabular()
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
width_of_tabular = 0;
|
|
|
|
|
for (int i = 0; i < columns_; ++i) {
|
|
|
|
|
width_of_tabular += column_info[i].width_of_column;
|
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int LyXTabular::row_of_cell(int cell) const
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (cell >= numberofcells)
|
|
|
|
|
return rows_ - 1;
|
|
|
|
|
else if (cell < 0)
|
|
|
|
|
return 0;
|
|
|
|
|
return rowofcell[cell];
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int LyXTabular::column_of_cell(int cell) const
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (cell >= numberofcells)
|
|
|
|
|
return columns_ - 1;
|
|
|
|
|
else if (cell < 0)
|
|
|
|
|
return 0;
|
|
|
|
|
return columnofcell[cell];
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::right_column_of_cell(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const row = row_of_cell(cell);
|
|
|
|
|
int column = column_of_cell(cell);
|
|
|
|
|
while (column < (columns_ - 1) &&
|
|
|
|
|
cell_info[row][column + 1].multicolumn == LyXTabular::CELL_PART_OF_MULTICOLUMN)
|
|
|
|
|
++column;
|
|
|
|
|
return column;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
void LyXTabular::Write(Buffer const * buf, ostream & os) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
// header line
|
|
|
|
|
os << "<lyxtabular"
|
2001-12-19 21:25:34 +00:00
|
|
|
|
<< write_attribute("version", 3)
|
2001-04-02 14:02:58 +00:00
|
|
|
|
<< write_attribute("rows", rows_)
|
|
|
|
|
<< write_attribute("columns", columns_)
|
2001-01-09 16:23:48 +00:00
|
|
|
|
<< ">\n";
|
2001-04-02 14:02:58 +00:00
|
|
|
|
// global longtable options
|
|
|
|
|
os << "<features"
|
2002-02-26 08:24:48 +00:00
|
|
|
|
<< write_attribute("rotate", rotate)
|
|
|
|
|
<< write_attribute("islongtable", is_long_tabular)
|
|
|
|
|
<< write_attribute("firstHeadTopDL", endfirsthead.topDL)
|
|
|
|
|
<< write_attribute("firstHeadBottomDL", endfirsthead.bottomDL)
|
|
|
|
|
<< write_attribute("firstHeadEmpty", endfirsthead.empty)
|
|
|
|
|
<< write_attribute("headTopDL", endhead.topDL)
|
|
|
|
|
<< write_attribute("headBottomDL", endhead.bottomDL)
|
|
|
|
|
<< write_attribute("footTopDL", endfoot.topDL)
|
|
|
|
|
<< write_attribute("footBottomDL", endfoot.bottomDL)
|
|
|
|
|
<< write_attribute("lastFootTopDL", endlastfoot.topDL)
|
|
|
|
|
<< write_attribute("lastFootBottomDL", endlastfoot.bottomDL)
|
|
|
|
|
<< write_attribute("lastFootEmpty", endlastfoot.empty)
|
2000-10-30 21:53:29 +00:00
|
|
|
|
<< ">\n";
|
2000-09-14 17:53:12 +00:00
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
2001-01-10 18:18:30 +00:00
|
|
|
|
os << "<column"
|
2002-02-26 08:24:48 +00:00
|
|
|
|
<< write_attribute("alignment", column_info[j].alignment)
|
|
|
|
|
<< write_attribute("valignment", column_info[j].valignment)
|
|
|
|
|
<< write_attribute("leftline", column_info[j].left_line)
|
|
|
|
|
<< write_attribute("rightline", column_info[j].right_line)
|
2001-12-11 17:26:52 +00:00
|
|
|
|
<< write_attribute("width", column_info[j].p_width.asString())
|
2000-10-30 21:53:29 +00:00
|
|
|
|
<< write_attribute("special", column_info[j].align_special)
|
|
|
|
|
<< ">\n";
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
os << "<row"
|
2002-02-26 08:24:48 +00:00
|
|
|
|
<< write_attribute("topline", row_info[i].top_line)
|
|
|
|
|
<< write_attribute("bottomline", row_info[i].bottom_line)
|
|
|
|
|
<< write_attribute("endhead", row_info[i].endhead)
|
|
|
|
|
<< write_attribute("endfirsthead", row_info[i].endfirsthead)
|
|
|
|
|
<< write_attribute("endfoot", row_info[i].endfoot)
|
|
|
|
|
<< write_attribute("endlastfoot", row_info[i].endlastfoot)
|
|
|
|
|
<< write_attribute("newpage", row_info[i].newpage)
|
2001-04-02 14:02:58 +00:00
|
|
|
|
<< ">\n";
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
os << "<cell"
|
|
|
|
|
<< write_attribute("multicolumn", cell_info[i][j].multicolumn)
|
2002-02-26 08:24:48 +00:00
|
|
|
|
<< write_attribute("alignment", cell_info[i][j].alignment)
|
|
|
|
|
<< write_attribute("valignment", cell_info[i][j].valignment)
|
|
|
|
|
<< write_attribute("topline", cell_info[i][j].top_line)
|
|
|
|
|
<< write_attribute("bottomline", cell_info[i][j].bottom_line)
|
|
|
|
|
<< write_attribute("leftline", cell_info[i][j].left_line)
|
|
|
|
|
<< write_attribute("rightline", cell_info[i][j].right_line)
|
|
|
|
|
<< write_attribute("rotate", cell_info[i][j].rotate)
|
|
|
|
|
<< write_attribute("usebox", cell_info[i][j].usebox)
|
2001-04-02 14:02:58 +00:00
|
|
|
|
<< write_attribute("width", cell_info[i][j].p_width)
|
|
|
|
|
<< write_attribute("special", cell_info[i][j].align_special)
|
|
|
|
|
<< ">\n";
|
|
|
|
|
os << "\\begin_inset ";
|
2001-06-28 10:25:20 +00:00
|
|
|
|
cell_info[i][j].inset.write(buf, os);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
os << "\n\\end_inset \n"
|
|
|
|
|
<< "</cell>\n";
|
|
|
|
|
}
|
|
|
|
|
os << "</row>\n";
|
|
|
|
|
}
|
|
|
|
|
os << "</lyxtabular>\n";
|
2000-05-04 08:14:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2001-01-09 16:23:48 +00:00
|
|
|
|
void LyXTabular::Read(Buffer const * buf, LyXLex & lex)
|
|
|
|
|
{
|
2001-01-09 20:17:06 +00:00
|
|
|
|
string line;
|
|
|
|
|
istream & is = lex.getStream();
|
2001-01-09 16:23:48 +00:00
|
|
|
|
|
2001-01-09 20:17:06 +00:00
|
|
|
|
l_getline(is, line);
|
2001-01-10 18:18:30 +00:00
|
|
|
|
if (!prefixIs(line, "<lyxtabular ")
|
2001-04-02 14:02:58 +00:00
|
|
|
|
&& !prefixIs(line, "<LyXTabular ")) {
|
2003-03-29 10:29:38 +00:00
|
|
|
|
lyx::Assert(false);
|
2001-01-09 20:17:06 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2001-01-09 16:23:48 +00:00
|
|
|
|
|
2001-01-09 20:17:06 +00:00
|
|
|
|
int version;
|
|
|
|
|
if (!getTokenValue(line, "version", version))
|
|
|
|
|
return;
|
2003-03-29 10:29:38 +00:00
|
|
|
|
lyx::Assert(version >= 2);
|
|
|
|
|
read(buf, is, lex, line, version);
|
2001-01-09 20:17:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-12-20 14:52:15 +00:00
|
|
|
|
void LyXTabular::setHeaderFooterRows(int hr, int fhr, int fr, int lfr)
|
|
|
|
|
{
|
|
|
|
|
// set header info
|
|
|
|
|
while(hr > 0) {
|
|
|
|
|
row_info[--hr].endhead = true;
|
|
|
|
|
}
|
|
|
|
|
// set firstheader info
|
|
|
|
|
if (fhr && (fhr < rows_)) {
|
|
|
|
|
if (row_info[fhr].endhead) {
|
|
|
|
|
while(fhr > 0) {
|
|
|
|
|
row_info[--fhr].endfirsthead = true;
|
|
|
|
|
row_info[fhr].endhead = false;
|
|
|
|
|
}
|
2002-03-03 20:25:07 +00:00
|
|
|
|
} else if (row_info[fhr - 1].endhead) {
|
2001-12-20 14:52:15 +00:00
|
|
|
|
endfirsthead.empty = true;
|
|
|
|
|
} else {
|
|
|
|
|
while((fhr > 0) && !row_info[--fhr].endhead) {
|
|
|
|
|
row_info[fhr].endfirsthead = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// set footer info
|
|
|
|
|
if (fr && (fr < rows_)) {
|
|
|
|
|
if (row_info[fr].endhead && row_info[fr-1].endhead) {
|
|
|
|
|
while((fr > 0) && !row_info[--fr].endhead) {
|
|
|
|
|
row_info[fr].endfoot = true;
|
|
|
|
|
row_info[fr].endhead = false;
|
|
|
|
|
}
|
|
|
|
|
} else if (row_info[fr].endfirsthead && row_info[fr-1].endfirsthead) {
|
|
|
|
|
while((fr > 0) && !row_info[--fr].endfirsthead) {
|
|
|
|
|
row_info[fr].endfoot = true;
|
|
|
|
|
row_info[fr].endfirsthead = false;
|
|
|
|
|
}
|
2002-03-03 20:25:07 +00:00
|
|
|
|
} else if (!row_info[fr - 1].endhead && !row_info[fr - 1].endfirsthead) {
|
2001-12-20 14:52:15 +00:00
|
|
|
|
while((fr > 0) && !row_info[--fr].endhead &&
|
|
|
|
|
!row_info[fr].endfirsthead)
|
|
|
|
|
{
|
|
|
|
|
row_info[fr].endfoot = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// set lastfooter info
|
|
|
|
|
if (lfr && (lfr < rows_)) {
|
2002-03-03 20:25:07 +00:00
|
|
|
|
if (row_info[lfr].endhead && row_info[lfr - 1].endhead) {
|
2001-12-20 14:52:15 +00:00
|
|
|
|
while((lfr > 0) && !row_info[--lfr].endhead) {
|
|
|
|
|
row_info[lfr].endlastfoot = true;
|
|
|
|
|
row_info[lfr].endhead = false;
|
|
|
|
|
}
|
|
|
|
|
} else if (row_info[lfr].endfirsthead &&
|
2002-03-03 20:25:07 +00:00
|
|
|
|
row_info[lfr - 1].endfirsthead)
|
2001-12-20 14:52:15 +00:00
|
|
|
|
{
|
|
|
|
|
while((lfr > 0) && !row_info[--lfr].endfirsthead) {
|
|
|
|
|
row_info[lfr].endlastfoot = true;
|
|
|
|
|
row_info[lfr].endfirsthead = false;
|
|
|
|
|
}
|
2002-03-03 20:25:07 +00:00
|
|
|
|
} else if (row_info[lfr].endfoot
|
|
|
|
|
&& row_info[lfr - 1].endfoot) {
|
2001-12-20 14:52:15 +00:00
|
|
|
|
while((lfr > 0) && !row_info[--lfr].endfoot) {
|
|
|
|
|
row_info[lfr].endlastfoot = true;
|
|
|
|
|
row_info[lfr].endfoot = false;
|
|
|
|
|
}
|
2002-03-03 20:25:07 +00:00
|
|
|
|
} else if (!row_info[fr - 1].endhead
|
|
|
|
|
&& !row_info[fr - 1].endfirsthead &&
|
|
|
|
|
!row_info[fr - 1].endfoot)
|
2001-12-20 14:52:15 +00:00
|
|
|
|
{
|
|
|
|
|
while((lfr > 0) &&
|
|
|
|
|
!row_info[--lfr].endhead && !row_info[lfr].endfirsthead &&
|
|
|
|
|
!row_info[lfr].endfoot)
|
|
|
|
|
{
|
|
|
|
|
row_info[lfr].endlastfoot = true;
|
|
|
|
|
}
|
|
|
|
|
} else if (haveLTFoot()) {
|
|
|
|
|
endlastfoot.empty = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-01-09 20:17:06 +00:00
|
|
|
|
|
2003-03-29 10:29:38 +00:00
|
|
|
|
void LyXTabular::read(Buffer const * buf, istream & is,
|
|
|
|
|
LyXLex & lex, string const & l, int const version)
|
2001-04-02 14:02:58 +00:00
|
|
|
|
{
|
|
|
|
|
string line(l);
|
|
|
|
|
int rows_arg;
|
|
|
|
|
if (!getTokenValue(line, "rows", rows_arg))
|
|
|
|
|
return;
|
|
|
|
|
int columns_arg;
|
|
|
|
|
if (!getTokenValue(line, "columns", columns_arg))
|
|
|
|
|
return;
|
2002-03-03 20:25:07 +00:00
|
|
|
|
Init(buf->params, rows_arg, columns_arg);
|
2001-01-09 16:23:48 +00:00
|
|
|
|
l_getline(is, line);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (!prefixIs(line, "<features")) {
|
2002-11-27 10:30:28 +00:00
|
|
|
|
lyxerr << "Wrong tabular format (expected <features ...> got"
|
|
|
|
|
<< line << ')' << endl;
|
2001-01-09 16:23:48 +00:00
|
|
|
|
return;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
|
|
|
|
getTokenValue(line, "rotate", rotate);
|
|
|
|
|
getTokenValue(line, "islongtable", is_long_tabular);
|
2001-12-20 14:52:15 +00:00
|
|
|
|
// compatibility read for old longtable options. Now we can make any
|
|
|
|
|
// row part of the header/footer type we want before it was strict
|
|
|
|
|
// sequential from the first row down (as LaTeX does it!). So now when
|
|
|
|
|
// we find a header/footer line we have to go up the rows and set it
|
|
|
|
|
// on all preceding rows till the first or one with already a h/f option
|
|
|
|
|
// set. If we find a firstheader on the same line as a header or a
|
|
|
|
|
// lastfooter on the same line as a footer then this should be set empty.
|
|
|
|
|
// (Jug 20011220)
|
2001-12-19 21:25:34 +00:00
|
|
|
|
if (version < 3) {
|
|
|
|
|
int hrow;
|
|
|
|
|
int fhrow;
|
|
|
|
|
int frow;
|
|
|
|
|
int lfrow;
|
|
|
|
|
|
|
|
|
|
getTokenValue(line, "endhead", hrow);
|
|
|
|
|
getTokenValue(line, "endfirsthead", fhrow);
|
|
|
|
|
getTokenValue(line, "endfoot", frow);
|
|
|
|
|
getTokenValue(line, "endlastfoot", lfrow);
|
2001-12-20 14:52:15 +00:00
|
|
|
|
setHeaderFooterRows(abs(hrow), abs(fhrow), abs(frow), abs(lfrow));
|
2001-12-19 21:25:34 +00:00
|
|
|
|
} else {
|
|
|
|
|
getTokenValue(line, "firstHeadTopDL", endfirsthead.topDL);
|
|
|
|
|
getTokenValue(line, "firstHeadBottomDL", endfirsthead.bottomDL);
|
|
|
|
|
getTokenValue(line, "firstHeadEmpty", endfirsthead.empty);
|
|
|
|
|
getTokenValue(line, "headTopDL", endhead.topDL);
|
|
|
|
|
getTokenValue(line, "headBottomDL", endhead.bottomDL);
|
|
|
|
|
getTokenValue(line, "footTopDL", endfoot.topDL);
|
|
|
|
|
getTokenValue(line, "footBottomDL", endfoot.bottomDL);
|
|
|
|
|
getTokenValue(line, "lastFootTopDL", endlastfoot.topDL);
|
|
|
|
|
getTokenValue(line, "lastFootBottomDL", endlastfoot.bottomDL);
|
|
|
|
|
getTokenValue(line, "lastFootEmpty", endlastfoot.empty);
|
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
l_getline(is,line);
|
|
|
|
|
if (!prefixIs(line,"<column")) {
|
2002-11-27 10:30:28 +00:00
|
|
|
|
lyxerr << "Wrong tabular format (expected <column ...> got"
|
|
|
|
|
<< line << ')' << endl;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
getTokenValue(line, "alignment", column_info[j].alignment);
|
|
|
|
|
getTokenValue(line, "valignment", column_info[j].valignment);
|
|
|
|
|
getTokenValue(line, "leftline", column_info[j].left_line);
|
|
|
|
|
getTokenValue(line, "rightline", column_info[j].right_line);
|
|
|
|
|
getTokenValue(line, "width", column_info[j].p_width);
|
|
|
|
|
getTokenValue(line, "special", column_info[j].align_special);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
2001-01-09 16:23:48 +00:00
|
|
|
|
l_getline(is, line);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (!prefixIs(line, "<row")) {
|
2002-11-27 10:30:28 +00:00
|
|
|
|
lyxerr << "Wrong tabular format (expected <row ...> got"
|
|
|
|
|
<< line << ')' << endl;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
getTokenValue(line, "topline", row_info[i].top_line);
|
|
|
|
|
getTokenValue(line, "bottomline", row_info[i].bottom_line);
|
2001-12-20 14:52:15 +00:00
|
|
|
|
getTokenValue(line, "endfirsthead", row_info[i].endfirsthead);
|
|
|
|
|
getTokenValue(line, "endhead", row_info[i].endhead);
|
|
|
|
|
getTokenValue(line, "endfoot", row_info[i].endfoot);
|
|
|
|
|
getTokenValue(line, "endlastfoot", row_info[i].endlastfoot);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
getTokenValue(line, "newpage", row_info[i].newpage);
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
l_getline(is, line);
|
|
|
|
|
if (!prefixIs(line, "<cell")) {
|
2002-11-27 10:30:28 +00:00
|
|
|
|
lyxerr << "Wrong tabular format (expected <cell ...> got"
|
|
|
|
|
<< line << ')' << endl;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
getTokenValue(line, "multicolumn", cell_info[i][j].multicolumn);
|
|
|
|
|
getTokenValue(line, "alignment", cell_info[i][j].alignment);
|
|
|
|
|
getTokenValue(line, "valignment", cell_info[i][j].valignment);
|
|
|
|
|
getTokenValue(line, "topline", cell_info[i][j].top_line);
|
|
|
|
|
getTokenValue(line, "bottomline", cell_info[i][j].bottom_line);
|
|
|
|
|
getTokenValue(line, "leftline", cell_info[i][j].left_line);
|
|
|
|
|
getTokenValue(line, "rightline", cell_info[i][j].right_line);
|
|
|
|
|
getTokenValue(line, "rotate", cell_info[i][j].rotate);
|
|
|
|
|
getTokenValue(line, "usebox", cell_info[i][j].usebox);
|
|
|
|
|
getTokenValue(line, "width", cell_info[i][j].p_width);
|
|
|
|
|
getTokenValue(line, "special", cell_info[i][j].align_special);
|
|
|
|
|
l_getline(is, line);
|
|
|
|
|
if (prefixIs(line, "\\begin_inset")) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
cell_info[i][j].inset.read(buf, lex);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
l_getline(is, line);
|
|
|
|
|
}
|
|
|
|
|
if (!prefixIs(line, "</cell>")) {
|
2002-11-27 10:30:28 +00:00
|
|
|
|
lyxerr << "Wrong tabular format (expected </cell> got"
|
|
|
|
|
<< line << ')' << endl;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
l_getline(is, line);
|
|
|
|
|
if (!prefixIs(line, "</row>")) {
|
2002-11-27 10:30:28 +00:00
|
|
|
|
lyxerr << "Wrong tabular format (expected </row> got"
|
|
|
|
|
<< line << ')' << endl;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2001-01-09 16:23:48 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
while (!prefixIs(line, "</lyxtabular>")) {
|
|
|
|
|
l_getline(is, line);
|
2001-01-09 16:23:48 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
set_row_column_number_info();
|
2001-01-09 16:23:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-08-07 15:21:05 +00:00
|
|
|
|
bool LyXTabular::IsMultiColumn(int cell, bool real) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return ((!real || (column_of_cell(cell) != right_column_of_cell(cell))) &&
|
|
|
|
|
(cellinfo_of_cell(cell)->multicolumn != LyXTabular::CELL_NORMAL));
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
LyXTabular::cellstruct * LyXTabular::cellinfo_of_cell(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const row = row_of_cell(cell);
|
|
|
|
|
int const column = column_of_cell(cell);
|
|
|
|
|
return &cell_info[row][column];
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
2000-09-26 13:54:57 +00:00
|
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2003-03-04 20:45:02 +00:00
|
|
|
|
void LyXTabular::SetMultiColumn(Buffer * buffer, int cell, int number)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cellinfo_of_cell(cell)->multicolumn = CELL_BEGIN_OF_MULTICOLUMN;
|
|
|
|
|
cellinfo_of_cell(cell)->alignment = column_info[column_of_cell(cell)].alignment;
|
|
|
|
|
cellinfo_of_cell(cell)->top_line = row_info[row_of_cell(cell)].top_line;
|
|
|
|
|
cellinfo_of_cell(cell)->bottom_line = row_info[row_of_cell(cell)].bottom_line;
|
2002-03-21 15:58:54 +00:00
|
|
|
|
cellinfo_of_cell(cell)->right_line = column_info[column_of_cell(cell+number-1)].right_line;
|
|
|
|
|
#if 1
|
|
|
|
|
for (int i = 1; i < number; ++i) {
|
2003-05-22 10:47:31 +00:00
|
|
|
|
cellinfo_of_cell(cell + i)->multicolumn = CELL_PART_OF_MULTICOLUMN;
|
2003-03-04 20:45:02 +00:00
|
|
|
|
cellinfo_of_cell(cell)->inset.appendParagraphs(buffer,
|
2003-04-28 16:22:32 +00:00
|
|
|
|
cellinfo_of_cell(cell+i)->inset.paragraphs);
|
2003-05-22 10:47:31 +00:00
|
|
|
|
cellinfo_of_cell(cell + i)->inset.clear(false);
|
2002-03-21 15:58:54 +00:00
|
|
|
|
}
|
|
|
|
|
#else
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (number--; number > 0; --number) {
|
2003-05-22 10:47:31 +00:00
|
|
|
|
cellinfo_of_cell(cell + number)->multicolumn = CELL_PART_OF_MULTICOLUMN;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2002-03-21 15:58:54 +00:00
|
|
|
|
#endif
|
2001-04-02 14:02:58 +00:00
|
|
|
|
set_row_column_number_info();
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::cells_in_multicolumn(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const row = row_of_cell(cell);
|
|
|
|
|
int column = column_of_cell(cell);
|
|
|
|
|
int result = 1;
|
|
|
|
|
++column;
|
|
|
|
|
while ((column < columns_) &&
|
|
|
|
|
cell_info[row][column].multicolumn == CELL_PART_OF_MULTICOLUMN)
|
|
|
|
|
{
|
|
|
|
|
++result;
|
|
|
|
|
++column;
|
|
|
|
|
}
|
|
|
|
|
return result;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
int LyXTabular::UnsetMultiColumn(int cell)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const row = row_of_cell(cell);
|
|
|
|
|
int column = column_of_cell(cell);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int result = 0;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (cell_info[row][column].multicolumn == CELL_BEGIN_OF_MULTICOLUMN) {
|
|
|
|
|
cell_info[row][column].multicolumn = CELL_NORMAL;
|
|
|
|
|
++column;
|
|
|
|
|
while ((column < columns_) &&
|
|
|
|
|
(cell_info[row][column].multicolumn ==CELL_PART_OF_MULTICOLUMN))
|
|
|
|
|
{
|
|
|
|
|
cell_info[row][column].multicolumn = CELL_NORMAL;
|
|
|
|
|
++column;
|
|
|
|
|
++result;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
set_row_column_number_info();
|
|
|
|
|
return result;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-28 14:05:24 +00:00
|
|
|
|
void LyXTabular::SetLongTabular(bool what)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
is_long_tabular = what;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
bool LyXTabular::IsLongTabular() const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return is_long_tabular;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-08-23 15:18:19 +00:00
|
|
|
|
void LyXTabular::SetRotateTabular(bool flag)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
rotate = flag;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
bool LyXTabular::GetRotateTabular() const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return rotate;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-08-23 15:18:19 +00:00
|
|
|
|
void LyXTabular::SetRotateCell(int cell, bool flag)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cellinfo_of_cell(cell)->rotate = flag;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
bool LyXTabular::GetRotateCell(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return cellinfo_of_cell(cell)->rotate;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
bool LyXTabular::NeedRotating() const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (rotate)
|
|
|
|
|
return true;
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
if (cell_info[i][j].rotate)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
bool LyXTabular::IsLastCell(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-07-18 08:38:14 +00:00
|
|
|
|
if ((cell + 1) < numberofcells)
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return false;
|
|
|
|
|
return true;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::GetCellAbove(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (row_of_cell(cell) > 0)
|
|
|
|
|
return cell_info[row_of_cell(cell)-1][column_of_cell(cell)].cellno;
|
|
|
|
|
return cell;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-22 15:20:02 +00:00
|
|
|
|
int LyXTabular::GetCellBelow(int cell) const
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (row_of_cell(cell) + 1 < rows_)
|
|
|
|
|
return cell_info[row_of_cell(cell)+1][column_of_cell(cell)].cellno;
|
|
|
|
|
return cell;
|
2000-05-22 15:20:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-26 13:09:14 +00:00
|
|
|
|
int LyXTabular::GetLastCellAbove(int cell) const
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (row_of_cell(cell) <= 0)
|
|
|
|
|
return cell;
|
|
|
|
|
if (!IsMultiColumn(cell))
|
|
|
|
|
return GetCellAbove(cell);
|
|
|
|
|
return cell_info[row_of_cell(cell) - 1][right_column_of_cell(cell)].cellno;
|
2000-05-26 13:09:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int LyXTabular::GetLastCellBelow(int cell) const
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (row_of_cell(cell) + 1 >= rows_)
|
|
|
|
|
return cell;
|
|
|
|
|
if (!IsMultiColumn(cell))
|
|
|
|
|
return GetCellBelow(cell);
|
|
|
|
|
return cell_info[row_of_cell(cell) + 1][right_column_of_cell(cell)].cellno;
|
2000-05-26 13:09:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
|
int LyXTabular::GetCellNumber(int row, int column) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-07-18 08:38:14 +00:00
|
|
|
|
#if 0
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (column >= columns_)
|
|
|
|
|
column = columns_ - 1;
|
|
|
|
|
else if (column < 0)
|
|
|
|
|
column = 0;
|
|
|
|
|
if (row >= rows_)
|
|
|
|
|
row = rows_ - 1;
|
|
|
|
|
else if (row < 0)
|
|
|
|
|
row = 0;
|
2001-07-17 15:39:12 +00:00
|
|
|
|
#else
|
2001-07-18 08:38:14 +00:00
|
|
|
|
lyx::Assert(column >= 0 || column < columns_ || row >= 0 || row < rows_);
|
2001-07-17 15:39:12 +00:00
|
|
|
|
#endif
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return cell_info[row][column].cellno;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-08-23 15:18:19 +00:00
|
|
|
|
void LyXTabular::SetUsebox(int cell, BoxType type)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
cellinfo_of_cell(cell)->usebox = type;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-09-28 14:05:24 +00:00
|
|
|
|
LyXTabular::BoxType LyXTabular::GetUsebox(int cell) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-12-11 17:26:52 +00:00
|
|
|
|
if (column_info[column_of_cell(cell)].p_width.zero() &&
|
|
|
|
|
!(IsMultiColumn(cell) && !cellinfo_of_cell(cell)->p_width.zero()))
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return BOX_NONE;
|
|
|
|
|
if (cellinfo_of_cell(cell)->usebox > 1)
|
|
|
|
|
return cellinfo_of_cell(cell)->usebox;
|
|
|
|
|
return UseParbox(cell);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-20 14:52:15 +00:00
|
|
|
|
///
|
|
|
|
|
// This are functions used for the longtable support
|
|
|
|
|
///
|
2001-12-19 21:25:34 +00:00
|
|
|
|
void LyXTabular::SetLTHead(int row, bool flag, ltType const & hd, bool first)
|
2001-10-24 15:07:39 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (first) {
|
2001-10-24 15:07:39 +00:00
|
|
|
|
endfirsthead = hd;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
if (hd.set)
|
|
|
|
|
row_info[row].endfirsthead = flag;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
} else {
|
2001-10-24 15:07:39 +00:00
|
|
|
|
endhead = hd;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
if (hd.set)
|
|
|
|
|
row_info[row].endhead = flag;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2001-10-24 15:07:39 +00:00
|
|
|
|
bool LyXTabular::GetRowOfLTHead(int row, ltType & hd) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-10-24 15:07:39 +00:00
|
|
|
|
hd = endhead;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
hd.set = haveLTHead();
|
2001-12-19 21:25:34 +00:00
|
|
|
|
return row_info[row].endhead;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2001-10-24 15:07:39 +00:00
|
|
|
|
bool LyXTabular::GetRowOfLTFirstHead(int row, ltType & hd) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-10-24 15:07:39 +00:00
|
|
|
|
hd = endfirsthead;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
hd.set = haveLTFirstHead();
|
2001-12-19 21:25:34 +00:00
|
|
|
|
return row_info[row].endfirsthead;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2001-12-19 21:25:34 +00:00
|
|
|
|
void LyXTabular::SetLTFoot(int row, bool flag, ltType const & fd, bool last)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (last) {
|
2001-10-24 15:07:39 +00:00
|
|
|
|
endlastfoot = fd;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
if (fd.set)
|
|
|
|
|
row_info[row].endlastfoot = flag;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
} else {
|
2001-10-24 15:07:39 +00:00
|
|
|
|
endfoot = fd;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
if (fd.set)
|
|
|
|
|
row_info[row].endfoot = flag;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2001-10-24 15:07:39 +00:00
|
|
|
|
bool LyXTabular::GetRowOfLTFoot(int row, ltType & fd) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-10-24 15:07:39 +00:00
|
|
|
|
fd = endfoot;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
fd.set = haveLTFoot();
|
2001-12-19 21:25:34 +00:00
|
|
|
|
return row_info[row].endfoot;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
|
2001-10-24 15:07:39 +00:00
|
|
|
|
bool LyXTabular::GetRowOfLTLastFoot(int row, ltType & fd) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-10-24 15:07:39 +00:00
|
|
|
|
fd = endlastfoot;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
fd.set = haveLTLastFoot();
|
2001-12-19 21:25:34 +00:00
|
|
|
|
return row_info[row].endlastfoot;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2001-12-19 16:13:21 +00:00
|
|
|
|
void LyXTabular::SetLTNewPage(int row, bool what)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-12-19 16:13:21 +00:00
|
|
|
|
row_info[row].newpage = what;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2001-12-19 16:13:21 +00:00
|
|
|
|
bool LyXTabular::GetLTNewPage(int row) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-12-19 16:13:21 +00:00
|
|
|
|
return row_info[row].newpage;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2001-12-20 14:52:15 +00:00
|
|
|
|
bool LyXTabular::haveLTHead() const
|
|
|
|
|
{
|
|
|
|
|
for(int i=0; i < rows_; ++i) {
|
|
|
|
|
if (row_info[i].endhead)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool LyXTabular::haveLTFirstHead() const
|
|
|
|
|
{
|
|
|
|
|
if (endfirsthead.empty)
|
|
|
|
|
return false;
|
|
|
|
|
for(int i=0; i < rows_; ++i) {
|
|
|
|
|
if (row_info[i].endfirsthead)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool LyXTabular::haveLTFoot() const
|
|
|
|
|
{
|
|
|
|
|
for(int i=0; i < rows_; ++i) {
|
|
|
|
|
if (row_info[i].endfoot)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool LyXTabular::haveLTLastFoot() const
|
|
|
|
|
{
|
|
|
|
|
if (endlastfoot.empty)
|
|
|
|
|
return false;
|
|
|
|
|
for(int i=0; i < rows_; ++i) {
|
|
|
|
|
if (row_info[i].endlastfoot)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// end longtable support functions
|
|
|
|
|
|
2000-06-22 14:55:46 +00:00
|
|
|
|
bool LyXTabular::SetAscentOfRow(int row, int height)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if ((row >= rows_) || (row_info[row].ascent_of_row == height))
|
|
|
|
|
return false;
|
|
|
|
|
row_info[row].ascent_of_row = height;
|
|
|
|
|
return true;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-06-22 14:55:46 +00:00
|
|
|
|
bool LyXTabular::SetDescentOfRow(int row, int height)
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if ((row >= rows_) || (row_info[row].descent_of_row == height))
|
|
|
|
|
return false;
|
|
|
|
|
row_info[row].descent_of_row = height;
|
|
|
|
|
return true;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::GetAscentOfRow(int row) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (row >= rows_)
|
|
|
|
|
return 0;
|
|
|
|
|
return row_info[row].ascent_of_row;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::GetDescentOfRow(int row) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (row >= rows_)
|
|
|
|
|
return 0;
|
|
|
|
|
return row_info[row].descent_of_row;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
int LyXTabular::GetHeightOfTabular() const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int height = 0;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (int row = 0; row < rows_; ++row)
|
|
|
|
|
height += GetAscentOfRow(row) + GetDescentOfRow(row) +
|
2001-04-27 14:03:25 +00:00
|
|
|
|
GetAdditionalHeight(row);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return height;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
bool LyXTabular::IsPartOfMultiColumn(int row, int column) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if ((row >= rows_) || (column >= columns_))
|
|
|
|
|
return false;
|
|
|
|
|
return (cell_info[row][column].multicolumn == CELL_PART_OF_MULTICOLUMN);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
|
int LyXTabular::TeXTopHLine(ostream & os, int row) const
|
2000-04-21 15:16:22 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if ((row < 0) || (row >= rows_))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
int const fcell = GetFirstCellInRow(row);
|
|
|
|
|
int const n = NumberOfCellsInRow(fcell) + fcell;
|
|
|
|
|
int tmp = 0;
|
2001-01-09 16:23:48 +00:00
|
|
|
|
|
2000-09-18 19:41:52 +00:00
|
|
|
|
for (int i = fcell; i < n; ++i) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (TopLine(i))
|
|
|
|
|
++tmp;
|
|
|
|
|
}
|
2002-02-16 15:59:55 +00:00
|
|
|
|
if (tmp == (n - fcell)) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
os << "\\hline ";
|
|
|
|
|
} else if (tmp) {
|
|
|
|
|
for (int i = fcell; i < n; ++i) {
|
|
|
|
|
if (TopLine(i)) {
|
|
|
|
|
os << "\\cline{"
|
|
|
|
|
<< column_of_cell(i) + 1
|
|
|
|
|
<< '-'
|
|
|
|
|
<< right_column_of_cell(i) + 1
|
|
|
|
|
<< "} ";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
os << "\n";
|
|
|
|
|
return 1;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-05 13:46:34 +00:00
|
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
|
int LyXTabular::TeXBottomHLine(ostream & os, int row) const
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if ((row < 0) || (row >= rows_))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
int const fcell = GetFirstCellInRow(row);
|
|
|
|
|
int const n = NumberOfCellsInRow(fcell) + fcell;
|
|
|
|
|
int tmp = 0;
|
2001-01-09 16:23:48 +00:00
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
for (int i = fcell; i < n; ++i) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (BottomLine(i))
|
|
|
|
|
++tmp;
|
|
|
|
|
}
|
2002-02-16 15:59:55 +00:00
|
|
|
|
if (tmp == (n - fcell)) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
os << "\\hline";
|
|
|
|
|
} else if (tmp) {
|
|
|
|
|
for (int i = fcell; i < n; ++i) {
|
|
|
|
|
if (BottomLine(i)) {
|
|
|
|
|
os << "\\cline{"
|
|
|
|
|
<< column_of_cell(i) + 1
|
|
|
|
|
<< '-'
|
|
|
|
|
<< right_column_of_cell(i) + 1
|
|
|
|
|
<< "} ";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
os << "\n";
|
|
|
|
|
return 1;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int LyXTabular::TeXCellPreamble(ostream & os, int cell) const
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int ret = 0;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (GetRotateCell(cell)) {
|
|
|
|
|
os << "\\begin{sideways}\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
if (IsMultiColumn(cell)) {
|
|
|
|
|
os << "\\multicolumn{" << cells_in_multicolumn(cell) << "}{";
|
|
|
|
|
if (!cellinfo_of_cell(cell)->align_special.empty()) {
|
|
|
|
|
os << cellinfo_of_cell(cell)->align_special << "}{";
|
|
|
|
|
} else {
|
2001-05-28 15:11:24 +00:00
|
|
|
|
if (LeftLine(cell) &&
|
2002-03-21 17:27:08 +00:00
|
|
|
|
(IsFirstCellInRow(cell) ||
|
2001-05-28 15:11:24 +00:00
|
|
|
|
(!IsMultiColumn(cell-1) && !LeftLine(cell, true) &&
|
|
|
|
|
!RightLine(cell-1, true))))
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
os << '|';
|
2001-05-28 15:11:24 +00:00
|
|
|
|
}
|
2001-12-11 17:26:52 +00:00
|
|
|
|
if (!GetPWidth(cell).zero()) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
switch (GetVAlignment(cell)) {
|
|
|
|
|
case LYX_VALIGN_TOP:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 'p';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
break;
|
|
|
|
|
case LYX_VALIGN_CENTER:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 'm';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
break;
|
|
|
|
|
case LYX_VALIGN_BOTTOM:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 'b';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << '{'
|
|
|
|
|
<< GetPWidth(cell).asLatexString()
|
|
|
|
|
<< '}';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
} else {
|
|
|
|
|
switch (GetAlignment(cell)) {
|
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
|
os << 'l';
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
|
os << 'r';
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
os << 'c';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (RightLine(cell))
|
|
|
|
|
os << '|';
|
|
|
|
|
if (((cell + 1) < numberofcells) && !IsFirstCellInRow(cell+1) &&
|
|
|
|
|
LeftLine(cell+1))
|
|
|
|
|
os << '|';
|
|
|
|
|
os << "}{";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (GetUsebox(cell) == BOX_PARBOX) {
|
|
|
|
|
os << "\\parbox[";
|
2000-11-04 10:00:12 +00:00
|
|
|
|
switch (GetVAlignment(cell)) {
|
2000-07-17 14:31:07 +00:00
|
|
|
|
case LYX_VALIGN_TOP:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 't';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
break;
|
2000-07-17 14:31:07 +00:00
|
|
|
|
case LYX_VALIGN_CENTER:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 'c';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
break;
|
2000-07-17 14:31:07 +00:00
|
|
|
|
case LYX_VALIGN_BOTTOM:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 'b';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
break;
|
2000-07-17 14:31:07 +00:00
|
|
|
|
}
|
2001-12-11 17:26:52 +00:00
|
|
|
|
os << "]{" << GetPWidth(cell).asLatexString() << "}{";
|
2001-04-02 14:02:58 +00:00
|
|
|
|
} else if (GetUsebox(cell) == BOX_MINIPAGE) {
|
|
|
|
|
os << "\\begin{minipage}[";
|
|
|
|
|
switch (GetVAlignment(cell)) {
|
|
|
|
|
case LYX_VALIGN_TOP:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 't';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
break;
|
|
|
|
|
case LYX_VALIGN_CENTER:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 'm';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
break;
|
|
|
|
|
case LYX_VALIGN_BOTTOM:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 'b';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
break;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
2001-12-11 17:26:52 +00:00
|
|
|
|
os << "]{" << GetPWidth(cell).asLatexString() << "}\n";
|
2001-04-02 14:02:58 +00:00
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int LyXTabular::TeXCellPostamble(ostream & os, int cell) const
|
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
|
|
// usual cells
|
|
|
|
|
if (GetUsebox(cell) == BOX_PARBOX)
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << '}';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
else if (GetUsebox(cell) == BOX_MINIPAGE) {
|
|
|
|
|
os << "%\n\\end{minipage}";
|
|
|
|
|
ret += 2;
|
|
|
|
|
}
|
2002-02-16 15:59:55 +00:00
|
|
|
|
if (IsMultiColumn(cell)) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
os << '}';
|
|
|
|
|
}
|
|
|
|
|
if (GetRotateCell(cell)) {
|
|
|
|
|
os << "%\n\\end{sideways}";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-20 14:52:15 +00:00
|
|
|
|
int LyXTabular::TeXLongtableHeaderFooter(ostream & os, Buffer const * buf,
|
2003-05-23 08:59:47 +00:00
|
|
|
|
LatexRunParams const & runparams) const
|
2001-12-20 14:52:15 +00:00
|
|
|
|
{
|
|
|
|
|
if (!is_long_tabular)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
int ret = 0;
|
|
|
|
|
// output header info
|
|
|
|
|
if (haveLTHead()) {
|
|
|
|
|
if (endhead.topDL) {
|
|
|
|
|
os << "\\hline\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
if (row_info[i].endhead) {
|
2003-05-23 08:59:47 +00:00
|
|
|
|
ret += TeXRow(os, i, buf, runparams);
|
2001-12-20 14:52:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (endhead.bottomDL) {
|
|
|
|
|
os << "\\hline\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
os << "\\endhead\n";
|
|
|
|
|
++ret;
|
|
|
|
|
if (endfirsthead.empty) {
|
|
|
|
|
os << "\\endfirsthead\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// output firstheader info
|
|
|
|
|
if (haveLTFirstHead()) {
|
|
|
|
|
if (endfirsthead.topDL) {
|
|
|
|
|
os << "\\hline\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
if (row_info[i].endfirsthead) {
|
2003-05-23 08:59:47 +00:00
|
|
|
|
ret += TeXRow(os, i, buf, runparams);
|
2001-12-20 14:52:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (endfirsthead.bottomDL) {
|
|
|
|
|
os << "\\hline\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
os << "\\endfirsthead\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
// output footer info
|
|
|
|
|
if (haveLTFoot()) {
|
|
|
|
|
if (endfoot.topDL) {
|
|
|
|
|
os << "\\hline\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
if (row_info[i].endfoot) {
|
2003-05-23 08:59:47 +00:00
|
|
|
|
ret += TeXRow(os, i, buf, runparams);
|
2001-12-20 14:52:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (endfoot.bottomDL) {
|
|
|
|
|
os << "\\hline\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
os << "\\endfoot\n";
|
|
|
|
|
++ret;
|
|
|
|
|
if (endlastfoot.empty) {
|
|
|
|
|
os << "\\endlastfoot\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// output lastfooter info
|
|
|
|
|
if (haveLTLastFoot()) {
|
|
|
|
|
if (endlastfoot.topDL) {
|
|
|
|
|
os << "\\hline\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
if (row_info[i].endlastfoot) {
|
2003-05-23 08:59:47 +00:00
|
|
|
|
ret += TeXRow(os, i, buf, runparams);
|
2001-12-20 14:52:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (endlastfoot.bottomDL) {
|
|
|
|
|
os << "\\hline\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
os << "\\endlastfoot\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool LyXTabular::isValidRow(int const row) const
|
|
|
|
|
{
|
|
|
|
|
if (!is_long_tabular)
|
|
|
|
|
return true;
|
|
|
|
|
return (!row_info[row].endhead && !row_info[row].endfirsthead &&
|
|
|
|
|
!row_info[row].endfoot && !row_info[row].endlastfoot);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int LyXTabular::TeXRow(ostream & os, int const i, Buffer const * buf,
|
2003-05-23 08:59:47 +00:00
|
|
|
|
LatexRunParams const & runparams) const
|
2001-12-20 14:52:15 +00:00
|
|
|
|
{
|
|
|
|
|
int ret = 0;
|
|
|
|
|
int cell = GetCellNumber(i, 0);
|
|
|
|
|
|
|
|
|
|
ret += TeXTopHLine(os, i);
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
if (IsPartOfMultiColumn(i,j))
|
|
|
|
|
continue;
|
|
|
|
|
ret += TeXCellPreamble(os, cell);
|
|
|
|
|
InsetText * inset = GetCellInset(cell);
|
|
|
|
|
|
2003-04-02 17:11:38 +00:00
|
|
|
|
bool rtl = inset->paragraphs.begin()->isRightToLeftPar(buf->params) &&
|
|
|
|
|
!inset->paragraphs.begin()->empty() && GetPWidth(cell).zero();
|
2001-12-20 14:52:15 +00:00
|
|
|
|
|
|
|
|
|
if (rtl)
|
|
|
|
|
os << "\\R{";
|
2003-05-23 08:59:47 +00:00
|
|
|
|
ret += inset->latex(buf, os, runparams);
|
2001-12-20 14:52:15 +00:00
|
|
|
|
if (rtl)
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << '}';
|
2001-12-20 14:52:15 +00:00
|
|
|
|
|
|
|
|
|
ret += TeXCellPostamble(os, cell);
|
|
|
|
|
if (!IsLastCellInRow(cell)) { // not last cell in row
|
|
|
|
|
os << "&\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
++cell;
|
|
|
|
|
}
|
2002-09-06 13:41:19 +00:00
|
|
|
|
os << "\\tabularnewline\n";
|
2001-12-20 14:52:15 +00:00
|
|
|
|
++ret;
|
|
|
|
|
ret += TeXBottomHLine(os, i);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-22 18:59:10 +00:00
|
|
|
|
int LyXTabular::latex(Buffer const * buf, ostream & os,
|
2003-05-23 08:59:47 +00:00
|
|
|
|
LatexRunParams const & runparams) const
|
2000-05-15 14:49:36 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int ret = 0;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
//+---------------------------------------------------------------------
|
|
|
|
|
//+ first the opening preamble +
|
|
|
|
|
//+---------------------------------------------------------------------
|
2000-05-15 14:49:36 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (rotate) {
|
|
|
|
|
os << "\\begin{sideways}\n";
|
2000-07-17 14:31:07 +00:00
|
|
|
|
++ret;
|
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (is_long_tabular)
|
|
|
|
|
os << "\\begin{longtable}{";
|
|
|
|
|
else
|
|
|
|
|
os << "\\begin{tabular}{";
|
|
|
|
|
for (int i = 0; i < columns_; ++i) {
|
|
|
|
|
if (!column_info[i].align_special.empty()) {
|
|
|
|
|
os << column_info[i].align_special;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
} else {
|
2001-08-08 13:29:13 +00:00
|
|
|
|
if (column_info[i].left_line)
|
|
|
|
|
os << '|';
|
2001-12-11 17:26:52 +00:00
|
|
|
|
if (!column_info[i].p_width.zero()) {
|
2003-01-08 09:03:32 +00:00
|
|
|
|
switch (column_info[i].alignment) {
|
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
|
os << ">{\\raggedright}";
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
|
os << ">{\\raggedleft}";
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_CENTER:
|
|
|
|
|
os << ">{\\centering}";
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_NONE:
|
|
|
|
|
case LYX_ALIGN_BLOCK:
|
|
|
|
|
case LYX_ALIGN_LAYOUT:
|
|
|
|
|
case LYX_ALIGN_SPECIAL:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2002-11-27 10:30:28 +00:00
|
|
|
|
|
2001-08-08 13:29:13 +00:00
|
|
|
|
switch (column_info[i].valignment) {
|
|
|
|
|
case LYX_VALIGN_TOP:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 'p';
|
2001-08-08 13:29:13 +00:00
|
|
|
|
break;
|
|
|
|
|
case LYX_VALIGN_CENTER:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 'm';
|
2001-08-08 13:29:13 +00:00
|
|
|
|
break;
|
|
|
|
|
case LYX_VALIGN_BOTTOM:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 'b';
|
2001-08-08 13:29:13 +00:00
|
|
|
|
break;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << '{'
|
2001-12-11 17:26:52 +00:00
|
|
|
|
<< column_info[i].p_width.asLatexString()
|
2001-08-08 13:29:13 +00:00
|
|
|
|
<< '}';
|
|
|
|
|
} else {
|
|
|
|
|
switch (column_info[i].alignment) {
|
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
|
os << 'l';
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_RIGHT:
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << 'r';
|
|
|
|
|
break;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
default:
|
|
|
|
|
os << 'c';
|
|
|
|
|
break;
|
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2001-08-08 13:29:13 +00:00
|
|
|
|
if (column_info[i].right_line)
|
|
|
|
|
os << '|';
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2000-07-17 14:31:07 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
os << "}\n";
|
|
|
|
|
++ret;
|
|
|
|
|
|
2003-05-23 08:59:47 +00:00
|
|
|
|
ret += TeXLongtableHeaderFooter(os, buf, runparams);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
//+---------------------------------------------------------------------
|
|
|
|
|
//+ the single row and columns (cells) +
|
|
|
|
|
//+---------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
2001-12-20 14:52:15 +00:00
|
|
|
|
if (isValidRow(i)) {
|
2003-05-23 08:59:47 +00:00
|
|
|
|
ret += TeXRow(os, i, buf, runparams);
|
2001-12-20 14:52:15 +00:00
|
|
|
|
if (is_long_tabular && row_info[i].newpage) {
|
2001-04-02 14:02:58 +00:00
|
|
|
|
os << "\\newpage\n";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
//+---------------------------------------------------------------------
|
|
|
|
|
//+ the closing of the tabular +
|
|
|
|
|
//+---------------------------------------------------------------------
|
2000-05-15 14:49:36 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (is_long_tabular)
|
|
|
|
|
os << "\\end{longtable}";
|
|
|
|
|
else
|
|
|
|
|
os << "\\end{tabular}";
|
|
|
|
|
if (rotate) {
|
|
|
|
|
os << "\n\\end{sideways}";
|
|
|
|
|
++ret;
|
|
|
|
|
}
|
2000-05-15 14:49:36 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return ret;
|
2000-10-27 10:04:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-10-24 07:43:34 +00:00
|
|
|
|
int LyXTabular::docbookRow(Buffer const * buf, ostream & os, int row) const
|
|
|
|
|
{
|
|
|
|
|
int ret = 0;
|
|
|
|
|
int cell = GetFirstCellInRow(row);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-10-24 07:43:34 +00:00
|
|
|
|
os << "<row>\n";
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
if (IsPartOfMultiColumn(row, j))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
os << "<entry align=\"";
|
|
|
|
|
switch (GetAlignment(cell)) {
|
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
|
os << "left";
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
|
os << "right";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
os << "center";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
os << "\" valign=\"";
|
|
|
|
|
switch (GetVAlignment(cell)) {
|
|
|
|
|
case LYX_VALIGN_TOP:
|
|
|
|
|
os << "top";
|
|
|
|
|
break;
|
|
|
|
|
case LYX_VALIGN_BOTTOM:
|
|
|
|
|
os << "bottom";
|
|
|
|
|
break;
|
|
|
|
|
case LYX_VALIGN_CENTER:
|
|
|
|
|
os << "middle";
|
|
|
|
|
}
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << '"';
|
2001-10-24 07:43:34 +00:00
|
|
|
|
|
|
|
|
|
if (IsMultiColumn(cell)) {
|
|
|
|
|
os << " namest=\"col" << j << "\" ";
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << "nameend=\"col" << j + cells_in_multicolumn(cell) - 1<< '"';
|
2001-10-24 07:43:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << '>';
|
2002-06-18 15:44:30 +00:00
|
|
|
|
ret += GetCellInset(cell)->docbook(buf, os, true);
|
2001-10-24 07:43:34 +00:00
|
|
|
|
os << "</entry>\n";
|
|
|
|
|
++cell;
|
|
|
|
|
}
|
|
|
|
|
os << "</row>\n";
|
|
|
|
|
return ret;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
}
|
2001-10-24 07:43:34 +00:00
|
|
|
|
|
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
|
int LyXTabular::docbook(Buffer const * buf, ostream & os,
|
|
|
|
|
bool /*mixcont*/) const
|
2000-10-27 10:04:51 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int ret = 0;
|
2000-10-27 10:04:51 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
//+---------------------------------------------------------------------
|
|
|
|
|
//+ first the opening preamble +
|
|
|
|
|
//+---------------------------------------------------------------------
|
2000-10-27 10:04:51 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
os << "<tgroup cols=\"" << columns_
|
|
|
|
|
<< "\" colsep=\"1\" rowsep=\"1\">\n";
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (int i = 0; i < columns_; ++i) {
|
|
|
|
|
os << "<colspec colname=\"col" << i << "\" align=\"";
|
|
|
|
|
switch (column_info[i].alignment) {
|
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
|
os << "left";
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
|
os << "right";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
os << "center";
|
|
|
|
|
break;
|
|
|
|
|
}
|
2001-10-23 09:42:14 +00:00
|
|
|
|
os << "\">\n";
|
2001-04-02 14:02:58 +00:00
|
|
|
|
++ret;
|
2000-10-27 10:04:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
//+---------------------------------------------------------------------
|
2001-10-24 07:43:34 +00:00
|
|
|
|
//+ Long Tabular case +
|
2001-04-02 14:02:58 +00:00
|
|
|
|
//+---------------------------------------------------------------------
|
2000-10-27 10:04:51 +00:00
|
|
|
|
|
2002-02-21 15:55:49 +00:00
|
|
|
|
// output header info
|
|
|
|
|
if (haveLTHead() || haveLTFirstHead()) {
|
|
|
|
|
os << "<thead>\n";
|
|
|
|
|
++ret;
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
if (row_info[i].endhead || row_info[i].endfirsthead) {
|
|
|
|
|
ret += docbookRow(buf, os, i);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2001-10-24 07:43:34 +00:00
|
|
|
|
}
|
2002-05-03 11:56:49 +00:00
|
|
|
|
os << "</thead>\n";
|
2002-02-21 15:55:49 +00:00
|
|
|
|
++ret;
|
|
|
|
|
}
|
|
|
|
|
// output footer info
|
|
|
|
|
if (haveLTFoot() || haveLTLastFoot()) {
|
|
|
|
|
os << "<tfoot>\n";
|
|
|
|
|
++ret;
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
if (row_info[i].endfoot || row_info[i].endlastfoot) {
|
|
|
|
|
ret += docbookRow(buf, os, i);
|
2001-10-24 07:43:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-02-21 15:55:49 +00:00
|
|
|
|
os << "</tfoot>\n";
|
|
|
|
|
++ret;
|
2001-10-24 07:43:34 +00:00
|
|
|
|
}
|
2002-02-21 15:55:49 +00:00
|
|
|
|
|
2001-10-24 07:43:34 +00:00
|
|
|
|
//+---------------------------------------------------------------------
|
|
|
|
|
//+ the single row and columns (cells) +
|
|
|
|
|
//+---------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
os << "<tbody>\n";
|
2002-02-21 15:55:49 +00:00
|
|
|
|
++ret;
|
2001-10-24 07:43:34 +00:00
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
2002-02-21 15:55:49 +00:00
|
|
|
|
if (isValidRow(i)) {
|
|
|
|
|
ret += docbookRow(buf, os, i);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
os << "</tbody>\n";
|
2002-02-21 15:55:49 +00:00
|
|
|
|
++ret;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
//+---------------------------------------------------------------------
|
|
|
|
|
//+ the closing of the tabular +
|
|
|
|
|
//+---------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
os << "</tgroup>";
|
|
|
|
|
++ret;
|
|
|
|
|
|
|
|
|
|
return ret;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-12-27 15:54:25 +00:00
|
|
|
|
//--
|
|
|
|
|
// ASCII export function and helpers
|
|
|
|
|
//--
|
|
|
|
|
int LyXTabular::asciiTopHLine(ostream & os, int row,
|
2002-03-21 17:27:08 +00:00
|
|
|
|
vector<unsigned int> const & clen) const
|
2000-10-10 10:38:11 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const fcell = GetFirstCellInRow(row);
|
|
|
|
|
int const n = NumberOfCellsInRow(fcell) + fcell;
|
|
|
|
|
int tmp = 0;
|
2000-10-10 10:38:11 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (int i = fcell; i < n; ++i) {
|
|
|
|
|
if (TopLine(i)) {
|
|
|
|
|
++tmp;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2001-01-02 16:06:14 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (!tmp)
|
|
|
|
|
return 0;
|
2000-10-10 10:38:11 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
unsigned char ch;
|
|
|
|
|
for (int i = fcell; i < n; ++i) {
|
|
|
|
|
if (TopLine(i)) {
|
|
|
|
|
if (LeftLine(i))
|
|
|
|
|
os << "+-";
|
|
|
|
|
else
|
|
|
|
|
os << "--";
|
|
|
|
|
ch = '-';
|
|
|
|
|
} else {
|
|
|
|
|
os << " ";
|
|
|
|
|
ch = ' ';
|
|
|
|
|
}
|
|
|
|
|
int column = column_of_cell(i);
|
|
|
|
|
int len = clen[column];
|
2001-12-05 08:04:20 +00:00
|
|
|
|
while (IsPartOfMultiColumn(row, ++column))
|
2001-04-02 14:02:58 +00:00
|
|
|
|
len += clen[column] + 4;
|
2001-12-27 15:54:25 +00:00
|
|
|
|
os << string(len, ch);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (TopLine(i)) {
|
|
|
|
|
if (RightLine(i))
|
|
|
|
|
os << "-+";
|
|
|
|
|
else
|
|
|
|
|
os << "--";
|
|
|
|
|
} else {
|
|
|
|
|
os << " ";
|
|
|
|
|
}
|
2000-10-10 10:38:11 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
os << endl;
|
|
|
|
|
return 1;
|
2000-10-10 10:38:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-27 15:54:25 +00:00
|
|
|
|
int LyXTabular::asciiBottomHLine(ostream & os, int row,
|
2002-03-21 17:27:08 +00:00
|
|
|
|
vector<unsigned int> const & clen) const
|
2000-10-10 10:38:11 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int const fcell = GetFirstCellInRow(row);
|
|
|
|
|
int const n = NumberOfCellsInRow(fcell) + fcell;
|
|
|
|
|
int tmp = 0;
|
2000-10-10 10:38:11 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (int i = fcell; i < n; ++i) {
|
|
|
|
|
if (BottomLine(i)) {
|
|
|
|
|
++tmp;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2001-01-02 16:06:14 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (!tmp)
|
|
|
|
|
return 0;
|
2001-01-02 16:06:14 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
unsigned char ch;
|
|
|
|
|
for (int i = fcell; i < n; ++i) {
|
|
|
|
|
if (BottomLine(i)) {
|
|
|
|
|
if (LeftLine(i))
|
|
|
|
|
os << "+-";
|
|
|
|
|
else
|
|
|
|
|
os << "--";
|
|
|
|
|
ch = '-';
|
|
|
|
|
} else {
|
|
|
|
|
os << " ";
|
|
|
|
|
ch = ' ';
|
|
|
|
|
}
|
|
|
|
|
int column = column_of_cell(i);
|
|
|
|
|
int len = clen[column];
|
2001-12-05 08:04:20 +00:00
|
|
|
|
while (IsPartOfMultiColumn(row, ++column))
|
2001-04-02 14:02:58 +00:00
|
|
|
|
len += clen[column] + 4;
|
2001-12-27 15:54:25 +00:00
|
|
|
|
os << string(len, ch);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (BottomLine(i)) {
|
|
|
|
|
if (RightLine(i))
|
|
|
|
|
os << "-+";
|
|
|
|
|
else
|
|
|
|
|
os << "--";
|
|
|
|
|
} else {
|
|
|
|
|
os << " ";
|
|
|
|
|
}
|
2000-10-10 10:38:11 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
os << endl;
|
|
|
|
|
return 1;
|
2000-10-10 10:38:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-27 15:54:25 +00:00
|
|
|
|
int LyXTabular::asciiPrintCell(Buffer const * buf, ostream & os,
|
2002-03-21 17:27:08 +00:00
|
|
|
|
int cell, int row, int column,
|
|
|
|
|
vector<unsigned int> const & clen,
|
|
|
|
|
bool onlydata) const
|
2001-04-02 14:02:58 +00:00
|
|
|
|
{
|
|
|
|
|
ostringstream sstr;
|
2001-06-28 10:25:20 +00:00
|
|
|
|
int ret = GetCellInset(cell)->ascii(buf, sstr, 0);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
|
2001-12-27 15:54:25 +00:00
|
|
|
|
if (onlydata) {
|
|
|
|
|
os << sstr.str();
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (LeftLine(cell))
|
|
|
|
|
os << "| ";
|
|
|
|
|
else
|
|
|
|
|
os << " ";
|
|
|
|
|
|
|
|
|
|
unsigned int len1 = sstr.str().length();
|
|
|
|
|
unsigned int len2 = clen[column];
|
2001-12-05 08:04:20 +00:00
|
|
|
|
while (IsPartOfMultiColumn(row, ++column))
|
2001-04-02 14:02:58 +00:00
|
|
|
|
len2 += clen[column] + 4;
|
2000-10-10 10:38:11 +00:00
|
|
|
|
len2 -= len1;
|
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
switch (GetAlignment(cell)) {
|
|
|
|
|
default:
|
|
|
|
|
case LYX_ALIGN_LEFT:
|
|
|
|
|
len1 = 0;
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_RIGHT:
|
|
|
|
|
len1 = len2;
|
|
|
|
|
len2 = 0;
|
|
|
|
|
break;
|
|
|
|
|
case LYX_ALIGN_CENTER:
|
|
|
|
|
len1 = len2 / 2;
|
|
|
|
|
len2 -= len1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << string(len1, ' ')
|
|
|
|
|
<< sstr.str()
|
|
|
|
|
<< string(len2, ' ');
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (RightLine(cell))
|
|
|
|
|
os << " |";
|
|
|
|
|
else
|
|
|
|
|
os << " ";
|
2000-10-10 10:38:11 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return ret;
|
2000-10-10 10:38:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-27 15:54:25 +00:00
|
|
|
|
int LyXTabular::ascii(Buffer const * buf, ostream & os, int const depth,
|
|
|
|
|
bool onlydata, unsigned char delim) const
|
2000-10-10 10:38:11 +00:00
|
|
|
|
{
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int ret = 0;
|
2000-10-10 10:38:11 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
//+---------------------------------------------------------------------
|
|
|
|
|
//+ first calculate the width of the single columns +
|
|
|
|
|
//+---------------------------------------------------------------------
|
|
|
|
|
vector<unsigned int> clen(columns_);
|
2000-10-10 10:38:11 +00:00
|
|
|
|
|
2001-12-27 15:54:25 +00:00
|
|
|
|
if (!onlydata) {
|
|
|
|
|
// first all non (real) multicolumn cells!
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
clen[j] = 0;
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
int cell = GetCellNumber(i, j);
|
|
|
|
|
if (IsMultiColumn(cell, true))
|
|
|
|
|
continue;
|
|
|
|
|
ostringstream sstr;
|
|
|
|
|
GetCellInset(cell)->ascii(buf, sstr, 0);
|
|
|
|
|
if (clen[j] < sstr.str().length())
|
|
|
|
|
clen[j] = sstr.str().length();
|
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2001-12-27 15:54:25 +00:00
|
|
|
|
// then all (real) multicolumn cells!
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
|
|
|
|
int cell = GetCellNumber(i, j);
|
|
|
|
|
if (!IsMultiColumn(cell, true) || IsPartOfMultiColumn(i, j))
|
|
|
|
|
continue;
|
|
|
|
|
ostringstream sstr;
|
|
|
|
|
GetCellInset(cell)->ascii(buf, sstr, 0);
|
|
|
|
|
int len = int(sstr.str().length());
|
|
|
|
|
int const n = cells_in_multicolumn(cell);
|
|
|
|
|
for (int k = j; (len > 0) && (k < (j + n - 1)); ++k)
|
|
|
|
|
len -= clen[k];
|
|
|
|
|
if (len > int(clen[j + n - 1]))
|
|
|
|
|
clen[j + n - 1] = len;
|
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
int cell = 0;
|
|
|
|
|
for (int i = 0; i < rows_; ++i) {
|
2001-12-27 15:54:25 +00:00
|
|
|
|
if (!onlydata) {
|
|
|
|
|
if (asciiTopHLine(os, i, clen)) {
|
|
|
|
|
for (int j = 0; j < depth; ++j)
|
|
|
|
|
os << " ";
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
|
|
|
|
if (IsPartOfMultiColumn(i,j))
|
|
|
|
|
continue;
|
2001-12-27 15:54:25 +00:00
|
|
|
|
if (onlydata && j > 0)
|
|
|
|
|
os << delim;
|
|
|
|
|
ret += asciiPrintCell(buf, os, cell, i, j, clen, onlydata);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
++cell;
|
|
|
|
|
}
|
|
|
|
|
os << endl;
|
2001-12-27 15:54:25 +00:00
|
|
|
|
if (!onlydata) {
|
|
|
|
|
for (int j = 0; j < depth; ++j)
|
|
|
|
|
os << " ";
|
|
|
|
|
if (asciiBottomHLine(os, i, clen)) {
|
|
|
|
|
for (int j = 0; j < depth; ++j)
|
|
|
|
|
os << " ";
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
|
|
|
|
return ret;
|
2000-10-10 10:38:11 +00:00
|
|
|
|
}
|
2001-12-27 15:54:25 +00:00
|
|
|
|
//--
|
|
|
|
|
// end ascii export
|
|
|
|
|
//--
|
2000-10-10 10:38:11 +00:00
|
|
|
|
|
|
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
|
InsetText * LyXTabular::GetCellInset(int cell) const
|
|
|
|
|
{
|
2001-06-27 14:10:35 +00:00
|
|
|
|
cur_cell = cell;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return & cell_info[row_of_cell(cell)][column_of_cell(cell)].inset;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
2000-05-19 10:32:05 +00:00
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
|
2001-01-03 16:04:05 +00:00
|
|
|
|
InsetText * LyXTabular::GetCellInset(int row, int column) const
|
|
|
|
|
{
|
2001-07-03 14:15:39 +00:00
|
|
|
|
cur_cell = GetCellNumber(row, column);
|
2001-05-28 15:11:24 +00:00
|
|
|
|
return & cell_info[row][column].inset;
|
2001-01-03 16:04:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-01-20 16:07:42 +00:00
|
|
|
|
int LyXTabular::GetCellFromInset(Inset const * inset, int maybe_cell) const
|
|
|
|
|
{
|
|
|
|
|
// is this inset part of the tabular?
|
|
|
|
|
if (!inset || inset->owner() != owner_) {
|
|
|
|
|
lyxerr[Debug::INSETTEXT]
|
|
|
|
|
<< "this is not a cell of the tabular!" << endl;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2002-01-20 16:07:42 +00:00
|
|
|
|
const int save_cur_cell = cur_cell;
|
|
|
|
|
int cell = cur_cell;
|
|
|
|
|
if (GetCellInset(cell) != inset) {
|
|
|
|
|
cell = maybe_cell;
|
|
|
|
|
if (cell == -1 || GetCellInset(cell) != inset) {
|
|
|
|
|
cell = -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2002-01-20 16:07:42 +00:00
|
|
|
|
if (cell == -1) {
|
|
|
|
|
for (cell = GetNumberOfCells(); cell >= 0; --cell) {
|
|
|
|
|
if (GetCellInset(cell) == inset)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
lyxerr[Debug::INSETTEXT]
|
|
|
|
|
<< "LyXTabular::GetCellFromInset: "
|
|
|
|
|
<< "cell=" << cell
|
2002-03-21 17:27:08 +00:00
|
|
|
|
<< ", cur_cell=" << save_cur_cell
|
2002-01-20 16:07:42 +00:00
|
|
|
|
<< ", maybe_cell=" << maybe_cell
|
|
|
|
|
<< endl;
|
|
|
|
|
// We should have found a cell at this point
|
|
|
|
|
if (cell == -1) {
|
|
|
|
|
lyxerr << "LyXTabular::GetCellFromInset: "
|
|
|
|
|
<< "Cell not found!" << endl;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2002-01-20 16:07:42 +00:00
|
|
|
|
return cell;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-19 10:32:05 +00:00
|
|
|
|
void LyXTabular::Validate(LaTeXFeatures & features) const
|
|
|
|
|
{
|
2002-11-27 10:30:28 +00:00
|
|
|
|
features.require("NeedTabularnewline");
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (IsLongTabular())
|
2001-11-19 15:34:11 +00:00
|
|
|
|
features.require("longtable");
|
2001-04-02 14:02:58 +00:00
|
|
|
|
if (NeedRotating())
|
2001-11-19 15:34:11 +00:00
|
|
|
|
features.require("rotating");
|
2002-01-19 20:24:04 +00:00
|
|
|
|
for (int cell = 0; cell < numberofcells; ++cell) {
|
2002-09-06 13:41:19 +00:00
|
|
|
|
if ( (GetVAlignment(cell) != LYX_VALIGN_TOP) ||
|
|
|
|
|
( !(GetPWidth(cell).zero())&&!(IsMultiColumn(cell)) )
|
|
|
|
|
)
|
2001-11-19 15:34:11 +00:00
|
|
|
|
features.require("array");
|
2001-06-28 10:25:20 +00:00
|
|
|
|
GetCellInset(cell)->validate(features);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
}
|
2000-05-19 10:32:05 +00:00
|
|
|
|
}
|
2000-08-07 15:21:05 +00:00
|
|
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
vector<string> const LyXTabular::getLabelList() const
|
2001-04-06 12:47:50 +00:00
|
|
|
|
{
|
2002-02-16 15:59:55 +00:00
|
|
|
|
vector<string> label_list;
|
2001-04-06 12:47:50 +00:00
|
|
|
|
for (int i = 0; i < rows_; ++i)
|
|
|
|
|
for (int j = 0; j < columns_; ++j) {
|
2002-02-16 15:59:55 +00:00
|
|
|
|
vector<string> const l =
|
2001-04-06 12:47:50 +00:00
|
|
|
|
GetCellInset(i, j)->getLabelList();
|
|
|
|
|
label_list.insert(label_list.end(),
|
|
|
|
|
l.begin(), l.end());
|
|
|
|
|
}
|
|
|
|
|
return label_list;
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2000-09-28 14:05:24 +00:00
|
|
|
|
LyXTabular::BoxType LyXTabular::UseParbox(int cell) const
|
2000-08-07 15:21:05 +00:00
|
|
|
|
{
|
2003-03-02 23:44:58 +00:00
|
|
|
|
ParagraphList const & parlist = GetCellInset(cell)->paragraphs;
|
2003-05-27 22:41:04 +00:00
|
|
|
|
ParagraphList::const_iterator cit = parlist.begin();
|
|
|
|
|
ParagraphList::const_iterator end = parlist.end();
|
2000-08-07 15:21:05 +00:00
|
|
|
|
|
2003-03-02 23:44:58 +00:00
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
|
for (int i = 0; i < cit->size(); ++i) {
|
2003-03-12 19:16:42 +00:00
|
|
|
|
if (cit->isNewline(i))
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return BOX_PARBOX;
|
|
|
|
|
}
|
2000-08-07 15:21:05 +00:00
|
|
|
|
}
|
2001-04-02 14:02:58 +00:00
|
|
|
|
return BOX_NONE;
|
2000-08-07 15:21:05 +00:00
|
|
|
|
}
|