LibreOffice Module writerfilter (master) 1
|
Class that holds the data of a table. More...
#include <TableData.hxx>
Public Types | |
typedef tools::SvRef< TableData > | Pointer_t |
Public Member Functions | |
TableData (unsigned int nDepth) | |
void | endRow (TablePropertyMapPtr pProperties) |
End the current row. More... | |
void | addCell (const css::uno::Reference< css::text::XTextRange > &start, TablePropertyMapPtr pProps) |
Add a cell to the current row. More... | |
void | endCell (const css::uno::Reference< css::text::XTextRange > &end) |
End the current cell of the current row. More... | |
bool | isCellOpen () const |
Return if the current cell of the current row is open. More... | |
void | insertCellProperties (TablePropertyMapPtr pProps) |
Insert properties to the current cell of the current row. More... | |
unsigned int | getRowCount () const |
Return number of rows in the table. More... | |
unsigned int | getDepth () const |
Return depth of table in surrounding table hierarchy. More... | |
RowPointer_t const & | getRow (unsigned int i) const |
Return row data of a certain row. More... | |
const RowPointer_t & | getCurrentRow () const |
![]() | |
SvRefBase () | |
SvRefBase (const SvRefBase &) | |
SvRefBase & | operator= (const SvRefBase &) |
void | RestoreNoDelete () |
void | AddNextRef () |
void | AddFirstRef () |
void | ReleaseRef () |
unsigned int | GetRefCount () const |
Private Types | |
typedef RowData::Pointer_t | RowPointer_t |
typedef ::std::vector< RowPointer_t > | Rows |
Private Member Functions | |
void | newRow () |
initialize mpRow More... | |
Private Attributes | |
Rows | mRows |
the data of the rows of the table More... | |
RowPointer_t | mpRow |
pointer to the data of the current row (while building up the table data). More... | |
unsigned int | mnDepth |
depth of the current table in a hierarchy of tables More... | |
Additional Inherited Members | |
![]() | |
virtual | ~SvRefBase () COVERITY_NOEXCEPT_FALSE |
Class that holds the data of a table.
Definition at line 271 of file TableData.hxx.
Definition at line 297 of file TableData.hxx.
|
private |
Definition at line 273 of file TableData.hxx.
|
private |
Definition at line 274 of file TableData.hxx.
|
inlineexplicit |
Definition at line 299 of file TableData.hxx.
References newRow().
|
inline |
Add a cell to the current row.
start | start handle of the cell |
end | end handle of the cell |
pProps | properties of the cell |
Definition at line 323 of file TableData.hxx.
|
inline |
End the current cell of the current row.
@parm end end handle of the cell
Definition at line 333 of file TableData.hxx.
|
inline |
End the current row.
Sets properties of the current row and pushes the row to the back of the rows currently contained in the table.
pProperties | properties of the row to be ended |
Definition at line 309 of file TableData.hxx.
|
inline |
Definition at line 382 of file TableData.hxx.
References mpRow.
|
inline |
Return depth of table in surrounding table hierarchy.
Definition at line 367 of file TableData.hxx.
References mnDepth.
|
inline |
Return row data of a certain row.
i | index of the row |
Definition at line 377 of file TableData.hxx.
|
inline |
|
inline |
Insert properties to the current cell of the current row.
pProps | the properties to add |
Definition at line 351 of file TableData.hxx.
References mpRow.
|
inline |
Return if the current cell of the current row is open.
Definition at line 341 of file TableData.hxx.
References mpRow.
|
inlineprivate |
initialize mpRow
Definition at line 294 of file TableData.hxx.
References mpRow.
Referenced by endRow(), and TableData().
|
private |
depth of the current table in a hierarchy of tables
Definition at line 289 of file TableData.hxx.
Referenced by getDepth().
|
private |
pointer to the data of the current row (while building up the table data).
Definition at line 284 of file TableData.hxx.
Referenced by addCell(), endCell(), endRow(), getCurrentRow(), insertCellProperties(), isCellOpen(), and newRow().
|
private |
the data of the rows of the table
Definition at line 279 of file TableData.hxx.
Referenced by endRow(), getRow(), and getRowCount().