Lines Matching refs:aSize

215 		Size aSize( pView->GetOutputSizePixel() );  in Clear()  local
216 nMaxVirtWidth = aSize.Width() - nVerSBarWidth; in Clear()
219 nMaxVirtHeight = aSize.Height() - nHorSBarHeight; in Clear()
311 Size aSize( CalcBoundingSize( pEntry ) ); in InsertEntry() local
312 SetBoundingRect_Impl( pEntry, *pPos, aSize ); in InsertEntry()
861 Size aSize( pView->GetOutputSizePixel() ); in InitScrollBarBox() local
862 aScrBarBox.SetPosPixel( Point(aSize.Width()-nVerSBarWidth+1, aSize.Height()-nHorSBarHeight+1)); in InitScrollBarBox()
1533 Size aSize( nVerSBarWidth, nRealHeight ); in AdjustScrollBars() local
1534 aSize.Height() += 2; in AdjustScrollBars()
1535 if( aSize != aVerSBar.GetSizePixel() ) in AdjustScrollBars()
1536 aVerSBar.SetSizePixel( aSize ); in AdjustScrollBars()
1553 aSize.Width() = nRealWidth; in AdjustScrollBars()
1554 aSize.Height() = nHorSBarHeight; in AdjustScrollBars()
1555 aSize.Width()++; in AdjustScrollBars()
1558 aSize.Width()++; in AdjustScrollBars()
1561 if( aSize != aHorSBar.GetSizePixel() ) in AdjustScrollBars()
1562 aHorSBar.SetSizePixel( aSize ); in AdjustScrollBars()
1654 Size aSize( aVerSBar.GetSizePixel()); in CheckHorScrollBar() local
1655 aSize.Height() += nHorSBarHeight; in CheckHorScrollBar()
1656 aVerSBar.SetSizePixel( aSize ); in CheckHorScrollBar()
1692 Size aSize( aHorSBar.GetSizePixel()); in CheckVerScrollBar() local
1693 aSize.Width() += nVerSBarWidth; in CheckVerScrollBar()
1694 aHorSBar.SetSizePixel( aSize ); in CheckVerScrollBar()
1926 Size aSize( rRect.GetSize() ); in PaintEntryVirtOutDev()
1927 pEntryPaintDev->SetOutputSizePixel( aSize ); in PaintEntryVirtOutDev()
1929 Point(), aSize, rRect.TopLeft(), aSize, *pView ); in PaintEntryVirtOutDev()
1935 aSize, in PaintEntryVirtOutDev()
1937 aSize, in PaintEntryVirtOutDev()
2476 Size aSize( CalcBoundingSize( pEntry ) ); in FindBoundingRect() local
2478 SetBoundingRect_Impl( pEntry, aPos, aSize ); in FindBoundingRect()
2554 Size aSize( pDDDev->GetOutputSizePixel() ); in ImpHideDDIcon() local
2556 pView->DrawOutDev( aDDLastRectPos, aSize, Point(), aSize, *pDDDev ); in ImpHideDDIcon()
2596 Size aSize( pDDDev->GetOutputSizePixel() ); in ShowDDIcon() local
2602 pDDDev->DrawOutDev( Point(), aSize, aPos, aSize, *pView ); in ShowDDIcon()
3011 Size aSize( rSize ); in SetGrid() local
3013 if( aSize.Width() < aMinSize.Width() ) in SetGrid()
3014 aSize.Width() = aMinSize.Width(); in SetGrid()
3015 if( aSize.Height() < aMinSize.Height() ) in SetGrid()
3016 aSize.Height() = aMinSize.Height(); in SetGrid()
3018 nGridDX = aSize.Width(); in SetGrid()
3027 nGridDY = aSize.Height(); in SetGrid()
3103 Size aSize( CalcBoundingSize( pEntry ) ); in Center() local
3107 long nBorder = pEntry->aGridRect.GetWidth() - aSize.Width(); in Center()
3112 pEntry->aRect.Bottom() = pEntry->aRect.Top() + aSize.Height(); in Center()
3161 Size aSize( rRect.GetSize() ); in GetHotSpot() local
3162 long nDelta = aSize.Width() / 4; in GetHotSpot()
3165 nDelta = aSize.Height() / 4; in GetHotSpot()
3529 Size aSize( rCenterRect.GetSize() ); in AdjustAtGrid() local
3535 short nGridX = (short)((aPos.X()+(aSize.Width()/2)) / nGridDX); in AdjustAtGrid()
3536 short nGridY = (short)((aPos.Y()+(aSize.Height()/2)) / nGridDY); in AdjustAtGrid()
4099 Size aSize( aHorSBar.GetSizePixel() ); in InitSettings() local
4100 aSize.Height() = nScrBarSize; in InitSettings()
4102 aHorSBar.SetSizePixel( aSize ); in InitSettings()
4105 aSize = aVerSBar.GetSizePixel(); in InitSettings()
4106 aSize.Width() = nScrBarSize; in InitSettings()
4108 aVerSBar.SetSizePixel( aSize ); in InitSettings()
4618 Size aSize( rSize ); in GetGridCount() local
4620 aSize.Height() -= nHorSBarHeight; in GetGridCount()
4622 aSize.Height() -= nHorSBarHeight; in GetGridCount()
4625 aSize.Width() -= nVerSBarWidth; in GetGridCount()
4627 aSize.Width() -= nVerSBarWidth; in GetGridCount()
4629 if( aSize.Width() < 0 ) in GetGridCount()
4630 aSize.Width() = 0; in GetGridCount()
4631 if( aSize.Height() < 0 ) in GetGridCount()
4632 aSize.Height() = 0; in GetGridCount()
4634 return IcnGridMap_Impl::GetGridCount( aSize, (sal_uInt16)nGridDX, (sal_uInt16)nGridDY ); in GetGridCount()