Lines Matching refs:nHeight

157     maGeometry.nHeight = static_cast<unsigned int>(aVisibleRect.size.height * 0.8);  in initWindowAndView()
173 maGeometry.nHeight = static_cast<int>(aVisibleRect.size.height); in initWindowAndView()
212 const NSRect aRect = { NSZeroPoint, NSMakeSize( maGeometry.nWidth, maGeometry.nHeight )}; in initWindowAndView()
229 io_rRect.origin.y = maGeometry.nHeight - (io_rRect.origin.y+io_rRect.size.height); in CocoaToVCL()
237 io_rRect.origin.y = maGeometry.nHeight - (io_rRect.origin.y+io_rRect.size.height); in VCLToCocoa()
245 io_rPoint.y = maGeometry.nHeight - io_rPoint.y; in CocoaToVCL()
253 io_rPoint.y = maGeometry.nHeight - io_rPoint.y; in VCLToCocoa()
381 …NewY = mpParent->maGeometry.nY + ((long)mpParent->maGeometry.nHeight - (long)maGeometry.nHeight)/2; in initShow()
385 nNewY = aScreenRect.Bottom() - maGeometry.nHeight-1; in initShow()
394 long nNewY = (aScreenRect.GetHeight() - maGeometry.nHeight)/2; in initShow()
405 SalPaintEvent aPaintEvt( 0, 0, maGeometry.nWidth, maGeometry.nHeight, true ); in SendPaintEvent()
488 void AquaSalFrame::SetMinClientSize( long nWidth, long nHeight ) in SetMinClientSize() argument
494 mnMinHeight = nHeight; in SetMinClientSize()
501 nHeight += maGeometry.nTopDecoration + maGeometry.nBottomDecoration; in SetMinClientSize()
503 const NSSize aSize = NSMakeSize( nWidth, nHeight); in SetMinClientSize()
513 void AquaSalFrame::SetMaxClientSize( long nWidth, long nHeight ) in SetMaxClientSize() argument
519 mnMaxHeight = nHeight; in SetMaxClientSize()
526 nHeight += maGeometry.nTopDecoration + maGeometry.nBottomDecoration; in SetMaxClientSize()
530 if (nHeight>32767) nHeight=32767; in SetMaxClientSize()
532 const NSSize aSize = NSMakeSize( nWidth, nHeight); in SetMaxClientSize()
542 void AquaSalFrame::SetClientSize( long nWidth, long nHeight ) in SetClientSize() argument
549 const NSSize aSize = NSMakeSize( nWidth, nHeight); in SetClientSize()
566 rHeight = maGeometry.nHeight; in GetClientSize()
1355 void AquaSalFrame::SetPosSize(long nX, long nY, long nWidth, long nHeight, sal_uInt16 nFlags) in SetPosSize() argument
1407 if( nWidth != aContentRect.size.width || nHeight != aContentRect.size.height ) in SetPosSize()
1421 aContentRect.size.height = nHeight; in SetPosSize()
1607 return mpGraphics ? mpGraphics->getBitmap( 0, 0, maGeometry.nWidth, maGeometry.nHeight ) : NULL; in SnapShot()
1670 maGeometry.nHeight = static_cast<unsigned int>(aContentRect.size.height); in UpdateFrameGeometry()
1751 void AquaSalFrame::UnionClipRegion( long nX, long nY, long nWidth, long nHeight ) in UnionClipRegion() argument
1756 if( nWidth && nHeight ) in UnionClipRegion()
1758 NSRect aRect = NSMakeRect( nX, nY, nWidth, nHeight); in UnionClipRegion()