Lines Matching refs:m_aSelectedRows

340             if ( m_aSelectedRows.size() > size_t( m_pModel->getRowCount() ) )  in impl_checkInvariants()
342 for ( ::std::vector< RowPos >::const_iterator selRow = m_aSelectedRows.begin(); in impl_checkInvariants()
343 selRow != m_aSelectedRows.end(); in impl_checkInvariants()
458 ,m_aSelectedRows ( ) in TableControl_Impl()
546 … bool const selectionChanged = lcl_adjustSelectedRows( m_aSelectedRows, i_first, insertedRows ); in rowsInserted()
600 if ( lcl_adjustSelectedRows( m_aSelectedRows, i_last + 1, i_first - i_last - 1 ) ) in rowsRemoved()
1581 if ( m_aSelectedRows.size()>0 ) in dispatchAction()
1584 m_aSelectedRows.clear(); in dispatchAction()
1589 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1592 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1608 if(m_aSelectedRows.size()>0) in dispatchAction()
1611 m_aSelectedRows.clear(); in dispatchAction()
1616 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1621 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1693 int pos = getRowSelectedNumber(m_aSelectedRows, m_nCurRow); in dispatchAction()
1697 m_aSelectedRows.erase(m_aSelectedRows.begin()+pos); in dispatchAction()
1698 if(m_aSelectedRows.empty() && m_nAnchor != -1) in dispatchAction()
1703 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1721 if(m_aSelectedRows.size()>0) in dispatchAction()
1728 m_aSelectedRows.clear(); in dispatchAction()
1729 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1735 int prevRow = getRowSelectedNumber(m_aSelectedRows, m_nCurRow); in dispatchAction()
1736 int nextRow = getRowSelectedNumber(m_aSelectedRows, m_nCurRow-1); in dispatchAction()
1745 if(nextRow>-1 && m_aSelectedRows[nextRow] == m_nCurRow) in dispatchAction()
1747 m_aSelectedRows.erase(m_aSelectedRows.begin()+prevRow); in dispatchAction()
1752 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1760 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1762 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1775 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1777 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1782 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1804 if(m_aSelectedRows.size()>0) in dispatchAction()
1811 m_aSelectedRows.clear(); in dispatchAction()
1812 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1818 int prevRow = getRowSelectedNumber(m_aSelectedRows, m_nCurRow); in dispatchAction()
1819 int nextRow = getRowSelectedNumber(m_aSelectedRows, m_nCurRow+1); in dispatchAction()
1828 if(nextRow>-1 && m_aSelectedRows[nextRow] == m_nCurRow) in dispatchAction()
1830 m_aSelectedRows.erase(m_aSelectedRows.begin()+prevRow); in dispatchAction()
1835 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1843 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1845 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1856 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1858 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1863 m_aSelectedRows.push_back(m_nCurRow); in dispatchAction()
1891 m_aSelectedRows.push_back(iter); in dispatchAction()
1917 m_aSelectedRows.push_back(iter); in dispatchAction()
2157 for ( ::std::vector< RowPos >::iterator selRow = m_aSelectedRows.begin(); in invalidateSelectedRows()
2158 selRow != m_aSelectedRows.end(); in invalidateSelectedRows()
2481 …return ::std::find( m_aSelectedRows.begin(), m_aSelectedRows.end(), i_row ) != m_aSelectedRows.end… in isRowSelected()
2487 if ( i_selectionIndex < m_aSelectedRows.size() ) in getSelectedRowIndex()
2488 return m_aSelectedRows[ i_selectionIndex ]; in getSelectedRowIndex()
2552 …::std::vector< RowPos >::iterator selPos = ::std::find( m_aSelectedRows.begin(), m_aSelectedRows.e… in markRowAsDeselected()
2553 if ( selPos == m_aSelectedRows.end() ) in markRowAsDeselected()
2556 m_aSelectedRows.erase( selPos ); in markRowAsDeselected()
2572 if ( !m_aSelectedRows.empty() ) in markRowAsSelected()
2574 …OSL_ENSURE( m_aSelectedRows.size() == 1, "TableControl::markRowAsSelected: SingleSelection with mo… in markRowAsSelected()
2575 m_aSelectedRows[0] = i_rowIndex; in markRowAsSelected()
2581 m_aSelectedRows.push_back( i_rowIndex ); in markRowAsSelected()
2595 if ( m_aSelectedRows.empty() ) in markAllRowsAsDeselected()
2598 m_aSelectedRows.clear(); in markAllRowsAsDeselected()
2610 if ( m_aSelectedRows.size() == size_t( m_pModel->getRowCount() ) ) in markAllRowsAsSelected()
2622 m_aSelectedRows.clear(); in markAllRowsAsSelected()
2624 m_aSelectedRows.push_back(i); in markAllRowsAsSelected()