Lines Matching refs:nHeight

949         int nHeight;  in ImplSalFrameFullScreenPos()  local
950 ImplSalCalcFullScreenSize( pFrame, nX, nY, nWidth, nHeight ); in ImplSalFrameFullScreenPos()
952 nX, nY, nWidth, nHeight, in ImplSalFrameFullScreenPos()
1419 void WinSalFrame::SetMinClientSize( long nWidth, long nHeight ) in SetMinClientSize() argument
1422 mnMinHeight = nHeight; in SetMinClientSize()
1425 void WinSalFrame::SetMaxClientSize( long nWidth, long nHeight ) in SetMaxClientSize() argument
1428 mnMaxHeight = nHeight; in SetMaxClientSize()
1433 void WinSalFrame::SetPosSize( long nX, long nY, long nWidth, long nHeight, in SetPosSize() argument
1476 nHeight = aClientRect.bottom-aClientRect.top; in SetPosSize()
1483 aWinRect.bottom = (int)nHeight-1; in SetPosSize()
1487 nHeight = aWinRect.bottom - aWinRect.top + 1; in SetPosSize()
1562 (nParentHeight-GetSystemMetrics( SM_CYFIXEDFRAME ) <= nHeight) ) in SetPosSize()
1571 nY = (nParentHeight-nHeight)/2 + aParentRect.top; in SetPosSize()
1589 nY = ((aRect.bottom-aRect.top)-nHeight)/2 + aRect.top; in SetPosSize()
1622 if ( nY+nHeight > nScreenY+nScreenHeight ) in SetPosSize()
1623 nY = (nScreenY+nScreenHeight) - nHeight; in SetPosSize()
1635 SetWindowPos( mhWnd, HWND_TOP, nX, nY, (int)nWidth, (int)nHeight, nPosFlags ); in SetPosSize()
1835 rHeight = maGeometry.nHeight; in GetClientSize()
1848 int nHeight; in SetWindowState() local
1894 nHeight = (int)pState->mnHeight + nTopDeco + nBottomDeco; in SetWindowState()
1896 nHeight = aWinRect.bottom-aWinRect.top; in SetWindowState()
1902 if( nWidth > nScreenWidth || nHeight > nScreenHeight ) in SetWindowState()
1907 if ( nY+nHeight > nScreenY+nScreenHeight ) in SetWindowState()
1908 nY = (nScreenY+nScreenHeight) - nHeight; in SetWindowState()
1971 aStateRect.bottom = nY+nHeight; in SetWindowState()
1976 maGeometry.nX, maGeometry.nY, maGeometry.nWidth, maGeometry.nHeight, in SetWindowState()
1981 nX, nY, nWidth, nHeight, in SetWindowState()
1991 aPlacement.rcNormalPosition.bottom = nY+nHeight-nScreenY; in SetWindowState()
3250 void WinSalFrame::UnionClipRegion( long nX, long nY, long nWidth, long nHeight ) in UnionClipRegion() argument
3258 long nBottom = nY + nHeight; in UnionClipRegion()
4205 pFrame->maGeometry.nHeight = aRect.bottom - aRect.top; in SetMaximizedFrameGeometry()
4251 int nHeight = aRect.bottom - aRect.top in UpdateFrameGeometry() local
4254 pFrame->maGeometry.nHeight = nHeight < 0 ? 0 : nHeight; in UpdateFrameGeometry()
4732 int nHeight = pFrame->mnMinHeight; in ImplHandleMinMax() local
4734 ImplSalAddBorder( pFrame, nWidth, nHeight ); in ImplHandleMinMax()
4738 if ( pMinMax->ptMinTrackSize.y < nHeight ) in ImplHandleMinMax()
4739 pMinMax->ptMinTrackSize.y = nHeight; in ImplHandleMinMax()
4745 int nHeight = pFrame->mnMaxHeight; in ImplHandleMinMax() local
4747 ImplSalAddBorder( pFrame, nWidth, nHeight ); in ImplHandleMinMax()
4749 … if( nWidth > 0 && nHeight > 0 ) // protect against int overflow due to INT_MAX initialisation in ImplHandleMinMax()
4753 if ( pMinMax->ptMaxTrackSize.y > nHeight ) in ImplHandleMinMax()
4754 pMinMax->ptMaxTrackSize.y = nHeight; in ImplHandleMinMax()