Lines Matching refs:rRect

349 void Window::ShowFocus( const Rectangle& rRect )  in ShowFocus()  argument
367 if ( *(pWinData->mpFocusRect) == rRect ) in ShowFocus()
376 ImplInvertFocus( rRect ); in ShowFocus()
379 pWinData->mpFocusRect = new Rectangle( rRect ); in ShowFocus()
381 *(pWinData->mpFocusRect) = rRect; in ShowFocus()
434 void Window::Invert( const Rectangle& rRect, sal_uInt16 nFlags ) in Invert() argument
441 Rectangle aRect( ImplLogicToDevicePixel( rRect ) ); in Invert()
508 void Window::ShowTracking( const Rectangle& rRect, sal_uInt16 nFlags ) in ShowTracking() argument
518 if ( (*(pWinData->mpTrackRect) == rRect) && in ShowTracking()
525 InvertTracking( rRect, nFlags ); in ShowTracking()
529 pWinData->mpTrackRect = new Rectangle( rRect ); in ShowTracking()
531 *(pWinData->mpTrackRect) = rRect; in ShowTracking()
553 void Window::InvertTracking( const Rectangle& rRect, sal_uInt16 nFlags ) in InvertTracking() argument
557 Rectangle aRect( ImplLogicToDevicePixel( rRect ) ); in InvertTracking()
1574 void Window::ImplOutputToFrame( Rectangle& rRect ) in ImplOutputToFrame() argument
1576 rRect.Left()+=mnOutOffX; in ImplOutputToFrame()
1577 rRect.Top()+=mnOutOffY; in ImplOutputToFrame()
1578 rRect.Right()+=mnOutOffX; in ImplOutputToFrame()
1579 rRect.Bottom()+=mnOutOffY; in ImplOutputToFrame()
1582 void Window::ImplFrameToOutput( Rectangle& rRect ) in ImplFrameToOutput() argument
1584 rRect.Left()-=mnOutOffX; in ImplFrameToOutput()
1585 rRect.Top()-=mnOutOffY; in ImplFrameToOutput()
1586 rRect.Right()-=mnOutOffX; in ImplFrameToOutput()
1587 rRect.Bottom()-=mnOutOffY; in ImplFrameToOutput()