Lines Matching refs:aPlacement
1295 SWP aPlacement; in SetWindowState() local
1296 WinQueryWindowPos( mhWndFrame, &aPlacement ); in SetWindowState()
1303 aPlacement.fl = SWP_HIDE; in SetWindowState()
1329 aPlacement.fl = SWP_SHOWMINIMIZED; in SetWindowState()
1332 aPlacement.fl = SWP_SHOWMAXIMIZED; in SetWindowState()
1334 aPlacement.fl = SWP_RESTORE; in SetWindowState()
1341 if ( !(aPlacement.fl & SWP_MINIMIZE) in SetWindowState()
1342 && !( aPlacement.fl & SWP_MAXIMIZE ) in SetWindowState()
1343 && (!bVisible || (aPlacement.fl == SWP_RESTORE)) ) in SetWindowState()
1359 aPlacement.x = nX; in SetWindowState()
1360 aPlacement.y = nScreenHeight-(nY+nHeight); in SetWindowState()
1361 aPlacement.cx = nWidth; in SetWindowState()
1362 aPlacement.cy = nHeight; in SetWindowState()
1364 WinSetWindowPos( mhWndFrame, 0, aPlacement.x, aPlacement.y, in SetWindowState()
1365 aPlacement.cx, aPlacement.cy, aPlacement.fl ); in SetWindowState()