LibreOffice Module writerfilter (master) 1
|
The table manager. More...
#include <TableManager.hxx>
Classes | |
class | TableManagerState |
Public Member Functions | |
TablePropertyMapPtr const & | getRowProps () const |
TablePropertyMapPtr const & | getTableExceptionProps () const |
TableManager () | |
~TableManager () | |
void | setHandler (const tools::SvRef< DomainMapperTableHandler > &pTableDataHandler) |
Set handler for resolveCurrentTable. More... | |
void | handle (const css::uno::Reference< css::text::XTextRange > &rHandle) |
Set the current handle. More... | |
virtual void | startLevel () |
Start a new table level. More... | |
virtual void | endLevel () |
End a table level. More... | |
void | endTable () |
Signal that the next paragraph definitely won't be part of any table. More... | |
bool | isInTable () |
Tells whether a table has been started or not. More... | |
void | startParagraphGroup () |
Handle the start of a paragraph group. More... | |
void | endParagraphGroup () |
Handle the end of a paragraph group. More... | |
virtual bool | sprm (Sprm &rSprm) |
Handle an SPRM at current handle. More... | |
void | handle0x7 () |
Handle occurrence of character 0x7. More... | |
void | text (const sal_uInt8 *data, size_t len) |
Handle 8 bit text at current handle. More... | |
void | utext (const sal_uInt8 *data, size_t len) |
Handle 16 bit text at current handle. More... | |
virtual void | cellProps (const TablePropertyMapPtr &pProps) |
Handle properties of the current cell. More... | |
virtual void | insertRowProps (const TablePropertyMapPtr &pProps) |
Handle properties of the current row. More... | |
virtual void | tableExceptionProps (const TablePropertyMapPtr &pProps) |
Handle table exception properties of the current row. More... | |
virtual void | insertTableProps (const TablePropertyMapPtr &pProps) |
Handle properties of the current table. More... | |
bool | isIgnore () const |
Return if table manager has detected paragraph to ignore. More... | |
sal_uInt32 | getGridBefore (sal_uInt32 nRow) |
sal_uInt32 | getCurrentGridBefore () |
void | setCurrentGridBefore (sal_uInt32 nSkipGrids) |
sal_uInt32 | getGridAfter (sal_uInt32 nRow) |
void | setCurrentGridAfter (sal_uInt32 nSkipGrids) |
std::vector< sal_uInt32 > | getCurrentGridSpans () |
void | setCurrentGridSpan (sal_uInt32 nGridSpan, bool bFirstCell=false) |
sal_uInt32 | findColumn (const sal_uInt32 nRow, const sal_uInt32 nCell) |
Given a zero-based row/cell, return the zero-based grid it belongs to, or SAL_MAX_UINT16 for invalid. More... | |
sal_uInt32 | findColumnCell (const sal_uInt32 nRow, const sal_uInt32 nCol) |
Given a zero-based row/col, return the zero-based cell describing that grid, or SAL_MAX_UINT16 for invalid. More... | |
void | setTableStartsAtCellStart (bool bTableStartsAtCellStart) |
void | setCellLastParaAfterAutospacing (bool bIsAfterAutospacing) |
bool | isCellLastParaAfterAutospacing () const |
![]() | |
SvRefBase () | |
SvRefBase (const SvRefBase &) | |
SvRefBase & | operator= (const SvRefBase &) |
void | RestoreNoDelete () |
void | AddNextRef () |
void | AddFirstRef () |
void | ReleaseRef () |
unsigned int | GetRefCount () const |
Protected Member Functions | |
TablePropertyMapPtr const & | getCellProps () const |
void | setInCell (bool bInCell) |
bool | isInCell () const |
void | setCellEnd (bool bCellEnd) |
void | setRowEnd (bool bRowEnd) |
bool | isRowEnd () const |
TablePropertyMapPtr | getTableProps () |
const css::uno::Reference< css::text::XTextRange > & | getHandle () const |
void | setHandle (const css::uno::Reference< css::text::XTextRange > &rHandle) |
sal_Int32 | getTableDepthDifference () const |
Return the current table difference, i.e. More... | |
sal_uInt32 | getTableDepth () const |
virtual void | endOfCellAction () |
Action to be carried out at the end of the last paragraph of a cell. More... | |
virtual void | endOfRowAction () |
Action to be carried out at the end of the "table row" paragraph. More... | |
virtual void | clearData () |
let the derived class clear their table related data More... | |
void | setKeepUnfinishedRow (bool bKeep) |
Should we keep the unfinished row in endLevel to initialize the table data in the following startLevel. More... | |
![]() | |
virtual | ~SvRefBase () COVERITY_NOEXCEPT_FALSE |
Private Types | |
typedef tools::SvRef< css::uno::Reference< css::text::XTextRange > > | T_p |
Private Member Functions | |
void | inCell () |
Set flag which indicates the current handle is in a cell. More... | |
void | endCell () |
Set flag which indicate the current handle is at the end of a cell. More... | |
void | cellDepth (sal_uInt32 nDepth) |
Set the table depth of the current cell. More... | |
void | endRow () |
Set flag indication the current handle is at the end of a row. More... | |
void | resolveCurrentTable () |
Resolve the current table to the TableDataHandler. More... | |
void | openCell (const css::uno::Reference< css::text::XTextRange > &rHandle, const TablePropertyMapPtr &pProps) |
Open a cell at current level. More... | |
void | closeCell (const css::uno::Reference< css::text::XTextRange > &rHandle) |
Close a cell at current level. More... | |
void | ensureOpenCell (const TablePropertyMapPtr &pProps) |
Ensure a cell is open at the current level. More... | |
Private Attributes | |
css::uno::Reference< css::text::XTextRange > | mCurHandle |
handle for the current position in document More... | |
TableManagerState | mState |
sal_uInt32 | mnTableDepthNew |
depth of the current cell More... | |
sal_uInt32 | mnTableDepth |
depth of the previous cell More... | |
std::stack< TableData::Pointer_t > | mTableDataStack |
stack of table data More... | |
RowData::Pointer_t | mpUnfinishedRow |
bool | mbKeepUnfinishedRow |
bool | m_bTableStartsAtCellStart |
If this is a nested table, does it start at cell start? More... | |
bool | m_bCellLastParaAfterAutospacing |
tools::SvRef< DomainMapperTableHandler > | mpTableDataHandler |
handler for resolveCurrentTable More... | |
The table manager.
This class gets forwarded events from the tokenizer. It gathers the table data and after ending the table generates events for the table structure. The events have to be handles by a TableDataHandler.
Definition at line 43 of file TableManager.hxx.
|
private |
Definition at line 284 of file TableManager.hxx.
writerfilter::dmapper::TableManager::TableManager | ( | ) |
Definition at line 602 of file TableManager.cxx.
References m_bCellLastParaAfterAutospacing, setCellEnd(), setInCell(), and setRowEnd().
|
default |
|
private |
Set the table depth of the current cell.
nDepth | the cell depth |
Definition at line 581 of file TableManager.cxx.
References writerfilter::TagLogger::attribute(), writerfilter::TagLogger::endElement(), writerfilter::TagLogger::getInstance(), mnTableDepthNew, and writerfilter::TagLogger::startElement().
Referenced by sprm().
|
virtual |
Handle properties of the current cell.
pProps | the properties |
Reimplemented in writerfilter::dmapper::DomainMapperTableManager.
Definition at line 184 of file TableManager.cxx.
References writerfilter::TagLogger::endElement(), tools::SvRef< typename T >::get(), getCellProps(), writerfilter::TagLogger::getInstance(), mState, writerfilter::dmapper::TableManager::TableManagerState::setCellProps(), and writerfilter::TagLogger::startElement().
Referenced by writerfilter::dmapper::DomainMapperTableManager::cellProps(), and writerfilter::dmapper::TablePropertiesHandler::cellProps().
|
protectedvirtual |
let the derived class clear their table related data
Reimplemented in writerfilter::dmapper::DomainMapperTableManager.
Definition at line 31 of file TableManager.cxx.
Referenced by resolveCurrentTable().
|
private |
Close a cell at current level.
Definition at line 281 of file TableManager.cxx.
References writerfilter::TagLogger::chars(), writerfilter::TagLogger::endElement(), writerfilter::TagLogger::getInstance(), mpTableDataHandler, mTableDataStack, writerfilter::TagLogger::startElement(), and writerfilter::dmapper::XTextRangeToString().
Referenced by endParagraphGroup().
|
private |
Set flag which indicate the current handle is at the end of a cell.
Definition at line 561 of file TableManager.cxx.
References writerfilter::TagLogger::element(), writerfilter::TagLogger::getInstance(), and setCellEnd().
Referenced by handle0x7(), and sprm().
|
virtual |
End a table level.
The current table is resolved and the context is popped from the stack.
Reimplemented in writerfilter::dmapper::DomainMapperTableManager.
Definition at line 424 of file TableManager.cxx.
References writerfilter::TagLogger::attribute(), writerfilter::TagLogger::endElement(), writerfilter::dmapper::TableManager::TableManagerState::endLevel(), writerfilter::TagLogger::getInstance(), mbKeepUnfinishedRow, mpTableDataHandler, mpUnfinishedRow, mState, mTableDataStack, resolveCurrentTable(), and writerfilter::TagLogger::startElement().
Referenced by writerfilter::dmapper::DomainMapperTableManager::endLevel(), and endParagraphGroup().
|
protectedvirtual |
Action to be carried out at the end of the last paragraph of a cell.
Reimplemented in writerfilter::dmapper::DomainMapperTableManager.
Definition at line 150 of file TableManager.cxx.
Referenced by endParagraphGroup().
|
protectedvirtual |
Action to be carried out at the end of the "table row" paragraph.
Reimplemented in writerfilter::dmapper::DomainMapperTableManager.
Definition at line 148 of file TableManager.cxx.
Referenced by endParagraphGroup().
void writerfilter::dmapper::TableManager::endParagraphGroup | ( | ) |
Handle the end of a paragraph group.
Definition at line 323 of file TableManager.cxx.
References closeCell(), endLevel(), endOfCellAction(), endOfRowAction(), ensureOpenCell(), getCellProps(), getHandle(), getRowProps(), writerfilter::dmapper::TableManager::TableManagerState::isCellEnd(), isInCell(), isRowEnd(), mnTableDepth, mnTableDepthNew, mState, mTableDataStack, writerfilter::dmapper::TableManager::TableManagerState::resetCellProps(), writerfilter::dmapper::TableManager::TableManagerState::resetRowProps(), and startLevel().
|
private |
Set flag indication the current handle is at the end of a row.
Definition at line 513 of file TableManager.cxx.
References writerfilter::TagLogger::element(), getCurrentGridBefore(), getCurrentGridSpans(), writerfilter::TagLogger::getInstance(), i, mTableDataStack, writerfilter::dmapper::PROP_BOTTOM_BORDER, writerfilter::dmapper::PROP_LEFT_BORDER, writerfilter::dmapper::PROP_RIGHT_BORDER, writerfilter::dmapper::PROP_TOP_BORDER, setCurrentGridBefore(), setCurrentGridSpan(), and setRowEnd().
Referenced by handle0x7(), and sprm().
|
inline |
Signal that the next paragraph definitely won't be part of any table.
Definition at line 425 of file TableManager.hxx.
References setRowEnd().
|
private |
Ensure a cell is open at the current level.
Definition at line 300 of file TableManager.cxx.
References writerfilter::TagLogger::endElement(), getHandle(), writerfilter::TagLogger::getInstance(), mTableDataStack, openCell(), and writerfilter::TagLogger::startElement().
Referenced by endParagraphGroup().
sal_uInt32 writerfilter::dmapper::TableManager::findColumn | ( | const sal_uInt32 | nRow, |
const sal_uInt32 | nCell | ||
) |
Given a zero-based row/cell, return the zero-based grid it belongs to, or SAL_MAX_UINT16 for invalid.
Definition at line 102 of file TableManager.cxx.
References getGridBefore(), mTableDataStack, n, and SAL_MAX_UINT32.
Referenced by writerfilter::dmapper::DomainMapperTableHandler::endTableGetCellProperties().
sal_uInt32 writerfilter::dmapper::TableManager::findColumnCell | ( | const sal_uInt32 | nRow, |
const sal_uInt32 | nCol | ||
) |
Given a zero-based row/col, return the zero-based cell describing that grid, or SAL_MAX_UINT16 for invalid.
Definition at line 122 of file TableManager.cxx.
References getGridBefore(), mTableDataStack, and SAL_MAX_UINT32.
Referenced by writerfilter::dmapper::DomainMapperTableHandler::endTableGetCellProperties().
|
inlineprotected |
Definition at line 226 of file TableManager.hxx.
References writerfilter::dmapper::TableManager::TableManagerState::getCellProps(), and mState.
Referenced by cellProps(), and endParagraphGroup().
sal_uInt32 writerfilter::dmapper::TableManager::getCurrentGridBefore | ( | ) |
Definition at line 64 of file TableManager.cxx.
References mTableDataStack.
Referenced by writerfilter::dmapper::DomainMapperTableManager::endOfRowAction(), and endRow().
std::vector< sal_uInt32 > writerfilter::dmapper::TableManager::getCurrentGridSpans | ( | ) |
Definition at line 92 of file TableManager.cxx.
References mTableDataStack.
Referenced by writerfilter::dmapper::DomainMapperTableManager::endOfRowAction(), and endRow().
sal_uInt32 writerfilter::dmapper::TableManager::getGridAfter | ( | sal_uInt32 | nRow | ) |
Definition at line 74 of file TableManager.cxx.
References isInTable(), mTableDataStack, and SAL_WARN.
Referenced by writerfilter::dmapper::DomainMapperTableHandler::endTableGetCellProperties().
sal_uInt32 writerfilter::dmapper::TableManager::getGridBefore | ( | sal_uInt32 | nRow | ) |
Definition at line 52 of file TableManager.cxx.
References isInTable(), mTableDataStack, and SAL_WARN.
Referenced by writerfilter::dmapper::DomainMapperTableHandler::endTableGetCellProperties(), findColumn(), and findColumnCell().
|
inlineprotected |
Definition at line 273 of file TableManager.hxx.
References mCurHandle.
Referenced by endParagraphGroup(), and ensureOpenCell().
|
inline |
Definition at line 232 of file TableManager.hxx.
References writerfilter::dmapper::TableManager::TableManagerState::getRowProps(), and mState.
Referenced by endParagraphGroup(), and insertRowProps().
|
inlineprotected |
Definition at line 363 of file TableManager.hxx.
References mnTableDepthNew.
Referenced by writerfilter::dmapper::DomainMapperTableManager::endOfRowAction(), and writerfilter::dmapper::DomainMapperTableManager::sprm().
|
inlineprotected |
Return the current table difference, i.e.
1 if we are in the first cell of a new table, etc.
Definition at line 361 of file TableManager.hxx.
References mnTableDepth, and mnTableDepthNew.
Referenced by writerfilter::dmapper::DomainMapperTableManager::endLevel(), writerfilter::dmapper::DomainMapperTableManager::sprm(), and writerfilter::dmapper::DomainMapperTableManager::startLevel().
|
inline |
Definition at line 237 of file TableManager.hxx.
References writerfilter::dmapper::TableManager::TableManagerState::getTableExceptionProps(), and mState.
Referenced by tableExceptionProps().
|
inlineprotected |
Definition at line 268 of file TableManager.hxx.
References writerfilter::dmapper::TableManager::TableManagerState::getTableProps(), and mState.
Referenced by writerfilter::dmapper::DomainMapperTableManager::endLevel(), insertTableProps(), and resolveCurrentTable().
void writerfilter::dmapper::TableManager::handle | ( | const css::uno::Reference< css::text::XTextRange > & | rHandle | ) |
Set the current handle.
rHandle | the handle |
Definition at line 497 of file TableManager.cxx.
References writerfilter::TagLogger::chars(), writerfilter::TagLogger::endElement(), writerfilter::TagLogger::getInstance(), setHandle(), writerfilter::TagLogger::startElement(), and writerfilter::dmapper::XTextRangeToString().
Referenced by writerfilter::dmapper::DomainMapper_Impl::finishParagraph().
void writerfilter::dmapper::TableManager::handle0x7 | ( | ) |
Handle occurrence of character 0x7.
Definition at line 235 of file TableManager.cxx.
References endCell(), writerfilter::TagLogger::endElement(), endRow(), writerfilter::TagLogger::getInstance(), isInCell(), mnTableDepthNew, and writerfilter::TagLogger::startElement().
|
private |
Set flag which indicates the current handle is in a cell.
Definition at line 570 of file TableManager.cxx.
References writerfilter::TagLogger::element(), writerfilter::TagLogger::getInstance(), mnTableDepthNew, and setInCell().
Referenced by sprm().
|
virtual |
Handle properties of the current row.
pProps | the properties |
Reimplemented in writerfilter::dmapper::DomainMapperTableManager.
Definition at line 168 of file TableManager.cxx.
References writerfilter::TagLogger::endElement(), tools::SvRef< typename T >::get(), writerfilter::TagLogger::getInstance(), getRowProps(), mState, writerfilter::dmapper::TableManager::TableManagerState::setRowProps(), and writerfilter::TagLogger::startElement().
Referenced by writerfilter::dmapper::DomainMapperTableManager::insertRowProps(), and writerfilter::dmapper::TablePropertiesHandler::insertRowProps().
|
virtual |
Handle properties of the current table.
pProps | the properties |
Reimplemented in writerfilter::dmapper::DomainMapperTableManager.
Definition at line 152 of file TableManager.cxx.
References writerfilter::TagLogger::endElement(), tools::SvRef< typename T >::get(), writerfilter::TagLogger::getInstance(), getTableProps(), mState, writerfilter::dmapper::TableManager::TableManagerState::setTableProps(), and writerfilter::TagLogger::startElement().
Referenced by writerfilter::dmapper::DomainMapperTableManager::endOfRowAction(), and writerfilter::dmapper::TablePropertiesHandler::insertTableProps().
|
inline |
Definition at line 523 of file TableManager.hxx.
References m_bCellLastParaAfterAutospacing.
bool writerfilter::dmapper::TableManager::isIgnore | ( | ) | const |
Return if table manager has detected paragraph to ignore.
If this function returns true the current paragraph contains only control information, e.g. end of row.
Definition at line 50 of file TableManager.cxx.
References isRowEnd().
|
inlineprotected |
Definition at line 248 of file TableManager.hxx.
References writerfilter::dmapper::TableManager::TableManagerState::isInCell(), and mState.
Referenced by endParagraphGroup(), and handle0x7().
bool writerfilter::dmapper::TableManager::isInTable | ( | ) |
Tells whether a table has been started or not.
Definition at line 489 of file TableManager.cxx.
References mTableDataStack.
Referenced by writerfilter::dmapper::SdtHelper::createDateContentControl(), writerfilter::dmapper::DomainMapperTableManager::endOfCellAction(), getGridAfter(), getGridBefore(), and setCurrentGridAfter().
|
inlineprotected |
Definition at line 263 of file TableManager.hxx.
References writerfilter::dmapper::TableManager::TableManagerState::isRowEnd(), and mState.
Referenced by endParagraphGroup(), and isIgnore().
|
private |
Open a cell at current level.
Definition at line 33 of file TableManager.cxx.
References writerfilter::TagLogger::chars(), writerfilter::TagLogger::endElement(), writerfilter::TagLogger::getInstance(), mTableDataStack, writerfilter::TagLogger::startElement(), and writerfilter::dmapper::XTextRangeToString().
Referenced by ensureOpenCell().
|
private |
Resolve the current table to the TableDataHandler.
Definition at line 374 of file TableManager.cxx.
References clearData(), writerfilter::TagLogger::endElement(), writerfilter::TagLogger::getInstance(), getTableProps(), m_bTableStartsAtCellStart, mpTableDataHandler, mState, mTableDataStack, writerfilter::dmapper::TableManager::TableManagerState::resetTableProps(), writerfilter::TagLogger::startElement(), and TOOLS_WARN_EXCEPTION.
Referenced by endLevel().
|
inlineprotected |
Definition at line 253 of file TableManager.hxx.
References mState, and writerfilter::dmapper::TableManager::TableManagerState::setCellEnd().
Referenced by endCell(), and TableManager().
void writerfilter::dmapper::TableManager::setCellLastParaAfterAutospacing | ( | bool | bIsAfterAutospacing | ) |
Definition at line 597 of file TableManager.cxx.
References m_bCellLastParaAfterAutospacing.
Referenced by writerfilter::dmapper::DomainMapper_Impl::finishParagraph().
void writerfilter::dmapper::TableManager::setCurrentGridAfter | ( | sal_uInt32 | nSkipGrids | ) |
Definition at line 86 of file TableManager.cxx.
References isInTable(), and mTableDataStack.
Referenced by writerfilter::dmapper::DomainMapperTableManager::sprm().
void writerfilter::dmapper::TableManager::setCurrentGridBefore | ( | sal_uInt32 | nSkipGrids | ) |
Definition at line 69 of file TableManager.cxx.
References mTableDataStack.
Referenced by endRow(), and writerfilter::dmapper::DomainMapperTableManager::sprm().
void writerfilter::dmapper::TableManager::setCurrentGridSpan | ( | sal_uInt32 | nGridSpan, |
bool | bFirstCell = false |
||
) |
Definition at line 97 of file TableManager.cxx.
References mTableDataStack.
Referenced by writerfilter::dmapper::DomainMapperTableManager::endOfCellAction(), and endRow().
|
inlineprotected |
void writerfilter::dmapper::TableManager::setHandler | ( | const tools::SvRef< DomainMapperTableHandler > & | pTableDataHandler | ) |
Set handler for resolveCurrentTable.
pTableDataHandler | the handler |
Definition at line 508 of file TableManager.cxx.
References mpTableDataHandler.
Referenced by writerfilter::dmapper::DomainMapper_Impl::DomainMapper_Impl().
|
inlineprotected |
Definition at line 243 of file TableManager.hxx.
References mState, and writerfilter::dmapper::TableManager::TableManagerState::setInCell().
Referenced by inCell(), and TableManager().
|
inlineprotected |
Should we keep the unfinished row in endLevel to initialize the table data in the following startLevel.
Definition at line 383 of file TableManager.hxx.
References mbKeepUnfinishedRow.
Referenced by writerfilter::dmapper::DomainMapperTableManager::endOfRowAction().
|
inlineprotected |
Definition at line 258 of file TableManager.hxx.
References mState, and writerfilter::dmapper::TableManager::TableManagerState::setRowEnd().
Referenced by endRow(), endTable(), and TableManager().
void writerfilter::dmapper::TableManager::setTableStartsAtCellStart | ( | bool | bTableStartsAtCellStart | ) |
Definition at line 592 of file TableManager.cxx.
References m_bTableStartsAtCellStart.
|
virtual |
Handle an SPRM at current handle.
rSprm | the SPRM |
Reimplemented in writerfilter::dmapper::DomainMapperTableManager.
Definition at line 254 of file TableManager.cxx.
References cellDepth(), endCell(), endRow(), writerfilter::Sprm::getId(), writerfilter::Sprm::getValue(), and inCell().
Referenced by writerfilter::dmapper::DomainMapperTableManager::sprm().
|
virtual |
Start a new table level.
A new context is pushed onto the table data stack,
Reimplemented in writerfilter::dmapper::DomainMapperTableManager.
Definition at line 451 of file TableManager.cxx.
References writerfilter::TagLogger::attribute(), tools::SvRef< typename T >::clear(), writerfilter::TagLogger::endElement(), writerfilter::TagLogger::getInstance(), i, mpUnfinishedRow, mState, mTableDataStack, writerfilter::TagLogger::startElement(), and writerfilter::dmapper::TableManager::TableManagerState::startLevel().
Referenced by endParagraphGroup(), and writerfilter::dmapper::DomainMapperTableManager::startLevel().
void writerfilter::dmapper::TableManager::startParagraphGroup | ( | ) |
Handle the start of a paragraph group.
Definition at line 368 of file TableManager.cxx.
References mnTableDepthNew, mState, and writerfilter::dmapper::TableManager::TableManagerState::resetCellSpecifics().
|
virtual |
Handle table exception properties of the current row.
pProps | the properties |
Definition at line 200 of file TableManager.cxx.
References writerfilter::TagLogger::endElement(), tools::SvRef< typename T >::get(), writerfilter::TagLogger::getInstance(), getTableExceptionProps(), mState, writerfilter::dmapper::TableManager::TableManagerState::setTableExceptionProps(), and writerfilter::TagLogger::startElement().
Referenced by writerfilter::dmapper::TablePropertiesHandler::tableExceptionProps().
void writerfilter::dmapper::TableManager::text | ( | const sal_uInt8 * | data, |
size_t | len | ||
) |
Handle 8 bit text at current handle.
data | array of characters |
len | number of characters to handle |
Definition at line 228 of file TableManager.cxx.
References handle0x7().
void writerfilter::dmapper::TableManager::utext | ( | const sal_uInt8 * | data, |
size_t | len | ||
) |
Handle 16 bit text at current handle.
data | array of characters |
len | number of characters to handle |
Definition at line 216 of file TableManager.cxx.
References handle0x7().
|
private |
Definition at line 307 of file TableManager.hxx.
Referenced by isCellLastParaAfterAutospacing(), setCellLastParaAfterAutospacing(), and TableManager().
|
private |
If this is a nested table, does it start at cell start?
Definition at line 305 of file TableManager.hxx.
Referenced by resolveCurrentTable(), and setTableStartsAtCellStart().
|
private |
Definition at line 303 of file TableManager.hxx.
Referenced by endLevel(), and setKeepUnfinishedRow().
|
private |
handle for the current position in document
Definition at line 221 of file TableManager.hxx.
Referenced by getHandle(), and setHandle().
|
private |
depth of the previous cell
Definition at line 294 of file TableManager.hxx.
Referenced by endParagraphGroup(), and getTableDepthDifference().
|
private |
depth of the current cell
Definition at line 289 of file TableManager.hxx.
Referenced by cellDepth(), endParagraphGroup(), getTableDepth(), getTableDepthDifference(), handle0x7(), inCell(), and startParagraphGroup().
|
private |
handler for resolveCurrentTable
Definition at line 312 of file TableManager.hxx.
Referenced by closeCell(), endLevel(), resolveCurrentTable(), and setHandler().
|
private |
Definition at line 302 of file TableManager.hxx.
Referenced by endLevel(), and startLevel().
|
private |
Definition at line 223 of file TableManager.hxx.
Referenced by cellProps(), endLevel(), endParagraphGroup(), getCellProps(), getRowProps(), getTableExceptionProps(), getTableProps(), insertRowProps(), insertTableProps(), isInCell(), isRowEnd(), resolveCurrentTable(), setCellEnd(), setInCell(), setRowEnd(), startLevel(), startParagraphGroup(), and tableExceptionProps().
|
private |
stack of table data
for each level of nested tables there is one frame in the stack
Definition at line 301 of file TableManager.hxx.
Referenced by closeCell(), endLevel(), endParagraphGroup(), endRow(), ensureOpenCell(), findColumn(), findColumnCell(), getCurrentGridBefore(), getCurrentGridSpans(), getGridAfter(), getGridBefore(), isInTable(), openCell(), resolveCurrentTable(), setCurrentGridAfter(), setCurrentGridBefore(), setCurrentGridSpan(), and startLevel().