Lines Matching refs:aSize

1236 		Size aSize;  in updatePreview()  local
1239aSize.Width() = maSize.Width > aFixedBitmapSize.Width() ? maSize.Width : aFixedBitmapSize.Width(); in updatePreview()
1240 aSize.Width() /= static_cast<long int>(fXRatio); in updatePreview()
1244aSize.Width() = maSize.Width < aFixedBitmapSize.Width() ? maSize.Width : aFixedBitmapSize.Width(); in updatePreview()
1245 aSize.Width() /= static_cast<long int>(fXRatio); in updatePreview()
1250aSize.Height() = maSize.Height > aFixedBitmapSize.Height() ? maSize.Height : aFixedBitmapSize.Hei… in updatePreview()
1251 aSize.Height() /= static_cast<long int>(fYRatio); in updatePreview()
1255aSize.Height() = maSize.Height < aFixedBitmapSize.Height() ? maSize.Height : aFixedBitmapSize.Hei… in updatePreview()
1256 aSize.Height() /= static_cast<long int>(fYRatio); in updatePreview()
1259 if ( aSize.Width() < maSize.Width ) in updatePreview()
1261 …sal_Int32 nXDiff = static_cast< sal_Int32 >( ( ( ( maSize.Width - aSize.Width() ) * maSbJPGPreview… in updatePreview()
1264 if ( aSize.Height() < maSize.Height ) in updatePreview()
1266 …sal_Int32 nYDiff = static_cast< sal_Int32 >( ( ( ( maSize.Height - aSize.Height() ) * maSbJPGPrevi… in updatePreview()
1271 aCroppedBitmap.Crop( Rectangle( aPos, aSize ) ); in updatePreview()
1272 aSize = aCroppedBitmap.GetSizePixel(); in updatePreview()
1273aSize = Size( static_cast<long int>(aSize.Width() * fXRatio), static_cast<long int>(aSize.Height()… in updatePreview()
1274 aCroppedBitmap.Scale( aSize ); in updatePreview()
1276 if ( aSize.Width() > aFixedBitmapSize.Width() ) in updatePreview()
1277 aSize.Width() = aFixedBitmapSize.Width(); in updatePreview()
1278 if ( aSize.Height() > aFixedBitmapSize.Height() ) in updatePreview()
1279 aSize.Height() = aFixedBitmapSize.Height(); in updatePreview()
1281 if ( aSize.Width() < aFixedBitmapSize.Width() ) in updatePreview()
1282 aPoint.X() += ( aFixedBitmapSize.Width() - aSize.Width() ) / 2; in updatePreview()
1283 if ( aSize.Height() < aFixedBitmapSize.Height() ) in updatePreview()
1284 aPoint.Y() += ( aFixedBitmapSize.Height() - aSize.Height() ) / 2; in updatePreview()
1287 maFbJPGPreview.SetSizePixel( aSize ); in updatePreview()
1320 …Size aSize( LogicToLogic( Size( aSize100thmm.Width * 100, aSize100thmm.Height * 100 ), MAP_100TH_M… in updateControls() local
1322 maMfSizeX.SetValue( aSize.Width() ); in updateControls()
1323 maMfSizeY.SetValue( aSize.Height() ); in updateControls()