Lines Matching refs:aPrefSize
228 awt::Size aPrefSize( mrPlayer.getPreferredPlayerWindowSize() ); in ImplLayoutVideoWindow() local
241 aPrefSize.Width >>= 2; in ImplLayoutVideoWindow()
242 aPrefSize.Height >>= 2; in ImplLayoutVideoWindow()
247 aPrefSize.Width >>= 1; in ImplLayoutVideoWindow()
248 aPrefSize.Height >>= 1; in ImplLayoutVideoWindow()
253 aPrefSize.Width <<= 1; in ImplLayoutVideoWindow()
254 aPrefSize.Height <<= 1; in ImplLayoutVideoWindow()
259 aPrefSize.Width <<= 2; in ImplLayoutVideoWindow()
260 aPrefSize.Height <<= 2; in ImplLayoutVideoWindow()
272 if( ( aPrefSize.Width <= nVideoW ) && ( aPrefSize.Height <= nVideoH ) ) in ImplLayoutVideoWindow()
274 nX = ( nVideoW - aPrefSize.Width ) >> 1; in ImplLayoutVideoWindow()
275 nY = ( nVideoH - aPrefSize.Height ) >> 1; in ImplLayoutVideoWindow()
276 nWidth = aPrefSize.Width; in ImplLayoutVideoWindow()
277 nHeight = aPrefSize.Height; in ImplLayoutVideoWindow()
284 if( aPrefSize.Width > 0 && aPrefSize.Height > 0 && nVideoW > 0 && nVideoH > 0 ) in ImplLayoutVideoWindow()
286 double fPrefWH = (double) aPrefSize.Width / aPrefSize.Height; in ImplLayoutVideoWindow()