Lines Matching refs:aClipRec

298 		Rectangle aClipRec( aInvalidRec );  in UpdateViews()  local
300 aClipRec.Intersection( aVisArea ); in UpdateViews()
302 if ( !aClipRec.IsEmpty() ) in UpdateViews()
305 aClipRec = pView->pImpEditView->GetWindowPos( aClipRec ); in UpdateViews()
308 Paint( pView->pImpEditView, aClipRec, 0, sal_True ); in UpdateViews()
310 pView->GetWindow()->Invalidate( aClipRec ); in UpdateViews()
2858 void ImpEditEngine::Paint( OutputDevice* pOutDev, Rectangle aClipRec, Point aStartPos, sal_Bool bSt… in Paint() argument
2918 ( !IsVertical() && ( ( aStartPos.Y() + nParaHeight ) > aClipRec.Top() ) ) || in Paint()
2919 ( IsVertical() && ( ( aStartPos.X() - nParaHeight ) < aClipRec.Right() ) ) ) ) in Paint()
2961 if ( ( !IsVertical() && ( aStartPos.Y() > aClipRec.Top() ) ) in Paint()
2962 || ( IsVertical() && aStartPos.X() < aClipRec.Right() ) ) in Paint()
2996 if ( aTmpPos.X() > aClipRec.Right() ) in Paint()
3002 if ( aTmpPos.Y() > aClipRec.Bottom() ) in Paint()
3646 if ( !IsVertical() && ( aStartPos.Y() >= aClipRec.Bottom() ) ) in Paint()
3648 else if ( IsVertical() && ( aStartPos.X() <= aClipRec.Left() ) ) in Paint()
3695 if ( !IsVertical() && ( aStartPos.Y() > aClipRec.Bottom() ) ) in Paint()
3697 if ( IsVertical() && ( aStartPos.X() < aClipRec.Left() ) ) in Paint()
3713 Rectangle aClipRec( pView->GetOutputArea() ); in Paint() local
3714 aClipRec.Intersection( rRec ); in Paint()
3720 Rectangle aClipRecPixel( pTarget->LogicToPixel( aClipRec ) ); in Paint()
3796 Rectangle aTmpRec( Point( 0, 0 ), aClipRec.GetSize() ); in Paint()
3798 aClipRec = pTarget->PixelToLogic( aClipRecPixel ); in Paint()
3802 aStartPos = aClipRec.TopLeft(); in Paint()
3809 aStartPos = aClipRec.TopRight(); in Paint()
3811 aStartPos.X() = aClipRec.GetSize().Width() + aDocPos.Y(); in Paint()
3833 aClipRec.Move( -aViewPos.X(), -aViewPos.Y() ); in Paint()
3840 pTarget->DrawOutDev( aClipRec.TopLeft(), aClipRec.GetSize(), in Paint()
3841 Point(0,0), aClipRec.GetSize(), *pVDev ); in Paint()
3878 if ( aClipRec.Left() > nMaxX ) in Paint()
3880 if ( aClipRec.Right() > nMaxX ) in Paint()
3881 aClipRec.Right() = nMaxX; in Paint()
3886 pTarget->IntersectClipRegion( aClipRec ); in Paint()
3888 Paint( pTarget, aClipRec, aStartPos ); in Paint()