Lines Matching refs:hitRow
107 RowPos const hitRow = m_rTableControl.getRowAtPoint( aMousePos ); in RequestHelp() local
113 if ( hitRow == ROW_COL_HEADERS ) in RequestHelp()
117 else if ( ( hitRow >= 0 ) && ( hitRow < pTableModel->getRowCount() ) ) in RequestHelp()
120 pTableModel->getCellToolTip( hitCol, hitRow, aCellToolTip ); in RequestHelp()
124 pTableModel->getCellContent( hitCol, hitRow, aCellToolTip ); in RequestHelp()
127 …bool const activeCell = ( hitRow == m_rTableControl.getCurrentRow() ) && ( hitCol == m_rTableContr… in RequestHelp()
128 bool const selectedCell = m_rTableControl.isRowSelected( hitRow ); in RequestHelp()
131 TableCellGeometry const aCell( m_rTableControl, aWindowRect, hitCol, hitRow ); in RequestHelp()
135 …if ( pRenderer->FitsIntoCell( aCellToolTip, hitCol, hitRow, activeCell, selectedCell, *this, aCell… in RequestHelp()
139 … pTableModel->getRenderer()->GetFormattedCellString( aCellToolTip, hitCol, hitRow, sHelpText ); in RequestHelp()
197 RowPos const hitRow = m_rTableControl.getRowAtPoint( aPoint ); in MouseButtonDown() local
198 bool const wasRowSelected = m_rTableControl.isRowSelected( hitRow ); in MouseButtonDown()
207 bool const isRowSelected = m_rTableControl.isRowSelected( hitRow ); in MouseButtonDown()