Lines Matching refs:aBmpSize
109 Size aBmpSize = aBitmapEx.GetBitmap().GetSizePixel(); in Paint() local
110 aBmpSize.Width() = (long) ( (double) aBmpSize.Width() * (double) aScale ); in Paint()
111 aBmpSize.Height() = (long) ( (double) aBmpSize.Height() * (double) aScale ); in Paint()
113 if( aBmpSize.Width() < aSize.Width() ) in Paint()
114 aPt.X() = ( aSize.Width() - aBmpSize.Width() ) / 2; in Paint()
115 if( aBmpSize.Height() < aSize.Height() ) in Paint()
116 aPt.Y() = ( aSize.Height() - aBmpSize.Height() ) / 2; in Paint()
118 aBitmapEx.Draw( this, aPt, aBmpSize ); in Paint()
725 aBmpSize.Width() = 0; in GetScale()
726 aBmpSize.Height() = 0; in GetScale()
731 aBmpSize.Width() = Max( aBmpSize.Width(), aTempSize.Width() ); in GetScale()
732 aBmpSize.Height() = Max( aBmpSize.Height(), aTempSize.Height() ); in GetScale()
735 aBmpSize.Width() += 10; in GetScale()
736 aBmpSize.Height() += 10; in GetScale()
738 aFrac = Fraction( std::min( (double)aDisplaySize.Width() / (double)aBmpSize.Width(), in GetScale()
739 (double)aDisplaySize.Height() / (double)aBmpSize.Height() ) ); in GetScale()