Lines Matching refs:rSelection
483 void TreeControlPeer::ChangeNodesSelection( const Any& rSelection, bool bSelect, bool bSetSelection… in ChangeNodesSelection() argument
495 if( rSelection.hasValue() ) in ChangeNodesSelection()
497 switch( rSelection.getValueTypeClass() ) in ChangeNodesSelection()
501 rSelection >>= xTempNode; in ChangeNodesSelection()
511 … if( rSelection.getValueType() == ::getCppuType( (const Sequence< Reference< XTreeNode > > *) 0 ) ) in ChangeNodesSelection()
513 …ference< XTreeNode > >& rSeq( *(const Sequence< Reference< XTreeNode > > *)rSelection.getValue() ); in ChangeNodesSelection()
545 sal_Bool SAL_CALL TreeControlPeer::select( const Any& rSelection ) throw (IllegalArgumentException,… in select() argument
548 ChangeNodesSelection( rSelection, true, true ); in select()
606 sal_Bool SAL_CALL TreeControlPeer::addSelection( const Any& rSelection ) throw (IllegalArgumentExce… in addSelection() argument
608 ChangeNodesSelection( rSelection, true, false ); in addSelection()
614 void SAL_CALL TreeControlPeer::removeSelection( const Any& rSelection ) throw (IllegalArgumentExcep… in removeSelection() argument
616 ChangeNodesSelection( rSelection, false, false ); in removeSelection()
640 TreeSelectionEnumeration( std::list< Any >& rSelection );
650 TreeSelectionEnumeration::TreeSelectionEnumeration( std::list< Any >& rSelection ) in TreeSelectionEnumeration() argument
652 maSelection.swap( rSelection ); in TreeSelectionEnumeration()