Lines Matching refs:tableCell
70 TableCell const tableCell = i_tableControl.hitTest( aPoint ); in handleMouseMove() local
71 if ( ( tableCell.nRow == ROW_COL_HEADERS ) && ( tableCell.eArea == ColumnDivider ) ) in handleMouseMove()
120 TableCell const tableCell( i_tableControl.hitTest( i_event.GetPosPixel() ) ); in handleMouseDown() local
121 if ( tableCell.nRow == ROW_COL_HEADERS ) in handleMouseDown()
123 if ( ( tableCell.nColumn != COL_INVALID ) in handleMouseDown()
124 && ( tableCell.eArea == ColumnDivider ) in handleMouseDown()
127 m_nResizingColumn = tableCell.nColumn; in handleMouseDown()
204 TableCell const tableCell( i_tableControl.hitTest( i_event.GetPosPixel() ) ); in handleMouseDown() local
205 if ( tableCell.nRow >= 0 ) in handleMouseDown()
209 i_tableControl.activateCell( tableCell.nColumn, tableCell.nRow ); in handleMouseDown()
226 TableCell const tableCell = i_tableControl.hitTest( i_event.GetPosPixel() ); in handleMouseUp() local
227 if ( tableCell.nRow >= 0 ) in handleMouseUp()
266 TableCell const tableCell( i_tableControl.hitTest( i_event.GetPosPixel() ) ); in handleMouseDown() local
267 if ( ( tableCell.nRow != ROW_COL_HEADERS ) || ( tableCell.nColumn < 0 ) ) in handleMouseDown()
272 m_nActiveColumn = tableCell.nColumn; in handleMouseDown()
282 TableCell const tableCell( i_tableControl.hitTest( i_event.GetPosPixel() ) ); in handleMouseUp() local
283 if ( ( tableCell.nRow == ROW_COL_HEADERS ) && ( tableCell.nColumn == m_nActiveColumn ) ) in handleMouseUp()