Lines Matching refs:m_nRowCount

317         if ( m_pModel->getRowCount() != m_nRowCount )  in impl_checkInvariants()
323 …if ( !lcl_checkLimitsExclusive_OrDefault_OrFallback( m_nTopRow, (RowPos)-1, m_nRowCount, getModel(… in impl_checkInvariants()
326 …if ( !lcl_checkLimitsExclusive_OrDefault_OrFallback( m_nCurRow, (RowPos)-1, m_nRowCount, getModel(… in impl_checkInvariants()
411 if ( m_pVScroll->GetRange().Max() != m_nRowCount ) in impl_checkInvariants()
446 ,m_nRowCount ( 0 ) in TableControl_Impl()
513 if ( m_nRowCount ) m_nCurRow = 0; in setModel()
549 m_nRowCount = m_pModel->getRowCount(); in rowsInserted()
588 lastRemovedRow = m_nRowCount - 1; in rowsRemoved()
605 m_nRowCount = m_pModel->getRowCount(); in rowsRemoved()
608 if ( m_nCurRow >= m_nRowCount ) in rowsRemoved()
610 if ( m_nRowCount > 0 ) in rowsRemoved()
611 goTo( m_nCurColumn, m_nRowCount - 1 ); in rowsRemoved()
618 else if ( m_nRowCount == 0 ) in rowsRemoved()
820 m_nRowCount = m_pModel->getRowCount(); in impl_ni_updateCachedModelValues()
821 if ( m_nTopRow >= m_nRowCount ) in impl_ni_updateCachedModelValues()
822 m_nTopRow = ( m_nRowCount > 0 ) ? m_nRowCount - 1 : 0; in impl_ni_updateCachedModelValues()
1225 …OSL_ENSURE( ( m_nRowCount == m_pModel->getRowCount() ) && ( m_nColumnCount == m_pModel->getColumnC… in impl_ni_relayout()
1234 … m_nTopRow, eVertScrollbar, aDataCellPlayground.GetHeight(), m_nRowHeightPixel * m_nRowCount ); in impl_ni_relayout()
1256 … m_nTopRow, eVertScrollbar, aDataCellPlayground.GetHeight(), m_nRowHeightPixel * m_nRowCount ); in impl_ni_relayout()
1337 m_nRowCount, // range in impl_ni_positionChildWindows()
1438 m_nRowCount = m_pModel->getRowCount(); in doPaintContent()
1480 if ( m_nTopRow + nActualRows > m_nRowCount ) in doPaintContent()
1481 nActualRows = m_nRowCount - m_nTopRow; in doPaintContent()
1586 if ( m_nCurRow < m_nRowCount-1 ) in dispatchAction()
1600 if ( m_nCurRow < m_nRowCount - 1 ) in dispatchAction()
1646 if ( ( m_nCurColumn == m_nColumnCount - 1 ) && ( m_nCurRow < m_nRowCount - 1 ) ) in dispatchAction()
1663 bSuccess = goTo( m_nCurColumn, m_nRowCount - 1 ); in dispatchAction()
1675 … RowPos nNewRow = ::std::min( m_nRowCount - 1, m_nCurRow + impl_getVisibleRows( false ) ); in dispatchAction()
1685 bSuccess = goTo( m_nColumnCount - 1, m_nRowCount - 1 ); in dispatchAction()
1823 if(m_nCurRow<m_nRowCount-1) in dispatchAction()
1841 if(m_nCurRow<m_nRowCount-1) in dispatchAction()
1854 if(m_nCurRow<m_nRowCount-1) in dispatchAction()
1912 invalidateSelectedRegion( m_nCurRow, m_nRowCount-1 ); in dispatchAction()
1914 while(iter<=m_nRowCount) in dispatchAction()
1920 m_nCurRow = m_nRowCount-1; in dispatchAction()
1923 ensureVisible(m_nCurColumn, m_nRowCount-1, false); in dispatchAction()
2197 if ( ( m_nTopRow + nVisibleRows > m_nRowCount ) in checkCursorPosition()
2198 && ( m_nRowCount >= nVisibleRows ) in checkCursorPosition()
2259 || ( _nRow < 0 ) || ( _nRow >= m_nRowCount ) in goTo()
2280 && ( _nRow >= 0 ) && ( _nRow < m_nRowCount ), in ensureVisible()
2326 ::std::min( (RowPos)( m_nTopRow + _nRowDelta ), (RowPos)( m_nRowCount - 1 ) ), in impl_ni_ScrollRows()