Lines Matching refs:iWidth
58 int iWidth = pScreenInfo->dwWidth; in winCreateBoundingWindowFullScreen() local
106 iWidth, /* Right edge */ in winCreateBoundingWindowFullScreen()
134 int iWidth = pScreenInfo->dwUserWidth; in winCreateBoundingWindowWindowed() local
256 iWidth += 2 * GetSystemMetrics(SM_CXSIZEFRAME); in winCreateBoundingWindowWindowed()
266 iWidth += 2 * GetSystemMetrics(SM_CXFIXEDFRAME); in winCreateBoundingWindowWindowed()
280 iWidth = GetSystemMetrics(SM_CXVIRTUALSCREEN); in winCreateBoundingWindowWindowed()
293 if (iWidth > (rcWorkArea.right - rcWorkArea.left)) in winCreateBoundingWindowWindowed()
294 iWidth = rcWorkArea.right - rcWorkArea.left; in winCreateBoundingWindowWindowed()
302 "height: %d\n", iWidth, iHeight); in winCreateBoundingWindowWindowed()
323 iWidth, /* Right edge */ in winCreateBoundingWindowWindowed()
465 int iWidth, iHeight; in winGetWorkArea() local
499 iWidth = GetSystemMetrics(SM_CXVIRTUALSCREEN); in winGetWorkArea()
502 winDebug("winGetWorkArea - Virtual screen is %d x %d\n", iWidth, iHeight); in winGetWorkArea()
530 prcWorkArea->right = prcWorkArea->left + iWidth - iPrimaryNonWorkAreaWidth; in winGetWorkArea()