LibreOffice Module writerfilter (master) 1
Classes | Public Member Functions | Protected Member Functions | Private Types | Private Member Functions | Private Attributes | List of all members
writerfilter::dmapper::TableManager Class Reference

The table manager. More...

#include <TableManager.hxx>

Inheritance diagram for writerfilter::dmapper::TableManager:
[legend]
Collaboration diagram for writerfilter::dmapper::TableManager:
[legend]

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
 
- Public Member Functions inherited from SvRefBase
 SvRefBase ()
 
 SvRefBase (const SvRefBase &)
 
SvRefBaseoperator= (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...
 
- Protected Member Functions inherited from SvRefBase
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_tmTableDataStack
 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< DomainMapperTableHandlermpTableDataHandler
 handler for resolveCurrentTable More...
 

Detailed Description

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.

Member Typedef Documentation

◆ T_p

typedef tools::SvRef< css::uno::Reference<css::text::XTextRange> > writerfilter::dmapper::TableManager::T_p
private

Definition at line 284 of file TableManager.hxx.

Constructor & Destructor Documentation

◆ TableManager()

writerfilter::dmapper::TableManager::TableManager ( )

◆ ~TableManager()

writerfilter::dmapper::TableManager::~TableManager ( )
default

Member Function Documentation

◆ cellDepth()

void writerfilter::dmapper::TableManager::cellDepth ( sal_uInt32  nDepth)
private

Set the table depth of the current cell.

Parameters
nDepththe 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().

◆ cellProps()

void writerfilter::dmapper::TableManager::cellProps ( const TablePropertyMapPtr pProps)
virtual

◆ clearData()

void writerfilter::dmapper::TableManager::clearData ( )
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().

◆ closeCell()

void writerfilter::dmapper::TableManager::closeCell ( const css::uno::Reference< css::text::XTextRange > &  rHandle)
private

◆ endCell()

void writerfilter::dmapper::TableManager::endCell ( )
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().

◆ endLevel()

void writerfilter::dmapper::TableManager::endLevel ( )
virtual

◆ endOfCellAction()

void writerfilter::dmapper::TableManager::endOfCellAction ( )
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().

◆ endOfRowAction()

void writerfilter::dmapper::TableManager::endOfRowAction ( )
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().

◆ endParagraphGroup()

void writerfilter::dmapper::TableManager::endParagraphGroup ( )

◆ endRow()

void writerfilter::dmapper::TableManager::endRow ( )
private

◆ endTable()

void writerfilter::dmapper::TableManager::endTable ( )
inline

Signal that the next paragraph definitely won't be part of any table.

Definition at line 425 of file TableManager.hxx.

References setRowEnd().

◆ ensureOpenCell()

void writerfilter::dmapper::TableManager::ensureOpenCell ( const TablePropertyMapPtr pProps)
private

◆ findColumn()

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().

◆ findColumnCell()

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().

◆ getCellProps()

TablePropertyMapPtr const & writerfilter::dmapper::TableManager::getCellProps ( ) const
inlineprotected

◆ getCurrentGridBefore()

sal_uInt32 writerfilter::dmapper::TableManager::getCurrentGridBefore ( )

◆ getCurrentGridSpans()

std::vector< sal_uInt32 > writerfilter::dmapper::TableManager::getCurrentGridSpans ( )

◆ getGridAfter()

sal_uInt32 writerfilter::dmapper::TableManager::getGridAfter ( sal_uInt32  nRow)

◆ getGridBefore()

sal_uInt32 writerfilter::dmapper::TableManager::getGridBefore ( sal_uInt32  nRow)

◆ getHandle()

const css::uno::Reference< css::text::XTextRange > & writerfilter::dmapper::TableManager::getHandle ( ) const
inlineprotected

Definition at line 273 of file TableManager.hxx.

References mCurHandle.

Referenced by endParagraphGroup(), and ensureOpenCell().

◆ getRowProps()

TablePropertyMapPtr const & writerfilter::dmapper::TableManager::getRowProps ( ) const
inline

◆ getTableDepth()

sal_uInt32 writerfilter::dmapper::TableManager::getTableDepth ( ) const
inlineprotected

◆ getTableDepthDifference()

sal_Int32 writerfilter::dmapper::TableManager::getTableDepthDifference ( ) const
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().

◆ getTableExceptionProps()

TablePropertyMapPtr const & writerfilter::dmapper::TableManager::getTableExceptionProps ( ) const
inline

◆ getTableProps()

TablePropertyMapPtr writerfilter::dmapper::TableManager::getTableProps ( )
inlineprotected

◆ handle()

void writerfilter::dmapper::TableManager::handle ( const css::uno::Reference< css::text::XTextRange > &  rHandle)

◆ handle0x7()

void writerfilter::dmapper::TableManager::handle0x7 ( )

◆ inCell()

void writerfilter::dmapper::TableManager::inCell ( )
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().

◆ insertRowProps()

void writerfilter::dmapper::TableManager::insertRowProps ( const TablePropertyMapPtr pProps)
virtual

◆ insertTableProps()

void writerfilter::dmapper::TableManager::insertTableProps ( const TablePropertyMapPtr pProps)
virtual

◆ isCellLastParaAfterAutospacing()

bool writerfilter::dmapper::TableManager::isCellLastParaAfterAutospacing ( ) const
inline

Definition at line 523 of file TableManager.hxx.

References m_bCellLastParaAfterAutospacing.

◆ isIgnore()

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().

◆ isInCell()

bool writerfilter::dmapper::TableManager::isInCell ( ) const
inlineprotected

◆ isInTable()

bool writerfilter::dmapper::TableManager::isInTable ( )

◆ isRowEnd()

bool writerfilter::dmapper::TableManager::isRowEnd ( ) const
inlineprotected

◆ openCell()

void writerfilter::dmapper::TableManager::openCell ( const css::uno::Reference< css::text::XTextRange > &  rHandle,
const TablePropertyMapPtr pProps 
)
private

◆ resolveCurrentTable()

void writerfilter::dmapper::TableManager::resolveCurrentTable ( )
private

◆ setCellEnd()

void writerfilter::dmapper::TableManager::setCellEnd ( bool  bCellEnd)
inlineprotected

◆ setCellLastParaAfterAutospacing()

void writerfilter::dmapper::TableManager::setCellLastParaAfterAutospacing ( bool  bIsAfterAutospacing)

◆ setCurrentGridAfter()

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().

◆ setCurrentGridBefore()

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().

◆ setCurrentGridSpan()

void writerfilter::dmapper::TableManager::setCurrentGridSpan ( sal_uInt32  nGridSpan,
bool  bFirstCell = false 
)

◆ setHandle()

void writerfilter::dmapper::TableManager::setHandle ( const css::uno::Reference< css::text::XTextRange > &  rHandle)
inlineprotected

Definition at line 278 of file TableManager.hxx.

References mCurHandle.

Referenced by handle().

◆ setHandler()

void writerfilter::dmapper::TableManager::setHandler ( const tools::SvRef< DomainMapperTableHandler > &  pTableDataHandler)

Set handler for resolveCurrentTable.

Parameters
pTableDataHandlerthe handler

Definition at line 508 of file TableManager.cxx.

References mpTableDataHandler.

Referenced by writerfilter::dmapper::DomainMapper_Impl::DomainMapper_Impl().

◆ setInCell()

void writerfilter::dmapper::TableManager::setInCell ( bool  bInCell)
inlineprotected

◆ setKeepUnfinishedRow()

void writerfilter::dmapper::TableManager::setKeepUnfinishedRow ( bool  bKeep)
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().

◆ setRowEnd()

void writerfilter::dmapper::TableManager::setRowEnd ( bool  bRowEnd)
inlineprotected

◆ setTableStartsAtCellStart()

void writerfilter::dmapper::TableManager::setTableStartsAtCellStart ( bool  bTableStartsAtCellStart)

Definition at line 592 of file TableManager.cxx.

References m_bTableStartsAtCellStart.

◆ sprm()

bool writerfilter::dmapper::TableManager::sprm ( Sprm rSprm)
virtual

Handle an SPRM at current handle.

Parameters
rSprmthe 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().

◆ startLevel()

void writerfilter::dmapper::TableManager::startLevel ( )
virtual

◆ startParagraphGroup()

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().

◆ tableExceptionProps()

void writerfilter::dmapper::TableManager::tableExceptionProps ( const TablePropertyMapPtr pProps)
virtual

◆ text()

void writerfilter::dmapper::TableManager::text ( const sal_uInt8 data,
size_t  len 
)

Handle 8 bit text at current handle.

Parameters
dataarray of characters
lennumber of characters to handle

Definition at line 228 of file TableManager.cxx.

References handle0x7().

◆ utext()

void writerfilter::dmapper::TableManager::utext ( const sal_uInt8 data,
size_t  len 
)

Handle 16 bit text at current handle.

Parameters
dataarray of characters
lennumber of characters to handle

Definition at line 216 of file TableManager.cxx.

References handle0x7().

Member Data Documentation

◆ m_bCellLastParaAfterAutospacing

bool writerfilter::dmapper::TableManager::m_bCellLastParaAfterAutospacing
private

◆ m_bTableStartsAtCellStart

bool writerfilter::dmapper::TableManager::m_bTableStartsAtCellStart
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().

◆ mbKeepUnfinishedRow

bool writerfilter::dmapper::TableManager::mbKeepUnfinishedRow
private

Definition at line 303 of file TableManager.hxx.

Referenced by endLevel(), and setKeepUnfinishedRow().

◆ mCurHandle

css::uno::Reference<css::text::XTextRange> writerfilter::dmapper::TableManager::mCurHandle
private

handle for the current position in document

Definition at line 221 of file TableManager.hxx.

Referenced by getHandle(), and setHandle().

◆ mnTableDepth

sal_uInt32 writerfilter::dmapper::TableManager::mnTableDepth
private

depth of the previous cell

Definition at line 294 of file TableManager.hxx.

Referenced by endParagraphGroup(), and getTableDepthDifference().

◆ mnTableDepthNew

sal_uInt32 writerfilter::dmapper::TableManager::mnTableDepthNew
private

depth of the current cell

Definition at line 289 of file TableManager.hxx.

Referenced by cellDepth(), endParagraphGroup(), getTableDepth(), getTableDepthDifference(), handle0x7(), inCell(), and startParagraphGroup().

◆ mpTableDataHandler

tools::SvRef<DomainMapperTableHandler> writerfilter::dmapper::TableManager::mpTableDataHandler
private

handler for resolveCurrentTable

Definition at line 312 of file TableManager.hxx.

Referenced by closeCell(), endLevel(), resolveCurrentTable(), and setHandler().

◆ mpUnfinishedRow

RowData::Pointer_t writerfilter::dmapper::TableManager::mpUnfinishedRow
private

Definition at line 302 of file TableManager.hxx.

Referenced by endLevel(), and startLevel().

◆ mState

TableManagerState writerfilter::dmapper::TableManager::mState
private

◆ mTableDataStack

std::stack<TableData::Pointer_t> writerfilter::dmapper::TableManager::mTableDataStack
private

The documentation for this class was generated from the following files: