Lines Matching refs:aOrigSize
174 Size aOrigSize( maOrigSize ); in Resize() local
175 if( aOrigSize.Width() < 1 ) in Resize()
176 aOrigSize.Width() = aNewSize.Width(); in Resize()
177 if( aOrigSize.Height() < 1 ) in Resize()
178 aOrigSize.Height() = aNewSize.Height(); in Resize()
179 if( aOrigSize.Width() > aOrigSize.Height() ) in Resize()
181 … aScaledSize = Size( aNewSize.Width(), aNewSize.Width() * aOrigSize.Height() / aOrigSize.Width() ); in Resize()
187 …aScaledSize = Size( aNewSize.Height() * aOrigSize.Width() / aOrigSize.Height(), aNewSize.Height() … in Resize()
255 Size aOrigSize( maOrigSize ); in Paint() local
256 if( aOrigSize.Width() < 1 ) in Paint()
257 aOrigSize.Width() = aLogicSize.Width(); in Paint()
258 if( aOrigSize.Height() < 1 ) in Paint()
259 aOrigSize.Height() = aLogicSize.Height(); in Paint()
260 double fScale = double(aLogicSize.Width())/double(aOrigSize.Width()); in Paint()