Lines Matching refs:aContentRect

1381     NSRect aContentRect = [NSWindow contentRectForFrameRect: aFrameRect styleMask: mnStyleMask];  in SetPosSize()  local
1393 … nX = mpParent->maGeometry.nWidth - static_cast<long int>( aContentRect.size.width-1) - nX; in SetPosSize()
1401 CocoaToVCL( aContentRect ); in SetPosSize()
1407 if( nWidth != aContentRect.size.width || nHeight != aContentRect.size.height ) in SetPosSize()
1413 aContentRect.origin.x = nX + aParentContentRect.origin.x; in SetPosSize()
1415 aContentRect.origin.y = nY + aParentContentRect.origin.y; in SetPosSize()
1419 aContentRect.size.width = nWidth; in SetPosSize()
1421 aContentRect.size.height = nHeight; in SetPosSize()
1423 VCLToCocoa( aContentRect ); in SetPosSize()
1427 …[mpNSWindow setFrame: [NSWindow frameRectForContentRect: aContentRect styleMask: mnStyleMask] disp… in SetPosSize()
1646 NSRect aContentRect = [NSWindow contentRectForFrameRect: aFrameRect styleMask: mnStyleMask]; in UpdateFrameGeometry() local
1651 NSRect aTrackRect = { NSZeroPoint, aContentRect.size }; in UpdateFrameGeometry()
1656 CocoaToVCL( aContentRect ); in UpdateFrameGeometry()
1658 maGeometry.nX = static_cast<int>(aContentRect.origin.x); in UpdateFrameGeometry()
1659 maGeometry.nY = static_cast<int>(aContentRect.origin.y); in UpdateFrameGeometry()
1661 …maGeometry.nLeftDecoration = static_cast<unsigned int>(aContentRect.origin.x - aFrameRect.origin.x… in UpdateFrameGeometry()
1663 (aContentRect.origin.x + aContentRect.size.width)); in UpdateFrameGeometry()
1665 …maGeometry.nTopDecoration = static_cast<unsigned int>(aContentRect.origin.y - aFrameRect.origin.y); in UpdateFrameGeometry()
1667 (aContentRect.origin.y + aContentRect.size.height)); in UpdateFrameGeometry()
1669 maGeometry.nWidth = static_cast<unsigned int>(aContentRect.size.width); in UpdateFrameGeometry()
1670 maGeometry.nHeight = static_cast<unsigned int>(aContentRect.size.height); in UpdateFrameGeometry()