Lines Matching refs:aNewRect

822 				Rectangle	aNewRect( aOldPos, aSize );  in ImplTracking()  local
844 aNewRect.Left() += aMousePos.X(); in ImplTracking()
845 if ( aNewRect.GetWidth() < nMinWidth ) in ImplTracking()
846 aNewRect.Left() = aNewRect.Right()-nMinWidth+1; in ImplTracking()
847 else if ( aNewRect.GetWidth() > nMaxWidth ) in ImplTracking()
848 aNewRect.Left() = aNewRect.Right()-nMaxWidth+1; in ImplTracking()
852 aNewRect.Right() += aMousePos.X(); in ImplTracking()
853 if ( aNewRect.GetWidth() < nMinWidth ) in ImplTracking()
854 aNewRect.Right() = aNewRect.Left()+nMinWidth+1; in ImplTracking()
855 else if ( aNewRect.GetWidth() > nMaxWidth ) in ImplTracking()
856 aNewRect.Right() = aNewRect.Left()+nMaxWidth+1; in ImplTracking()
860 aNewRect.Top() += aMousePos.Y(); in ImplTracking()
861 if ( aNewRect.GetHeight() < nMinHeight ) in ImplTracking()
862 aNewRect.Top() = aNewRect.Bottom()-nMinHeight+1; in ImplTracking()
863 else if ( aNewRect.GetHeight() > nMaxHeight ) in ImplTracking()
864 aNewRect.Top() = aNewRect.Bottom()-nMaxHeight+1; in ImplTracking()
868 aNewRect.Bottom() += aMousePos.Y(); in ImplTracking()
869 if ( aNewRect.GetHeight() < nMinHeight ) in ImplTracking()
870 aNewRect.Bottom() = aNewRect.Top()+nMinHeight+1; in ImplTracking()
871 else if ( aNewRect.GetHeight() > nMaxHeight ) in ImplTracking()
872 aNewRect.Bottom() = aNewRect.Top()+nMaxHeight+1; in ImplTracking()
879 aSize = aNewRect.GetSize(); in ImplTracking()
894 aNewRect.Left() = aNewRect.Right()-aSize.Width()+1; in ImplTracking()
896 aNewRect.Right() = aNewRect.Left()+aSize.Width()-1; in ImplTracking()
898 aNewRect.Top() = aNewRect.Bottom()-aSize.Height()+1; in ImplTracking()
900 aNewRect.Bottom() = aNewRect.Top()+aSize.Height()-1; in ImplTracking()
906 if( aOldPos != aNewRect.TopLeft() ) in ImplTracking()
907 pBorderWindow->SetPosSizePixel( aNewRect.Left(), aNewRect.Top(), in ImplTracking()
908 aNewRect.GetWidth(), aNewRect.GetHeight(), WINDOW_POSSIZE_POSSIZE ); in ImplTracking()
910 pBorderWindow->SetPosSizePixel( aNewRect.Left(), aNewRect.Top(), in ImplTracking()
911 aNewRect.GetWidth(), aNewRect.GetHeight(), WINDOW_POSSIZE_SIZE ); in ImplTracking()
916 pData->maMouseOff.X() += aNewRect.GetWidth()-nOldWidth; in ImplTracking()
918 pData->maMouseOff.Y() += aNewRect.GetHeight()-nOldHeight; in ImplTracking()
922 pData->mnTrackX = aNewRect.Left(); in ImplTracking()
923 pData->mnTrackY = aNewRect.Top(); in ImplTracking()
924 pData->mnTrackWidth = aNewRect.GetWidth(); in ImplTracking()
925 pData->mnTrackHeight = aNewRect.GetHeight(); in ImplTracking()
926 …ShowTracking( Rectangle( pBorderWindow->ScreenToOutputPixel( aNewRect.TopLeft() ), aNewRect.GetSiz… in ImplTracking()