Lines Matching refs:aWinRect

830     RECT    aWinRect;  in ImplSalAddBorder()  local
831 aWinRect.left = 0; in ImplSalAddBorder()
832 aWinRect.right = width-1; in ImplSalAddBorder()
833 aWinRect.top = 0; in ImplSalAddBorder()
834 aWinRect.bottom = height-1; in ImplSalAddBorder()
835 AdjustWindowRectEx( &aWinRect, GetWindowStyle( pFrame->mhWnd ), in ImplSalAddBorder()
837 width = aWinRect.right - aWinRect.left + 1; in ImplSalAddBorder()
838 height = aWinRect.bottom - aWinRect.top + 1; in ImplSalAddBorder()
1479 RECT aWinRect; in SetPosSize() local
1480 aWinRect.left = 0; in SetPosSize()
1481 aWinRect.right = (int)nWidth-1; in SetPosSize()
1482 aWinRect.top = 0; in SetPosSize()
1483 aWinRect.bottom = (int)nHeight-1; in SetPosSize()
1484 AdjustWindowRectEx( &aWinRect, GetWindowStyle( mhWnd ), in SetPosSize()
1486 nWidth = aWinRect.right - aWinRect.left + 1; in SetPosSize()
1487 nHeight = aWinRect.bottom - aWinRect.top + 1; in SetPosSize()
1525 nX += aWinRect.left; in SetPosSize()
1527 nY += aWinRect.top; in SetPosSize()
1863 RECT aWinRect; in SetWindowState() local
1864 GetWindowRect( mhWnd, &aWinRect ); in SetWindowState()
1868 RECT aRect2 = aWinRect; in SetWindowState()
1871 long nTopDeco = abs( aWinRect.top - aRect2.top ); in SetWindowState()
1872 long nLeftDeco = abs( aWinRect.left - aRect2.left ); in SetWindowState()
1873 long nBottomDeco = abs( aWinRect.bottom - aRect2.bottom ); in SetWindowState()
1874 long nRightDeco = abs( aWinRect.right - aRect2.right ); in SetWindowState()
1884 nX = aWinRect.left; in SetWindowState()
1888 nY = aWinRect.top; in SetWindowState()
1892 nWidth = aWinRect.right-aWinRect.left; in SetWindowState()
1896 nHeight = aWinRect.bottom-aWinRect.top; in SetWindowState()