Lines Matching refs:aSize

389     Size aSize = GetOutputSizePixel();  in CalcActiveHeight()  local
391 aSize.Width() -= m_pScrollBar->GetSizePixel().Width(); in CalcActiveHeight()
393 aSize.Width() -= ICON_OFFSET; in CalcActiveHeight()
394 aSize.Height() = 10000; in CalcActiveHeight()
401 Rectangle aRect = GetTextRect( Rectangle( Point(), aSize ), aText, in CalcActiveHeight()
425 Size aSize( GetOutputSizePixel() ); in GetEntryRect() local
428 aSize.Width() -= m_pScrollBar->GetSizePixel().Width(); in GetEntryRect()
431 aSize.Height() = m_nActiveHeight; in GetEntryRect()
433 aSize.Height() = m_nStdHeight; in GetEntryRect()
439 return Rectangle( aPos, aSize ); in GetEntryRect()
573 Size aSize = FixedText::CalcMinimumTextSize( pEntry->m_pPublisher ); in DrawRow() local
574 pEntry->m_pPublisher->SetSizePixel( aSize ); in DrawRow()
783 Size aSize( GetOutputSizePixel() ); in Paint() local
786 aSize.Width() -= m_pScrollBar->GetSizePixel().Width(); in Paint()
793 aSize.Height() = (*iIndex)->m_bActive ? m_nActiveHeight : m_nStdHeight; in Paint()
794 Rectangle aEntryRect( aStart, aSize ); in Paint()
796 aStart.Y() += aSize.Height(); in Paint()
816 const Size aSize = GetOutputSizePixel(); in SetupScrollBar() local
819 const bool bNeedsScrollBar = ( nTotalHeight > aSize.Height() ); in SetupScrollBar()
823 if ( m_nTopIndex + aSize.Height() > nTotalHeight ) in SetupScrollBar()
824 m_nTopIndex = nTotalHeight - aSize.Height(); in SetupScrollBar()
826 m_pScrollBar->SetPosSizePixel( Point( aSize.Width() - nScrBarSize, 0 ), in SetupScrollBar()
827 Size( nScrBarSize, aSize.Height() ) ); in SetupScrollBar()
829 m_pScrollBar->SetVisibleSize( aSize.Height() ); in SetupScrollBar()
830 m_pScrollBar->SetPageSize( ( aSize.Height() * 4 ) / 5 ); in SetupScrollBar()