Lines Matching refs:rRect

1007 void SplitWindow::ImplDrawBack( SplitWindow* pWindow, const Rectangle& rRect,  in ImplDrawBack()  argument
1012 Point aPos = rRect.TopLeft(); in ImplDrawBack()
1015 pWindow->IntersectClipRegion( rRect ); in ImplDrawBack()
1018 aPos.X() = rRect.Left(); in ImplDrawBack()
1024 while ( aPos.X() < rRect.Right() ); in ImplDrawBack()
1027 while ( aPos.Y() < rRect.Bottom() ); in ImplDrawBack()
1031 pWindow->DrawWallpaper( rRect, *pWall ); in ImplDrawBack()
1762 void SplitWindow::ImplGetButtonRect( Rectangle& rRect, long nEx, sal_Bool bTest ) const in ImplGetButtonRect() argument
1785 rRect.Left() = mnLeftBorder+nEx; in ImplGetButtonRect()
1786 rRect.Top() = mnDY-mnBottomBorder-nSplitSize; in ImplGetButtonRect()
1787 rRect.Right() = rRect.Left()+SPLITWIN_SPLITSIZEAUTOHIDE; in ImplGetButtonRect()
1788 rRect.Bottom() = mnDY-mnBottomBorder-1; in ImplGetButtonRect()
1791 rRect.Top() -= mnTopBorder; in ImplGetButtonRect()
1792 rRect.Bottom() += mnBottomBorder; in ImplGetButtonRect()
1797 rRect.Left() = mnLeftBorder+nEx; in ImplGetButtonRect()
1798 rRect.Top() = mnTopBorder; in ImplGetButtonRect()
1799 rRect.Right() = rRect.Left()+SPLITWIN_SPLITSIZEAUTOHIDE; in ImplGetButtonRect()
1800 rRect.Bottom() = mnTopBorder+nSplitSize-1; in ImplGetButtonRect()
1803 rRect.Top() -= mnTopBorder; in ImplGetButtonRect()
1804 rRect.Bottom() += mnBottomBorder; in ImplGetButtonRect()
1809 rRect.Left() = mnDX-mnRightBorder-nSplitSize; in ImplGetButtonRect()
1810 rRect.Top() = mnTopBorder+nEx; in ImplGetButtonRect()
1811 rRect.Right() = mnDX-mnRightBorder-1; in ImplGetButtonRect()
1812 rRect.Bottom() = rRect.Top()+SPLITWIN_SPLITSIZEAUTOHIDE; in ImplGetButtonRect()
1815 rRect.Left() -= mnLeftBorder; in ImplGetButtonRect()
1816 rRect.Right() += mnRightBorder; in ImplGetButtonRect()
1821 rRect.Left() = mnLeftBorder; in ImplGetButtonRect()
1822 rRect.Top() = mnTopBorder+nEx; in ImplGetButtonRect()
1823 rRect.Right() = mnLeftBorder+nSplitSize-1; in ImplGetButtonRect()
1824 rRect.Bottom() = rRect.Top()+SPLITWIN_SPLITSIZEAUTOHIDE; in ImplGetButtonRect()
1827 rRect.Left() -= mnLeftBorder; in ImplGetButtonRect()
1828 rRect.Right() += mnRightBorder; in ImplGetButtonRect()
1835 void SplitWindow::ImplGetAutoHideRect( Rectangle& rRect, sal_Bool bTest ) const in ImplGetAutoHideRect() argument
1847 rRect = aRect; in ImplGetAutoHideRect()
1852 void SplitWindow::ImplGetFadeInRect( Rectangle& rRect, sal_Bool bTest ) const in ImplGetFadeInRect() argument
1859 rRect = aRect; in ImplGetFadeInRect()
1864 void SplitWindow::ImplGetFadeOutRect( Rectangle& rRect, sal_Bool ) const in ImplGetFadeOutRect() argument
1871 rRect = aRect; in ImplGetFadeOutRect()
1876 void SplitWindow::ImplDrawButtonRect( const Rectangle& rRect, long nSize ) in ImplDrawButtonRect() argument
1882 long nLeft = rRect.Left(); in ImplDrawButtonRect()
1883 long nRight = rRect.Right(); in ImplDrawButtonRect()
1884 long nCenter = rRect.Center().Y(); in ImplDrawButtonRect()
1885 long nEx1 = nLeft+((rRect.GetWidth()-nSize)/2)-2; in ImplDrawButtonRect()
1888 DrawLine( Point( rRect.Left(), rRect.Top() ), Point( rRect.Left(), rRect.Bottom() ) ); in ImplDrawButtonRect()
1889 DrawLine( Point( rRect.Left(), rRect.Top() ), Point( rRect.Right(), rRect.Top() ) ); in ImplDrawButtonRect()
1891 DrawLine( Point( rRect.Right(), rRect.Top() ), Point( rRect.Right(), rRect.Bottom() ) ); in ImplDrawButtonRect()
1892 DrawLine( Point( rRect.Left(), rRect.Bottom() ), Point( rRect.Right(), rRect.Bottom() ) ); in ImplDrawButtonRect()
1912 long nTop = rRect.Top(); in ImplDrawButtonRect()
1913 long nBottom = rRect.Bottom(); in ImplDrawButtonRect()
1914 long nCenter = rRect.Center().X(); in ImplDrawButtonRect()
1915 long nEx1 = nTop+((rRect.GetHeight()-nSize)/2)-2; in ImplDrawButtonRect()
1918 DrawLine( Point( rRect.Left(), rRect.Top() ), Point( rRect.Right(), rRect.Top() ) ); in ImplDrawButtonRect()
1919 DrawLine( Point( rRect.Left(), rRect.Top() ), Point( rRect.Left(), rRect.Bottom() ) ); in ImplDrawButtonRect()
1921 DrawLine( Point( rRect.Right(), rRect.Top() ), Point( rRect.Right(), rRect.Bottom() ) ); in ImplDrawButtonRect()
1922 DrawLine( Point( rRect.Left(), rRect.Bottom() ), Point( rRect.Right(), rRect.Bottom() ) ); in ImplDrawButtonRect()
2083 void SplitWindow::ImplDrawGrip( const Rectangle& rRect, sal_Bool bHorz, sal_Bool bLeft ) in ImplDrawGrip() argument
2087 if( rRect.IsInside( GetPointerPosPixel() ) ) in ImplDrawGrip()
2089 DrawWallpaper( rRect, Wallpaper( Color( COL_WHITE ) ) ); in ImplDrawGrip()
2090 DrawSelectionBackground( rRect, 2, sal_False, sal_False, sal_False ); in ImplDrawGrip()
2095 int width = (int) (0.5 * rRect.getWidth() + 0.5); in ImplDrawGrip()
2096 int i = rRect.nLeft + (rRect.getWidth() - width) / 2; in ImplDrawGrip()
2098 const int y = rRect.nTop + 1; in ImplDrawGrip()
2114 int height = (int) (0.5 * rRect.getHeight() + 0.5); in ImplDrawGrip()
2115 int i = rRect.nTop + (rRect.getHeight() - height) / 2; in ImplDrawGrip()
2117 const int x = rRect.nLeft + 1; in ImplDrawGrip()