2000-04-21 15:16:22 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 2000 The LyX Team.
|
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
#ifndef TABULAR_H
|
|
|
|
#define TABULAR_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <iosfwd>
|
2000-05-05 12:14:16 +00:00
|
|
|
#include <vector>
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
#include "lyxlex.h"
|
|
|
|
#include "LString.h"
|
|
|
|
|
|
|
|
class InsetText;
|
|
|
|
class Buffer;
|
|
|
|
|
|
|
|
/* The features the text class offers for tables */
|
|
|
|
|
|
|
|
///
|
|
|
|
class LyXTabular {
|
|
|
|
public:
|
|
|
|
// Are the values of these enums important? (Lgb)
|
|
|
|
enum {
|
|
|
|
APPEND_ROW = 0,
|
|
|
|
APPEND_COLUMN,
|
|
|
|
DELETE_ROW,
|
|
|
|
DELETE_COLUMN,
|
|
|
|
TOGGLE_LINE_TOP,
|
|
|
|
TOGGLE_LINE_BOTTOM,
|
|
|
|
TOGGLE_LINE_LEFT,
|
|
|
|
TOGGLE_LINE_RIGHT,
|
|
|
|
ALIGN_LEFT, // what are these alignment enums used for?
|
|
|
|
ALIGN_RIGHT,
|
|
|
|
ALIGN_CENTER,
|
|
|
|
DELETE_TABULAR,
|
|
|
|
MULTICOLUMN,
|
|
|
|
SET_ALL_LINES,
|
|
|
|
UNSET_ALL_LINES,
|
|
|
|
SET_LONGTABULAR,
|
|
|
|
UNSET_LONGTABULAR,
|
|
|
|
SET_PWIDTH,
|
|
|
|
SET_ROTATE_TABULAR,
|
|
|
|
UNSET_ROTATE_TABULAR,
|
|
|
|
SET_ROTATE_CELL,
|
|
|
|
UNSET_ROTATE_CELL,
|
|
|
|
SET_LINEBREAKS,
|
|
|
|
SET_LTHEAD,
|
|
|
|
SET_LTFIRSTHEAD,
|
|
|
|
SET_LTFOOT,
|
|
|
|
SET_LTLASTFOOT,
|
|
|
|
SET_LTNEWPAGE,
|
|
|
|
SET_SPECIAL_COLUMN,
|
|
|
|
SET_SPECIAL_MULTI
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
CELL_NORMAL = 0,
|
|
|
|
CELL_BEGIN_OF_MULTICOLUMN,
|
|
|
|
CELL_PART_OF_MULTICOLUMN
|
|
|
|
};
|
|
|
|
/* konstruktor */
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
LyXTabular(int columns_arg, int rows_arg, Buffer *buf);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
LyXTabular(LyXTabular const &, Buffer *buf);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
explicit
|
2000-05-04 08:14:34 +00:00
|
|
|
LyXTabular(LyXLex & lex, Buffer *buf);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
~LyXTabular();
|
|
|
|
///
|
|
|
|
LyXTabular & operator=(LyXTabular const &);
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
LyXTabular * Clone(Buffer * buf);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
/// Returns true if there is a topline, returns false if not
|
2000-05-04 08:14:34 +00:00
|
|
|
bool TopLine(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
/// Returns true if there is a topline, returns false if not
|
2000-05-04 08:14:34 +00:00
|
|
|
bool BottomLine(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
/// Returns true if there is a topline, returns false if not
|
2000-05-04 08:14:34 +00:00
|
|
|
bool LeftLine(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
/// Returns true if there is a topline, returns false if not
|
2000-05-04 08:14:34 +00:00
|
|
|
bool RightLine(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool TopAlreadyDrawed(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool LeftAlreadyDrawed(int cell) const;
|
|
|
|
///
|
|
|
|
bool IsLastRow(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetAdditionalHeight(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetAdditionalWidth(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
/* returns the maximum over all rows */
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetWidthOfColumn(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetWidthOfTabular() const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetAscentOfRow(int row) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetDescentOfRow(int row) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetHeightOfTabular() const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
void SetAscentOfRow(int row, int height);
|
|
|
|
///
|
|
|
|
void SetDescentOfRow(int row, int height);
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
|
|
|
bool SetWidthOfCell(int cell, int new_width);
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
|
|
|
bool SetAllLines(int cell, bool line);
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
|
|
|
bool SetTopLine(int cell, bool line);
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
|
|
|
bool SetBottomLine(int cell, bool line);
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
|
|
|
bool SetLeftLine(int cell, bool line);
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
|
|
|
bool SetRightLine(int cell, bool line);
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
|
|
|
bool SetAlignment(int cell, char align);
|
|
|
|
///
|
|
|
|
bool SetPWidth(int cell, string width);
|
|
|
|
///
|
|
|
|
bool SetAlignSpecial(int cell, string special, int what);
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
char GetAlignment(int cell) const; // add approp. signedness
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
string GetPWidth(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
string GetAlignSpecial(int cell, int what) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetWidthOfCell(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetBeginningOfTextInCell(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
void AppendRow(int cell);
|
|
|
|
///
|
|
|
|
void DeleteRow(int cell);
|
|
|
|
///
|
|
|
|
void AppendColumn(int cell);
|
|
|
|
///
|
|
|
|
void DeleteColumn(int cell);
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool IsFirstCellInRow(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool IsLastCellInRow(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetNumberOfCells() const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
int AppendCellAfterCell(int append_cell, int question_cell);
|
|
|
|
///
|
|
|
|
int DeleteCellIfColumnIsDeleted(int cell, int delete_column_cell);
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int NumberOfCellsInRow(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
void Reinit();
|
|
|
|
///
|
2000-05-05 12:14:16 +00:00
|
|
|
void Init(Buffer * buf, int columns_arg, int rows_arg);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
void Write(std::ostream &) const;
|
|
|
|
///
|
|
|
|
void Read(LyXLex &);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
void OldFormatRead(std::istream &, string);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int Latex(std::ostream &) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
// cell <0 will tex the preamble
|
|
|
|
// returns the number of printed newlines
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int TexEndOfCell(std::ostream &, int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int DocBookEndOfCell(std::ostream &, int cell, int & depth) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
#if 0
|
|
|
|
///
|
|
|
|
int RoffEndOfCell(std::ostream &, int cell);
|
|
|
|
#endif
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
char const * GetDocBookAlign(int cell, bool isColumn = false) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool IsMultiColumn(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
void SetMultiColumn(int cell, int number);
|
|
|
|
///
|
|
|
|
int UnsetMultiColumn(int cell); // returns number of new cells
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool IsPartOfMultiColumn(int row, int column) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
int row_of_cell(int cell) const;
|
|
|
|
///
|
|
|
|
int column_of_cell(int cell) const;
|
|
|
|
///
|
|
|
|
void SetLongTabular(int what);
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool IsLongTabular() const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
void SetRotateTabular(int what);
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool GetRotateTabular() const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
void SetRotateCell(int cell, int what);
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool GetRotateCell(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool NeedRotating() const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool IsLastCell(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetCellAbove(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetCellNumber(int column, int row) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
void SetLinebreaks(int cell, bool what);
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool GetLinebreaks(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
/// Long Tabular Options
|
|
|
|
///
|
|
|
|
void SetLTHead(int cell, bool first);
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool GetRowOfLTHead(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool GetRowOfLTFirstHead(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
void SetLTFoot(int cell, bool last);
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool GetRowOfLTFoot(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool GetRowOfLTLastFoot(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
void SetLTNewPage(int cell, bool what);
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool GetLTNewPage(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
InsetText * GetCellInset(int cell) const;
|
|
|
|
///
|
|
|
|
int rows() const { return rows_; }
|
|
|
|
///
|
|
|
|
int columns() const { return columns_;}
|
|
|
|
|
|
|
|
private: //////////////////////////////////////////////////////////////////
|
|
|
|
///
|
|
|
|
struct cellstruct {
|
|
|
|
///
|
2000-05-05 12:14:16 +00:00
|
|
|
cellstruct();
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
~cellstruct();
|
|
|
|
///
|
|
|
|
cellstruct & operator=(cellstruct const &);
|
|
|
|
///
|
|
|
|
int cellno;
|
|
|
|
///
|
|
|
|
int width_of_cell;
|
|
|
|
///
|
|
|
|
int multicolumn; // add approp. signedness
|
|
|
|
///
|
|
|
|
int alignment; // add approp. signedness
|
|
|
|
///
|
|
|
|
bool top_line;
|
|
|
|
///
|
|
|
|
bool bottom_line;
|
|
|
|
///
|
|
|
|
bool linebreaks;
|
|
|
|
///
|
|
|
|
int rotate;
|
|
|
|
///
|
|
|
|
string align_special;
|
|
|
|
///
|
|
|
|
string p_width; // this is only set for multicolumn!!!
|
|
|
|
///
|
2000-05-05 12:14:16 +00:00
|
|
|
InsetText * inset;
|
2000-04-21 15:16:22 +00:00
|
|
|
};
|
|
|
|
///
|
|
|
|
struct rowstruct {
|
|
|
|
///
|
|
|
|
rowstruct();
|
|
|
|
///
|
|
|
|
~rowstruct();
|
|
|
|
///
|
|
|
|
rowstruct & operator=(rowstruct const &);
|
|
|
|
///
|
|
|
|
bool top_line;
|
|
|
|
bool bottom_line;
|
|
|
|
int ascent_of_row;
|
|
|
|
int descent_of_row;
|
|
|
|
/// This are for longtabulars only
|
|
|
|
bool newpage;
|
|
|
|
};
|
|
|
|
///
|
|
|
|
struct columnstruct {
|
|
|
|
///
|
|
|
|
columnstruct();
|
|
|
|
///
|
|
|
|
~columnstruct();
|
|
|
|
///
|
|
|
|
columnstruct & operator=(columnstruct const &);
|
|
|
|
///
|
|
|
|
int alignment; // add approp. signedness
|
|
|
|
bool left_line;
|
|
|
|
bool right_line;
|
|
|
|
int width_of_column;
|
|
|
|
string p_width;
|
|
|
|
string align_special;
|
|
|
|
};
|
|
|
|
///
|
|
|
|
int rows_;
|
|
|
|
///
|
|
|
|
int columns_;
|
|
|
|
///
|
|
|
|
int numberofcells;
|
|
|
|
///
|
|
|
|
int * rowofcell;
|
|
|
|
///
|
|
|
|
int * columnofcell;
|
|
|
|
///
|
2000-05-05 12:14:16 +00:00
|
|
|
std::vector<rowstruct> row_info;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-05 12:14:16 +00:00
|
|
|
std::vector<columnstruct> column_info;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-05 12:14:16 +00:00
|
|
|
mutable std::vector< std::vector<cellstruct> > cell_info;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
int width_of_tabular;
|
|
|
|
///
|
|
|
|
/// for long tabulars
|
|
|
|
///
|
|
|
|
int endhead; // row of endhead
|
|
|
|
int endfirsthead; // row of endfirsthead
|
|
|
|
int endfoot; // row of endfoot
|
|
|
|
int endlastfoot; // row of endlastfoot
|
|
|
|
///
|
|
|
|
Buffer *buffer;
|
|
|
|
|
|
|
|
///
|
|
|
|
void set_row_column_number_info();
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
|
|
|
bool SetWidthOfMulticolCell(int cell, int new_width);
|
|
|
|
void recalculateMulticolCells(int cell, int new_width);
|
|
|
|
/// Returns true if change
|
|
|
|
bool calculate_width_of_column(int column);
|
|
|
|
bool calculate_width_of_column_NMC(int column); // no multi cells
|
|
|
|
///
|
|
|
|
void calculate_width_of_tabular();
|
|
|
|
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int right_column_of_cell(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
cellstruct * cellinfo_of_cell(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
void delete_column(int column);
|
|
|
|
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int cells_in_multicolumn(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
int is_long_tabular;
|
|
|
|
///
|
|
|
|
int rotate;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|