Lines Matching refs:nWidth

156     maGeometry.nWidth = static_cast<unsigned int>(aVisibleRect.size.width * 0.8);  in initWindowAndView()
172 maGeometry.nWidth = static_cast<int>(aVisibleRect.size.width); in initWindowAndView()
212 const NSRect aRect = { NSZeroPoint, NSMakeSize( maGeometry.nWidth, maGeometry.nHeight )}; in initWindowAndView()
376 … nNewX = mpParent->maGeometry.nX + ((long)mpParent->maGeometry.nWidth - (long)maGeometry.nWidth)/2; in initShow()
379 if( long(nNewX + maGeometry.nWidth) > aScreenRect.Right() ) in initShow()
380 nNewX = aScreenRect.Right() - maGeometry.nWidth-1; in initShow()
393 long nNewX = (aScreenRect.GetWidth() - maGeometry.nWidth)/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
493 mnMinWidth = nWidth; in SetMinClientSize()
500 nWidth += maGeometry.nLeftDecoration + maGeometry.nRightDecoration; in SetMinClientSize()
503 const NSSize aSize = NSMakeSize( nWidth, nHeight); in SetMinClientSize()
513 void AquaSalFrame::SetMaxClientSize( long nWidth, long nHeight ) in SetMaxClientSize() argument
518 mnMaxWidth = nWidth; in SetMaxClientSize()
525 nWidth += maGeometry.nLeftDecoration + maGeometry.nRightDecoration; in SetMaxClientSize()
529 if (nWidth>32767) nWidth=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()
565 rWidth = maGeometry.nWidth; in GetClientSize()
1355 void AquaSalFrame::SetPosSize(long nX, long nY, long nWidth, long nHeight, sal_uInt16 nFlags) in SetPosSize() argument
1391 nX = mpParent->maGeometry.nWidth - nWidth-1 - nX; in SetPosSize()
1393 … nX = mpParent->maGeometry.nWidth - static_cast<long int>( aContentRect.size.width-1) - nX; in SetPosSize()
1407 if( nWidth != aContentRect.size.width || nHeight != aContentRect.size.height ) in SetPosSize()
1419 aContentRect.size.width = nWidth; in SetPosSize()
1607 return mpGraphics ? mpGraphics->getBitmap( 0, 0, maGeometry.nWidth, maGeometry.nHeight ) : NULL; in SnapShot()
1669 maGeometry.nWidth = static_cast<unsigned int>(aContentRect.size.width); 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()