2000-04-21 15:16:22 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/* This file is part of
|
|
|
|
|
* ======================================================
|
|
|
|
|
*
|
|
|
|
|
* LyX, The Document Processor
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2000 The LyX Team.
|
|
|
|
|
*
|
2000-08-23 15:18:19 +00:00
|
|
|
|
* @author: J<EFBFBD>rgen Vigna
|
|
|
|
|
*
|
2000-04-21 15:16:22 +00:00
|
|
|
|
* ====================================================== */
|
|
|
|
|
#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:
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
enum Feature {
|
|
|
|
|
///
|
|
|
|
|
APPEND_ROW = 0,
|
|
|
|
|
///
|
|
|
|
|
APPEND_COLUMN,
|
|
|
|
|
///
|
|
|
|
|
DELETE_ROW,
|
|
|
|
|
///
|
|
|
|
|
DELETE_COLUMN,
|
|
|
|
|
///
|
|
|
|
|
TOGGLE_LINE_TOP,
|
|
|
|
|
///
|
|
|
|
|
TOGGLE_LINE_BOTTOM,
|
|
|
|
|
///
|
|
|
|
|
TOGGLE_LINE_LEFT,
|
|
|
|
|
///
|
|
|
|
|
TOGGLE_LINE_RIGHT,
|
|
|
|
|
///
|
|
|
|
|
ALIGN_LEFT,
|
|
|
|
|
///
|
|
|
|
|
ALIGN_RIGHT,
|
|
|
|
|
///
|
|
|
|
|
ALIGN_CENTER,
|
|
|
|
|
///
|
|
|
|
|
VALIGN_TOP,
|
|
|
|
|
///
|
|
|
|
|
VALIGN_BOTTOM,
|
|
|
|
|
///
|
|
|
|
|
VALIGN_CENTER,
|
|
|
|
|
///
|
|
|
|
|
M_TOGGLE_LINE_TOP,
|
|
|
|
|
///
|
|
|
|
|
M_TOGGLE_LINE_BOTTOM,
|
|
|
|
|
///
|
|
|
|
|
M_TOGGLE_LINE_LEFT,
|
|
|
|
|
///
|
|
|
|
|
M_TOGGLE_LINE_RIGHT,
|
|
|
|
|
///
|
|
|
|
|
M_ALIGN_LEFT,
|
|
|
|
|
///
|
|
|
|
|
M_ALIGN_RIGHT,
|
|
|
|
|
///
|
|
|
|
|
M_ALIGN_CENTER,
|
|
|
|
|
///
|
|
|
|
|
M_VALIGN_TOP,
|
|
|
|
|
///
|
|
|
|
|
M_VALIGN_BOTTOM,
|
|
|
|
|
///
|
|
|
|
|
M_VALIGN_CENTER,
|
|
|
|
|
///
|
|
|
|
|
MULTICOLUMN,
|
|
|
|
|
///
|
|
|
|
|
SET_ALL_LINES,
|
|
|
|
|
///
|
|
|
|
|
UNSET_ALL_LINES,
|
|
|
|
|
///
|
|
|
|
|
SET_LONGTABULAR,
|
|
|
|
|
///
|
|
|
|
|
UNSET_LONGTABULAR,
|
|
|
|
|
///
|
|
|
|
|
SET_PWIDTH,
|
|
|
|
|
///
|
|
|
|
|
SET_MPWIDTH,
|
|
|
|
|
///
|
|
|
|
|
SET_ROTATE_TABULAR,
|
|
|
|
|
///
|
|
|
|
|
UNSET_ROTATE_TABULAR,
|
|
|
|
|
///
|
|
|
|
|
SET_ROTATE_CELL,
|
|
|
|
|
///
|
|
|
|
|
UNSET_ROTATE_CELL,
|
|
|
|
|
///
|
|
|
|
|
SET_USEBOX,
|
|
|
|
|
///
|
|
|
|
|
SET_LTHEAD,
|
|
|
|
|
///
|
|
|
|
|
SET_LTFIRSTHEAD,
|
|
|
|
|
///
|
|
|
|
|
SET_LTFOOT,
|
|
|
|
|
///
|
|
|
|
|
SET_LTLASTFOOT,
|
|
|
|
|
///
|
|
|
|
|
SET_LTNEWPAGE,
|
|
|
|
|
///
|
|
|
|
|
SET_SPECIAL_COLUMN,
|
|
|
|
|
///
|
|
|
|
|
SET_SPECIAL_MULTI,
|
|
|
|
|
///
|
|
|
|
|
LAST_ACTION
|
|
|
|
|
};
|
|
|
|
|
///
|
|
|
|
|
enum {
|
|
|
|
|
///
|
|
|
|
|
CELL_NORMAL = 0,
|
|
|
|
|
///
|
|
|
|
|
CELL_BEGIN_OF_MULTICOLUMN,
|
|
|
|
|
///
|
|
|
|
|
CELL_PART_OF_MULTICOLUMN
|
|
|
|
|
};
|
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
enum VAlignment {
|
|
|
|
|
///
|
|
|
|
|
LYX_VALIGN_TOP = 0,
|
|
|
|
|
///
|
|
|
|
|
LYX_VALIGN_BOTTOM = 1,
|
|
|
|
|
///
|
|
|
|
|
LYX_VALIGN_CENTER = 2
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum BoxType {
|
|
|
|
|
///
|
|
|
|
|
BOX_NONE = 0,
|
|
|
|
|
///
|
|
|
|
|
BOX_PARBOX = 1,
|
|
|
|
|
///
|
|
|
|
|
BOX_MINIPAGE = 2
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* konstruktor */
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
LyXTabular(InsetTabular *, int columns_arg, int rows_arg);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
LyXTabular(InsetTabular *, LyXTabular const &);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
explicit
|
|
|
|
|
LyXTabular(Buffer const *, InsetTabular *, LyXLex & lex);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
LyXTabular & operator=(LyXTabular const &);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
LyXTabular * Clone(InsetTabular *);
|
|
|
|
|
|
|
|
|
|
/// Returns true if there is a topline, returns false if not
|
|
|
|
|
bool TopLine(int cell, bool onlycolumn = false) const;
|
|
|
|
|
/// Returns true if there is a topline, returns false if not
|
|
|
|
|
bool BottomLine(int cell, bool onlycolumn = false) const;
|
|
|
|
|
/// Returns true if there is a topline, returns false if not
|
|
|
|
|
bool LeftLine(int cell, bool onlycolumn = false) const;
|
|
|
|
|
/// Returns true if there is a topline, returns false if not
|
|
|
|
|
bool RightLine(int cell, bool onlycolumn = false) const;
|
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool TopAlreadyDrawed(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool LeftAlreadyDrawed(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool IsLastRow(int cell) const;
|
2001-04-24 15:25:26 +00:00
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-26 17:47:40 +00:00
|
|
|
|
int GetAdditionalHeight(int cell) const;
|
2001-04-24 15:25:26 +00:00
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetAdditionalWidth(int cell) const;
|
|
|
|
|
|
|
|
|
|
/* returns the maximum over all rows */
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetWidthOfColumn(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetWidthOfTabular() const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetAscentOfRow(int row) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetDescentOfRow(int row) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetHeightOfTabular() const;
|
|
|
|
|
/// 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);
|
|
|
|
|
/// 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
|
2001-04-06 12:47:50 +00:00
|
|
|
|
bool SetTopLine(int cell, bool line, bool onlycolumn = false);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
2001-04-06 12:47:50 +00:00
|
|
|
|
bool SetBottomLine(int cell, bool line, bool onlycolumn = false);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
2001-04-06 12:47:50 +00:00
|
|
|
|
bool SetLeftLine(int cell, bool line, bool onlycolumn = false);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
2001-04-06 12:47:50 +00:00
|
|
|
|
bool SetRightLine(int cell, bool line, bool onlycolumn = false);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
2001-04-06 12:47:50 +00:00
|
|
|
|
bool SetAlignment(int cell, LyXAlignment align,
|
|
|
|
|
bool onlycolumn = false);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
/// Returns true if a complete update is necessary, otherwise false
|
2001-04-06 12:47:50 +00:00
|
|
|
|
bool SetVAlignment(int cell, VAlignment align,
|
|
|
|
|
bool onlycolumn = false);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool SetColumnPWidth(int cell, string const & width);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool SetMColumnPWidth(int cell, string const & width);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool SetAlignSpecial(int cell, string const & special, Feature what);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
LyXAlignment GetAlignment(int cell, bool onlycolumn = false) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
VAlignment GetVAlignment(int cell, bool onlycolumn = false) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
string const GetPWidth(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
string const GetColumnPWidth(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
string const GetMColumnPWidth(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
string const GetAlignSpecial(int cell, int what) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetWidthOfCell(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetBeginningOfTextInCell(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void AppendRow(int cell);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void DeleteRow(int row);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void AppendColumn(int cell);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void DeleteColumn(int column);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool IsFirstCellInRow(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetFirstCellInRow(int row) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool IsLastCellInRow(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetLastCellInRow(int row) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetNumberOfCells() const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int NumberOfCellsInRow(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void Write(Buffer const *, std::ostream &) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void Read(Buffer const *, LyXLex &);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void OldFormatRead(LyXLex &, string const &);
|
|
|
|
|
//
|
|
|
|
|
// helper function for Latex returns number of newlines
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int TeXTopHLine(std::ostream &, int row) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int TeXBottomHLine(std::ostream &, int row) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int TeXCellPreamble(std::ostream &, int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int TeXCellPostamble(std::ostream &, int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int Latex(Buffer const *, std::ostream &, bool, bool) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int DocBook(Buffer const * buf, std::ostream & os) const;
|
2000-07-17 14:31:07 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
// helper function for Latex returns number of newlines
|
2000-07-17 14:31:07 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int AsciiTopHLine(std::ostream &, int row,
|
2001-04-06 12:47:50 +00:00
|
|
|
|
std::vector<unsigned int> const &) const;
|
2000-07-17 14:31:07 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int AsciiBottomHLine(std::ostream &, int row,
|
2001-04-06 12:47:50 +00:00
|
|
|
|
std::vector<unsigned int> const &) const;
|
2000-08-23 15:18:19 +00:00
|
|
|
|
///
|
2001-04-06 12:47:50 +00:00
|
|
|
|
int AsciiPrintCell(Buffer const *, std::ostream &,
|
|
|
|
|
int cell, int row, int column,
|
|
|
|
|
std::vector<unsigned int> const &) const;
|
2000-08-23 15:18:19 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int Ascii(Buffer const *, std::ostream &) const;
|
2000-08-23 15:18:19 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool IsMultiColumn(int cell, bool real = false) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void SetMultiColumn(int cell, int number);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int UnsetMultiColumn(int cell); // returns number of new cells
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool IsPartOfMultiColumn(int row, int column) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int row_of_cell(int cell) const;
|
2000-07-17 14:31:07 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int column_of_cell(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int right_column_of_cell(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void SetLongTabular(bool);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool IsLongTabular() const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void SetRotateTabular(bool);
|
2000-07-11 15:08:54 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool GetRotateTabular() const;
|
2000-08-23 15:18:19 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void SetRotateCell(int cell, bool);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool GetRotateCell(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool NeedRotating() const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool IsLastCell(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetCellAbove(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetCellBelow(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetLastCellAbove(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetLastCellBelow(int cell) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
int GetCellNumber(int row, int column) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void SetUsebox(int cell, BoxType);
|
|
|
|
|
///
|
|
|
|
|
BoxType GetUsebox(int cell) const;
|
|
|
|
|
//
|
|
|
|
|
// Long Tabular Options
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void SetLTHead(int cell, bool first);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool GetRowOfLTHead(int cell, int & row) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool GetRowOfLTFirstHead(int cell, int & row) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
void SetLTFoot(int cell, bool last);
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool GetRowOfLTFoot(int cell, int & row) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
bool GetRowOfLTLastFoot(int cell, int & row) const;
|
|
|
|
|
///
|
|
|
|
|
void SetLTNewPage(int cell, bool what);
|
|
|
|
|
///
|
|
|
|
|
bool GetLTNewPage(int cell) const;
|
|
|
|
|
///
|
|
|
|
|
InsetText * GetCellInset(int cell) const;
|
|
|
|
|
///
|
|
|
|
|
InsetText * GetCellInset(int row, int column) const;
|
|
|
|
|
///
|
|
|
|
|
int rows() const { return rows_; }
|
|
|
|
|
///
|
|
|
|
|
int columns() const { return columns_;}
|
|
|
|
|
///
|
|
|
|
|
InsetTabular * owner() const { return owner_; }
|
|
|
|
|
///
|
|
|
|
|
void Validate(LaTeXFeatures &) const;
|
2001-04-06 12:47:50 +00:00
|
|
|
|
///
|
|
|
|
|
std::vector<string> const getLabelList() const;
|
|
|
|
|
private:
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
|
|
|
|
struct cellstruct {
|
|
|
|
|
///
|
|
|
|
|
cellstruct();
|
|
|
|
|
///
|
|
|
|
|
int cellno;
|
|
|
|
|
///
|
|
|
|
|
int width_of_cell;
|
|
|
|
|
///
|
|
|
|
|
int multicolumn;
|
|
|
|
|
///
|
|
|
|
|
LyXAlignment alignment;
|
|
|
|
|
///
|
|
|
|
|
VAlignment valignment;
|
|
|
|
|
///
|
|
|
|
|
bool top_line;
|
|
|
|
|
///
|
|
|
|
|
bool bottom_line;
|
|
|
|
|
///
|
|
|
|
|
bool left_line;
|
|
|
|
|
///
|
|
|
|
|
bool right_line;
|
|
|
|
|
///
|
|
|
|
|
BoxType usebox;
|
|
|
|
|
///
|
|
|
|
|
bool rotate;
|
|
|
|
|
///
|
|
|
|
|
string align_special;
|
|
|
|
|
///
|
|
|
|
|
string p_width; // this is only set for multicolumn!!!
|
|
|
|
|
///
|
|
|
|
|
InsetText inset;
|
|
|
|
|
};
|
|
|
|
|
///
|
|
|
|
|
typedef std::vector<cellstruct> cell_vector;
|
|
|
|
|
///
|
|
|
|
|
typedef std::vector<cell_vector> cell_vvector;
|
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
struct rowstruct {
|
|
|
|
|
///
|
|
|
|
|
rowstruct();
|
|
|
|
|
///
|
|
|
|
|
bool top_line;
|
|
|
|
|
///
|
|
|
|
|
bool bottom_line;
|
|
|
|
|
///
|
|
|
|
|
int ascent_of_row;
|
|
|
|
|
///
|
|
|
|
|
int descent_of_row;
|
|
|
|
|
/// This are for longtabulars only
|
|
|
|
|
bool newpage;
|
|
|
|
|
};
|
|
|
|
|
///
|
|
|
|
|
typedef std::vector<rowstruct> row_vector;
|
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2001-04-02 14:02:58 +00:00
|
|
|
|
struct columnstruct {
|
|
|
|
|
///
|
|
|
|
|
columnstruct();
|
|
|
|
|
///
|
|
|
|
|
LyXAlignment alignment;
|
|
|
|
|
///
|
|
|
|
|
VAlignment valignment;
|
|
|
|
|
///
|
|
|
|
|
bool left_line;
|
|
|
|
|
///
|
|
|
|
|
bool right_line;
|
|
|
|
|
///
|
|
|
|
|
int width_of_column;
|
|
|
|
|
///
|
|
|
|
|
string p_width;
|
|
|
|
|
///
|
|
|
|
|
string align_special;
|
|
|
|
|
};
|
|
|
|
|
///
|
|
|
|
|
typedef std::vector<columnstruct> column_vector;
|
2000-05-26 13:09:14 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
|
|
|
|
void ReadNew(Buffer const * buf, std::istream & is,
|
|
|
|
|
LyXLex & lex, string const & l);
|
|
|
|
|
///
|
|
|
|
|
void ReadOld(Buffer const * buf, std::istream & is,
|
|
|
|
|
LyXLex & lex, string const & l);
|
|
|
|
|
///
|
|
|
|
|
int rows_;
|
|
|
|
|
///
|
|
|
|
|
int columns_;
|
|
|
|
|
///
|
|
|
|
|
int numberofcells;
|
|
|
|
|
///
|
|
|
|
|
std::vector<int> rowofcell;
|
|
|
|
|
///
|
|
|
|
|
std::vector<int> columnofcell;
|
|
|
|
|
///
|
|
|
|
|
row_vector row_info;
|
|
|
|
|
///
|
|
|
|
|
column_vector column_info;
|
|
|
|
|
///
|
|
|
|
|
mutable cell_vvector cell_info;
|
|
|
|
|
///
|
|
|
|
|
int width_of_tabular;
|
|
|
|
|
///
|
|
|
|
|
bool rotate;
|
|
|
|
|
//
|
|
|
|
|
// for long tabulars
|
|
|
|
|
///
|
|
|
|
|
bool is_long_tabular;
|
|
|
|
|
/// row of endhead
|
|
|
|
|
int endhead;
|
|
|
|
|
/// row of endfirsthead
|
|
|
|
|
int endfirsthead;
|
|
|
|
|
/// row of endfoot
|
|
|
|
|
int endfoot;
|
|
|
|
|
/// row of endlastfoot
|
|
|
|
|
int endlastfoot;
|
|
|
|
|
///
|
|
|
|
|
InsetTabular * owner_;
|
2001-04-24 15:25:26 +00:00
|
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2001-04-26 17:47:40 +00:00
|
|
|
|
void Init(int columns_arg, int rows_arg);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
|
|
|
|
void Reinit();
|
|
|
|
|
///
|
|
|
|
|
void set_row_column_number_info(bool oldformat = false);
|
|
|
|
|
/// 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();
|
|
|
|
|
///
|
|
|
|
|
cellstruct * cellinfo_of_cell(int cell) const;
|
|
|
|
|
///
|
|
|
|
|
void delete_column(int column);
|
|
|
|
|
///
|
|
|
|
|
int cells_in_multicolumn(int cell) const;
|
|
|
|
|
///
|
|
|
|
|
BoxType UseParbox(int cell) const;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|