Lines Matching refs:aGrfSize
347 Size aGrfSize, aBound = GetGraphicDefaultSize(); in Insert() local
348 GetGrfSize( aGrfSize ); in Insert()
352 aGrfSize.Width() += pFrmMgr->CalcWidthBorder(); in Insert()
353 aGrfSize.Height()+= pFrmMgr->CalcHeightBorder(); in Insert()
355 const BigInt aTempWidth( aGrfSize.Width() ); in Insert()
356 const BigInt aTempHeight( aGrfSize.Height()); in Insert()
359 if( aGrfSize.Width() > aBound.Width() ) in Insert()
361 aGrfSize.Width() = aBound.Width(); in Insert()
362 aGrfSize.Height() = ((BigInt)aBound.Width()) * aTempHeight / aTempWidth; in Insert()
365 if( aGrfSize.Height() > aBound.Height() ) in Insert()
367 aGrfSize.Height() = aBound.Height(); in Insert()
368 aGrfSize.Width() = ((BigInt)aBound.Height()) * aTempWidth / aTempHeight; in Insert()
370 pFrmMgr->SetSize( aGrfSize ); in Insert()