Lines Matching refs:aGrfSize
334 const Size aGrfSize( LogicToPixel( maGraphic.GetPrefSize(), maGraphic.GetPrefMapMode() ) ); in Paint() local
336 const Point aGrfPos( ( aOutSize.Width() - aGrfSize.Width() ) >> 1, in Paint()
337 ( aOutSize.Height() - aGrfSize.Height() ) >> 1 ); in Paint()
340 maGraphic.StartAnimation( this , aGrfPos, aGrfSize ); in Paint()
342 maGraphic.Draw( this, aGrfPos, aGrfSize ); in Paint()
374 Size aGrfSize( maSizePixel ); in GraphicFilterDialog() local
378 aGrfSize.Width() && aGrfSize.Height() ) in GraphicFilterDialog()
380 const double fGrfWH = (double) aGrfSize.Width() / aGrfSize.Height(); in GraphicFilterDialog()
385 aGrfSize.Width() = (long) ( aPreviewSize.Height() * fGrfWH ); in GraphicFilterDialog()
386 aGrfSize.Height()= aPreviewSize.Height(); in GraphicFilterDialog()
390 aGrfSize.Width() = aPreviewSize.Width(); in GraphicFilterDialog()
391 aGrfSize.Height()= (long) ( aPreviewSize.Width() / fGrfWH); in GraphicFilterDialog()
394 mfScaleX = (double) aGrfSize.Width() / maSizePixel.Width(); in GraphicFilterDialog()
395 mfScaleY = (double) aGrfSize.Height() / maSizePixel.Height(); in GraphicFilterDialog()
401 if( aBmpEx.Scale( aGrfSize, BMP_SCALE_INTERPOLATE ) ) in GraphicFilterDialog()