LibreOffice Module writerfilter (master) 1
Public Types | Public Member Functions | Private Types | Private Attributes | List of all members
writerfilter::dmapper::RowData Class Referencefinal

Class to handle data of a table row. More...

#include <TableData.hxx>

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

Public Types

typedef tools::SvRef< RowDataPointer_t
 

Public Member Functions

 RowData ()
 
 RowData (const RowData &rRowData)
 
void addCell (const css::uno::Reference< css::text::XTextRange > &start, TablePropertyMapPtr pProps, bool bAddBefore=false)
 Add a cell to the row. More...
 
void endCell (const css::uno::Reference< css::text::XTextRange > &end)
 
bool isCellOpen () const
 
void insertProperties (TablePropertyMapPtr pProperties)
 Add properties to the row. More...
 
void insertCellProperties (TablePropertyMapPtr pProps)
 Add properties to the last cell of the row. More...
 
unsigned int getCellCount () const
 Return number of cells in the row. More...
 
const css::uno::Reference< css::text::XTextRange > & getCellStart (unsigned int i) const
 Return start handle of a cell in the row. More...
 
const css::uno::Reference< css::text::XTextRange > & getCellEnd (unsigned int i) const
 Return end handle of a cell in the row. More...
 
TablePropertyMapPtr const & getCellProperties (unsigned int i) const
 Return the properties of a cell in the row. More...
 
const TablePropertyMapPtrgetProperties () const
 Return properties of the row. More...
 
sal_uInt32 getGridBefore () const
 
void setGridBefore (sal_uInt32 nSkipGrids)
 
sal_uInt32 getGridAfter () const
 
void setGridAfter (sal_uInt32 nSkipGrids)
 
sal_uInt32 getGridSpan (sal_uInt32 i)
 
std::vector< sal_uInt32 > getGridSpans ()
 
void setCurrentGridSpan (sal_uInt32 nSpan, bool bFirstCell=false)
 
- 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
 

Private Types

typedef ::std::vector< CellData::Pointer_tCells
 

Private Attributes

Cells mCells
 the cell data of the row More...
 
TablePropertyMapPtr mpProperties
 the properties of the row More...
 
sal_uInt32 m_nGridBefore
 number of grid columns in the parent table's table grid which must be skipped before the contents of this table row are added to the parent table More...
 
sal_uInt32 m_nGridAfter
 number of grid columns in the parent table's table grid which shall be left after the last cell in the table row More...
 

Additional Inherited Members

- Protected Member Functions inherited from SvRefBase
virtual ~SvRefBase () COVERITY_NOEXCEPT_FALSE
 

Detailed Description

Class to handle data of a table row.

Definition at line 109 of file TableData.hxx.

Member Typedef Documentation

◆ Cells

Definition at line 111 of file TableData.hxx.

◆ Pointer_t

Definition at line 127 of file TableData.hxx.

Constructor & Destructor Documentation

◆ RowData() [1/2]

writerfilter::dmapper::RowData::RowData ( )
inline

Definition at line 129 of file TableData.hxx.

◆ RowData() [2/2]

writerfilter::dmapper::RowData::RowData ( const RowData rRowData)
inline

Definition at line 135 of file TableData.hxx.

Member Function Documentation

◆ addCell()

void writerfilter::dmapper::RowData::addCell ( const css::uno::Reference< css::text::XTextRange > &  start,
TablePropertyMapPtr  pProps,
bool  bAddBefore = false 
)
inline

Add a cell to the row.

Parameters
startthe start handle of the cell
endthe end handle of the cell
pPropsthe properties of the cell
bAddBeforetrue: add an empty cell at beginning of the row for gridBefore

Definition at line 150 of file TableData.hxx.

References mCells, and start.

◆ endCell()

void writerfilter::dmapper::RowData::endCell ( const css::uno::Reference< css::text::XTextRange > &  end)
inline

Definition at line 162 of file TableData.hxx.

References end, and mCells.

◆ getCellCount()

unsigned int writerfilter::dmapper::RowData::getCellCount ( ) const
inline

Return number of cells in the row.

Definition at line 201 of file TableData.hxx.

References mCells.

◆ getCellEnd()

