Lines Matching refs:aSize

454     const Size aSize( GetOutputSizePixel() );  in UpdateBitmap()  local
456 if( mpBitmap && mpBitmap->GetSizePixel() != aSize ) in UpdateBitmap()
459 const sal_Int32 nWidth = aSize.Width(); in UpdateBitmap()
460 const sal_Int32 nHeight = aSize.Height(); in UpdateBitmap()
464 mpBitmap = new Bitmap( aSize, 24 ); in UpdateBitmap()
603 const Size aSize( mpBitmap->GetSizePixel() ); in ShowPosition() local
609 else if( nX >= aSize.Width() ) in ShowPosition()
610 nX = aSize.Width() - 1L; in ShowPosition()
614 else if( nY >= aSize.Height() ) in ShowPosition()
615 nY = aSize.Height() - 1L; in ShowPosition()
625 mdX = (double)nX / (double)(aSize.Width()-1); in ShowPosition()
626 mdY = (double)(aSize.Height()-1-nY) / (double)(aSize.Height()-1); in ShowPosition()
671 Size aSize( GetOutputSizePixel() ); in KeyMove() local
672 Point aPos( mdX * aSize.Width(), (1.0 - mdY) * aSize.Height() ); in KeyMove()
676 aPos.X() += aSize.Width(); in KeyMove()
677 else if( aPos.X() >= aSize.Width() ) in KeyMove()
678 aPos.X() -= aSize.Width(); in KeyMove()
681 aPos.Y() += aSize.Height(); in KeyMove()
682 else if( aPos.Y() >= aSize.Height() ) in KeyMove()
683 aPos.Y() -= aSize.Height(); in KeyMove()
788 Size aSize( GetOutputSizePixel() ); in UpdatePosition() local
789 ShowPosition( Point( mdX * aSize.Width(), (1.0 - mdY) * aSize.Height() ), false ); in UpdatePosition()
852 Size aSize( 1, GetOutputSizePixel().Height() ); in UpdateBitmap() local
854 if( mpBitmap && mpBitmap->GetSizePixel() != aSize ) in UpdateBitmap()
858 mpBitmap = new Bitmap( aSize, 24 ); in UpdateBitmap()
864 const long nY = aSize.Height()-1; in UpdateBitmap()
1006 const Size aSize( GetOutputSizePixel() ); in Paint() local
1014 int x = aSize.Width(); in Paint()
1238 Size aSize( maSliderImage.GetSizePixel() ); in ColorPickerDialog() local
1239 maFISliderLeft.SetSizePixel( aSize ); in ColorPickerDialog()
1240 maFISliderRight.SetSizePixel( aSize ); in ColorPickerDialog()
1244 aPos.X() -= aSize.Width(); in ColorPickerDialog()
1245 aPos.Y() -= aSize.Height() / 2; in ColorPickerDialog()
1248 aPos.X() += aSize.Width() + maColorSlider.GetSizePixel().Width(); in ColorPickerDialog()