Lines Matching refs:m_rTableControl

50         ,m_rTableControl( _rTableControl )  in TableDataWindow()
68 m_rTableControl.doPaintContent( rUpdateRect ); in Paint()
107 RowPos const hitRow = m_rTableControl.getRowAtPoint( aMousePos ); in RequestHelp()
108 ColPos const hitCol = m_rTableControl.getColAtPoint( aMousePos ); in RequestHelp()
110 PTableModel const pTableModel( m_rTableControl.getModel() ); 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()
186 if ( !m_rTableControl.getInputHandler()->MouseMove( m_rTableControl, rMEvt ) ) in MouseMove()
197 RowPos const hitRow = m_rTableControl.getRowAtPoint( aPoint ); in MouseButtonDown()
198 bool const wasRowSelected = m_rTableControl.isRowSelected( hitRow ); in MouseButtonDown()
199 size_t const nPrevSelRowCount = m_rTableControl.getSelectedRowCount(); in MouseButtonDown()
201 if ( !m_rTableControl.getInputHandler()->MouseButtonDown( m_rTableControl, rMEvt ) ) in MouseButtonDown()
207 bool const isRowSelected = m_rTableControl.isRowSelected( hitRow ); in MouseButtonDown()
208 size_t const nCurSelRowCount = m_rTableControl.getSelectedRowCount(); in MouseButtonDown()
218 if ( !m_rTableControl.getInputHandler()->MouseButtonUp( m_rTableControl, rMEvt ) ) in MouseButtonUp()
221 m_rTableControl.getAntiImpl().GrabFocus(); in MouseButtonUp()
236 …nDone = HandleScrollCommand( rCEvt, m_rTableControl.getHorzScrollbar(), m_rTableControl.getVertScr… in Notify()