43 WPXTableCell(
unsigned char colSpan,
unsigned char rowSpan,
unsigned char borderBits);
55 void insertCell(
unsigned char colSpan,
unsigned char rowSpan,
unsigned char borderBits);
77 int adjacencyBitCell,
int adjacencyBitBoundCells);
std::vector< WPXTableCell * > _getCellsRightAdjacent(int i, int j)
Definition WPXTable.cpp:127
std::vector< WPXTableCell * > _getCellsBottomAdjacent(int i, int j)
Definition WPXTable.cpp:107
WPXTable()
Definition WPXTable.h:52
void _makeCellBordersConsistent(WPXTableCell &cell, std::vector< WPXTableCell * > &adjacentCells, int adjacencyBitCell, int adjacencyBitBoundCells)
Definition WPXTable.cpp:83
const WPXTableCell * getCell(size_t i, size_t j)
Definition WPXTable.h:56
void insertRow()
Definition WPXTable.cpp:45
~WPXTable()
Definition WPXTable.cpp:41
bool isEmpty() const
Definition WPXTable.h:70
unsigned getColumnCount(unsigned row) const
Definition WPXTable.h:66
unsigned getRowCount() const
Definition WPXTable.h:62
void makeBordersConsistent()
Definition WPXTable.cpp:60
void insertCell(unsigned char colSpan, unsigned char rowSpan, unsigned char borderBits)
Definition WPXTable.cpp:50
std::vector< std::vector< WPXTableCell > > m_tableRows
Definition WPXTable.h:82
unsigned char m_borderBits
Definition WPXTable.h:46
unsigned char m_colSpan
Definition WPXTable.h:44
unsigned char m_rowSpan
Definition WPXTable.h:45
WPXTableCell(unsigned char colSpan, unsigned char rowSpan, unsigned char borderBits)
Definition WPXTable.cpp:34