Lines Matching refs:aSelection

641         ESelection aSelection = pView->GetSelection();  in Command()  local
642 aSelection.Adjust(); in Command()
646 aSelection.nEndPos = aSelection.nStartPos; in Command()
647 aSelection.nStartPos += pData->GetStart(); in Command()
648 aSelection.nEndPos += pData->GetEnd(); in Command()
652 aSelection.nStartPos = pData->GetStart(); in Command()
653 aSelection.nEndPos = pData->GetEnd(); in Command()
655 pView->SetSelection( aSelection ); in Command()
661 ESelection aSelection = pView->GetSelection(); in Command() local
662 aSelection.Adjust(); in Command()
664 if ( aSelection.nStartPara != aSelection.nEndPara ) in Command()
666 xub_StrLen aParaLen = pEditEngine->GetTextLen( aSelection.nStartPara ); in Command()
667 aSelection.nEndPara = aSelection.nStartPara; in Command()
668 aSelection.nEndPos = aParaLen; in Command()
669 pView->SetSelection( aSelection ); in Command()
2188 EditSelection aSelection; in ImpMoveParagraphs() local
2192 aSelection = aEditDoc.GetStartPaM(); in ImpMoveParagraphs()
2193 return aSelection; in ImpMoveParagraphs()
2256 aSelection.Min().SetNode( pTmpPortion->GetNode() ); in ImpMoveParagraphs()
2258 aSelection.Max().SetNode( pTmpPortion->GetNode() ); in ImpMoveParagraphs()
2259 aSelection.Max().SetIndex( pTmpPortion->GetNode()->Len() ); in ImpMoveParagraphs()
2295 return aSelection; in ImpMoveParagraphs()
3687 EditSelection aSelection( rSelection ); in CreateTransferable() local
3688 aSelection.Adjust( GetEditDoc() ); in CreateTransferable()
3694 XubString aText( GetSelected( aSelection ) ); in CreateTransferable()
3699 WriteBin( pDataObj->GetStream(), aSelection, sal_True ); in CreateTransferable()
3703 ((ImpEditEngine*)this)->WriteRTF( pDataObj->GetRTFStream(), aSelection ); in CreateTransferable()
3706 if ( ( aSelection.Min().GetNode() == aSelection.Max().GetNode() ) in CreateTransferable()
3707 && ( aSelection.Max().GetIndex() == (aSelection.Min().GetIndex()+1) ) ) in CreateTransferable()
3709 const EditCharAttrib* pAttr = aSelection.Min().GetNode()->GetCharAttribs(). in CreateTransferable()
3710 FindFeature( aSelection.Min().GetIndex() ); in CreateTransferable()
3712 ( pAttr->GetStart() == aSelection.Min().GetIndex() ) && in CreateTransferable()