Internal: a table of a StarObjectSpreadsheet. More...
Public Member Functions | |
Table (int loadingVers, int maxRow) | |
constructor More... | |
~Table () override | |
destructor More... | |
int | getLoadingVersion () const |
returns the load version More... | |
int | getMaxRows () const |
returns the maximum number of row More... | |
std::vector< float > | getColumnWidths (std::vector< int > &repeated) const |
returns the col width dimension in inch More... | |
float | getRowHeight (int row) const |
returns the row size in point More... | |
RowContent * | getRow (int row) |
returns a row content More... | |
void | updateRowsBlocks (STOFFVec2i const &rows) |
create a block of rows(if not created) More... | |
Cell & | getCell (STOFFVec2i const &pos) |
returns a cell corresponding to a position More... | |
![]() | |
STOFFTable () | |
the constructor More... | |
virtual | ~STOFFTable () |
the destructor More... | |
void | addTablePropertiesTo (librevenge::RVNGPropertyList &propList) const |
adds the table properties to propList More... | |
Static Public Member Functions | |
static int | getMaxCols () |
returns the maximum number of columns More... | |
Public Attributes | |
int | m_loadingVersion |
the loading version More... | |
librevenge::RVNGString | m_name |
the table name More... | |
librevenge::RVNGString | m_pageStyle |
the page style name More... | |
int | m_maxRow |
the maximum number of row More... | |
std::vector< int > | m_colWidthList |
the columns width More... | |
std::map< STOFFVec2i, int > | m_rowHeightMap |
the rows heights in TWIP More... | |
std::map< STOFFVec2i, RowContent > | m_rowToRowContentMap |
map (min row, max row) -> rowContent More... | |
Cell | m_badCell |
a cell uses to return an empty cell More... | |
![]() | |
librevenge::RVNGPropertyList | m_propertyList |
the property list More... | |
Internal: a table of a StarObjectSpreadsheet.
|
inline |
constructor
|
override |
destructor
|
inline |
returns a cell corresponding to a position
Referenced by StarObjectSpreadsheet::readSCColumn(), and StarObjectSpreadsheet::readSCData().
|
inline |
returns the col width dimension in inch
Referenced by StarObjectSpreadsheet::send().
|
inline |
returns the load version
Referenced by StarObjectSpreadsheet::readSCData(), and StarObjectSpreadsheet::readSCTable().
|
inlinestatic |
returns the maximum number of columns
Referenced by getCell(), and StarObjectSpreadsheet::readSCTable().
|
inline |
returns the maximum number of row
Referenced by getCell(), and StarObjectSpreadsheet::readSCTable().
|
inline |
returns a row content
Referenced by getCell().
|
inline |
returns the row size in point
Referenced by StarObjectSpreadsheet::send().
|
inline |
create a block of rows(if not created)
Referenced by getCell(), and StarObjectSpreadsheet::readSCColumn().
Cell StarObjectSpreadsheetInternal::Table::m_badCell |
a cell uses to return an empty cell
Referenced by getCell().
std::vector<int> StarObjectSpreadsheetInternal::Table::m_colWidthList |
the columns width
Referenced by getColumnWidths(), and StarObjectSpreadsheet::readSCTable().
int StarObjectSpreadsheetInternal::Table::m_loadingVersion |
the loading version
Referenced by getLoadingVersion().
int StarObjectSpreadsheetInternal::Table::m_maxRow |
the maximum number of row
Referenced by getMaxRows().
librevenge::RVNGString StarObjectSpreadsheetInternal::Table::m_name |
the table name
Referenced by StarObjectSpreadsheet::send().
librevenge::RVNGString StarObjectSpreadsheetInternal::Table::m_pageStyle |
the page style name
Referenced by StarObjectSpreadsheet::readSCTable().
std::map<STOFFVec2i, int> StarObjectSpreadsheetInternal::Table::m_rowHeightMap |
the rows heights in TWIP
Referenced by getRowHeight(), StarObjectSpreadsheet::readSCTable(), and StarObjectSpreadsheet::send().
std::map<STOFFVec2i, RowContent> StarObjectSpreadsheetInternal::Table::m_rowToRowContentMap |
map (min row, max row) -> rowContent
Referenced by getRow(), StarObjectSpreadsheet::readSCColumn(), StarObjectSpreadsheet::send(), and updateRowsBlocks().