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"
|
2000-06-12 11:27:15 +00:00
|
|
|
#include "insets/insettext.h"
|
2000-04-21 15:16:22 +00:00
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
class InsetTabular;
|
2000-05-19 10:32:05 +00:00
|
|
|
class LaTeXFeatures;
|
2000-06-12 11:27:15 +00:00
|
|
|
class Buffer;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
/* 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-15 14:49:36 +00:00
|
|
|
LyXTabular(InsetTabular *, int columns_arg, int rows_arg);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
LyXTabular(InsetTabular *, LyXTabular const &);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
explicit
|
2000-06-12 11:27:15 +00:00
|
|
|
LyXTabular(Buffer const *, InsetTabular *, LyXLex & lex);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
~LyXTabular();
|
|
|
|
///
|
|
|
|
LyXTabular & operator=(LyXTabular const &);
|
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
LyXTabular * Clone(InsetTabular *);
|
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-06-22 14:55:46 +00:00
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
|
|
|
bool SetAscentOfRow(int row, int height);
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
|
|
|
bool SetDescentOfRow(int row, int height);
|
2000-04-21 15:16:22 +00:00
|
|
|
/// 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);
|
|
|
|
///
|
2000-05-18 13:26:04 +00:00
|
|
|
bool SetPWidth(int cell, string const & width);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-18 13:26:04 +00:00
|
|
|
bool SetAlignSpecial(int cell, string const & special, int what);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
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-15 14:49:36 +00:00
|
|
|
int GetFirstCellInRow(int row) const;
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
bool IsLastCellInRow(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
int GetLastCellInRow(int row) const;
|
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int GetNumberOfCells() const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-04 08:14:34 +00:00
|
|
|
int NumberOfCellsInRow(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
void Write(Buffer const *, std::ostream &) const;
|
2000-05-04 08:14:34 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
void Read(Buffer const *, LyXLex &);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-18 13:26:04 +00:00
|
|
|
void OldFormatRead(LyXLex &, string const &);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
/// helper function for Latex returns number of newlines
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
int TeXTopHLine(std::ostream &, int row) const;
|
|
|
|
int TeXBottomHLine(std::ostream &, int row) const;
|
|
|
|
int TeXCellPreamble(std::ostream &, int cell) const;
|
|
|
|
int TeXCellPostamble(std::ostream &, int cell) const;
|
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
int Latex(Buffer const *, std::ostream &, bool, bool) 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;
|
|
|
|
///
|
2000-05-26 13:09:14 +00:00
|
|
|
int right_column_of_cell(int cell) const;
|
|
|
|
///
|
2000-04-21 15:16:22 +00:00
|
|
|
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-22 15:20:02 +00:00
|
|
|
int GetCellBelow(int cell) const;
|
|
|
|
///
|
2000-05-26 13:09:14 +00:00
|
|
|
int GetLastCellAbove(int cell) const;
|
|
|
|
///
|
|
|
|
int GetLastCellBelow(int cell) const;
|
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
int GetCellNumber(int row, int column) 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_;}
|
2000-05-15 14:49:36 +00:00
|
|
|
///
|
|
|
|
InsetTabular * owner() const { return owner_; }
|
2000-05-19 10:32:05 +00:00
|
|
|
///
|
|
|
|
void Validate(LaTeXFeatures &) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
|
|
private: //////////////////////////////////////////////////////////////////
|
|
|
|
///
|
|
|
|
struct cellstruct {
|
|
|
|
///
|
2000-05-05 12:14:16 +00:00
|
|
|
cellstruct();
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
#ifdef INSET_POINTER
|
2000-04-21 15:16:22 +00:00
|
|
|
~cellstruct();
|
|
|
|
///
|
2000-05-05 13:46:34 +00:00
|
|
|
cellstruct(cellstruct const &);
|
|
|
|
///
|
|
|
|
cellstruct & operator=(cellstruct const &);
|
2000-06-12 11:27:15 +00:00
|
|
|
#endif
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
int cellno;
|
|
|
|
///
|
|
|
|
int width_of_cell;
|
|
|
|
///
|
|
|
|
int multicolumn; // add approp. signedness
|
|
|
|
///
|
|
|
|
int alignment; // add approp. signedness
|
|
|
|
///
|
|
|
|
bool top_line;
|
|
|
|
///
|
|
|
|
bool bottom_line;
|
|
|
|
///
|
2000-07-11 15:08:54 +00:00
|
|
|
bool left_line;
|
|
|
|
///
|
|
|
|
bool right_line;
|
|
|
|
///
|
2000-04-21 15:16:22 +00:00
|
|
|
bool linebreaks;
|
|
|
|
///
|
|
|
|
int rotate;
|
|
|
|
///
|
|
|
|
string align_special;
|
|
|
|
///
|
|
|
|
string p_width; // this is only set for multicolumn!!!
|
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
InsetText inset;
|
2000-04-21 15:16:22 +00:00
|
|
|
};
|
2000-05-26 13:09:14 +00:00
|
|
|
typedef std::vector<cellstruct> cell_vector;
|
|
|
|
typedef std::vector<cell_vector> cell_vvector;
|
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
struct rowstruct {
|
|
|
|
///
|
|
|
|
rowstruct();
|
|
|
|
///
|
2000-05-05 13:46:34 +00:00
|
|
|
//~rowstruct();
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-05 13:46:34 +00:00
|
|
|
// rowstruct & operator=(rowstruct const &);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
bool top_line;
|
|
|
|
bool bottom_line;
|
|
|
|
int ascent_of_row;
|
|
|
|
int descent_of_row;
|
|
|
|
/// This are for longtabulars only
|
|
|
|
bool newpage;
|
|
|
|
};
|
2000-05-26 13:09:14 +00:00
|
|
|
typedef std::vector<rowstruct> row_vector;
|
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
struct columnstruct {
|
|
|
|
///
|
|
|
|
columnstruct();
|
|
|
|
///
|
2000-05-05 13:46:34 +00:00
|
|
|
//~columnstruct();
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-05 13:46:34 +00:00
|
|
|
//columnstruct & operator=(columnstruct const &);
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
int alignment; // add approp. signedness
|
|
|
|
bool left_line;
|
|
|
|
bool right_line;
|
|
|
|
int width_of_column;
|
|
|
|
string p_width;
|
|
|
|
string align_special;
|
|
|
|
};
|
2000-05-26 13:09:14 +00:00
|
|
|
typedef std::vector<columnstruct> column_vector;
|
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
int rows_;
|
|
|
|
///
|
|
|
|
int columns_;
|
|
|
|
///
|
|
|
|
int numberofcells;
|
|
|
|
///
|
|
|
|
int * rowofcell;
|
|
|
|
///
|
|
|
|
int * columnofcell;
|
|
|
|
///
|
2000-05-26 13:09:14 +00:00
|
|
|
row_vector row_info;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-26 13:09:14 +00:00
|
|
|
column_vector column_info;
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
2000-05-26 13:09:14 +00:00
|
|
|
mutable cell_vvector 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
|
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
InsetTabular * owner_;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
///
|
|
|
|
void Init(int columns_arg, int rows_arg);
|
|
|
|
///
|
|
|
|
void Reinit();
|
2000-04-21 15:16:22 +00:00
|
|
|
///
|
|
|
|
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
|
|
|
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
|