const css::uno::Reference< css::text::XTextRange > & writerfilter::dmapper::RowData::getCellEnd ( unsigned int  i) const
inline

Return end handle of a cell in the row.

Parameters
iindex of the cell

Definition at line 221 of file TableData.hxx.

References i, and mCells.

◆ getCellProperties()

TablePropertyMapPtr const & writerfilter::dmapper::RowData::getCellProperties ( unsigned int  i) const
inline

Return the properties of a cell in the row.

Parameters
iindex of the cell

Definition at line 231 of file TableData.hxx.

References i, and mCells.

◆ getCellStart()

const css::uno::Reference< css::text::XTextRange > & writerfilter::dmapper::RowData::getCellStart ( unsigned int  i) const
inline

Return start handle of a cell in the row.

Parameters
iindex of the cell

Definition at line 211 of file TableData.hxx.

References i, and mCells.

◆ getGridAfter()

sal_uInt32 writerfilter::dmapper::RowData::getGridAfter ( ) const
inline

Definition at line 246 of file TableData.hxx.

References m_nGridAfter.

◆ getGridBefore()

sal_uInt32 writerfilter::dmapper::RowData::getGridBefore ( ) const
inline

Definition at line 244 of file TableData.hxx.

References m_nGridBefore.

◆ getGridSpan()

sal_uInt32 writerfilter::dmapper::RowData::getGridSpan ( sal_uInt32  i)
inline

Definition at line 248 of file TableData.hxx.

References i, and mCells.

◆ getGridSpans()

std::vector< sal_uInt32 > writerfilter::dmapper::RowData::getGridSpans ( )
inline

Definition at line 249 of file TableData.hxx.

References mCells.

◆ getProperties()

const TablePropertyMapPtr & writerfilter::dmapper::RowData::getProperties ( ) const
inline

Return properties of the row.

Definition at line 239 of file TableData.hxx.

References mpProperties.

◆ insertCellProperties()

void writerfilter::dmapper::RowData::insertCellProperties ( TablePropertyMapPtr  pProps)
inline

Add properties to the last cell of the row.

Definition at line 192 of file TableData.hxx.

References mCells.

◆ insertProperties()

void writerfilter::dmapper::RowData::insertProperties ( TablePropertyMapPtr  pProperties)
inline

Add properties to the row.

Parameters
pPropertiesthe properties to set

Definition at line 178 of file TableData.hxx.

References tools::SvRef< typename T >::get(), and mpProperties.

◆ isCellOpen()

bool writerfilter::dmapper::RowData::isCellOpen ( ) const
inline

Definition at line 168 of file TableData.hxx.

References mCells.

◆ setCurrentGridSpan()

void writerfilter::dmapper::RowData::setCurrentGridSpan ( sal_uInt32  nSpan,
bool  bFirstCell = false 
)
inline

Definition at line 256 of file TableData.hxx.

References mCells.

◆ setGridAfter()

void writerfilter::dmapper::RowData::setGridAfter ( sal_uInt32  nSkipGrids)
inline

Definition at line 247 of file TableData.hxx.

References m_nGridAfter.

◆ setGridBefore()

void writerfilter::dmapper::RowData::setGridBefore ( sal_uInt32  nSkipGrids)
inline

Definition at line 245 of file TableData.hxx.

References m_nGridBefore.

Member Data Documentation

◆ m_nGridAfter

sal_uInt32 writerfilter::dmapper::RowData::m_nGridAfter
private

number of grid columns in the parent table's table grid which shall be left after the last cell in the table row

Definition at line 124 of file TableData.hxx.

Referenced by getGridAfter(), and setGridAfter().

◆ m_nGridBefore

sal_uInt32 writerfilter::dmapper::RowData::m_nGridBefore
private

number of grid columns in the parent table's table grid which must be skipped before the contents of this table row are added to the parent table

Definition at line 123 of file TableData.hxx.

Referenced by getGridBefore(), and setGridBefore().

◆ mCells

Cells writerfilter::dmapper::RowData::mCells
private

◆ mpProperties

TablePropertyMapPtr writerfilter::dmapper::RowData::mpProperties
mutableprivate

the properties of the row

Definition at line 121 of file TableData.hxx.

Referenced by getProperties(), and insertProperties().


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