Lines Matching refs:rSelection
716 void Edit::ImplDelete( const Selection& rSelection, sal_uInt8 nDirection, sal_uInt8 nMode ) in ImplDelete() argument
721 if ( !rSelection.Len() && in ImplDelete()
722 (((rSelection.Min() == 0) && (nDirection == EDIT_DEL_LEFT)) || in ImplDelete()
723 ((rSelection.Max() == aText.Len()) && (nDirection == EDIT_DEL_RIGHT))) ) in ImplDelete()
728 Selection aSelection( rSelection ); in ImplDelete()
2623 void Edit::SetSelection( const Selection& rSelection ) in SetSelection() argument
2632 ImplSetSelection( rSelection ); in SetSelection()
2637 void Edit::ImplSetSelection( const Selection& rSelection, sal_Bool bPaint ) in ImplSetSelection() argument
2640 mpSubEdit->ImplSetSelection( rSelection ); in ImplSetSelection()
2643 if ( rSelection != maSelection ) in ImplSetSelection()
2646 Selection aNew( rSelection ); in ImplSetSelection()
2803 void Edit::SetText( const XubString& rStr, const Selection& rSelection ) in SetText() argument
2806 mpSubEdit->SetText( rStr, rSelection ); in SetText()
2808 ImplSetText( rStr, &rSelection ); in SetText()