Lines Matching refs:aElementSize

298             Size aElementSize( it->getOptimalSize( i_eType ) );  in getOptimalSize()  local
304 if( aRet.Width() < aElementSize.Width() ) in getOptimalSize()
305 aRet.Width() = aElementSize.Width(); in getOptimalSize()
306 aRet.Height() += aElementSize.Height(); in getOptimalSize()
313 if( aRet.Height() < aElementSize.Height() ) in getOptimalSize()
314 aRet.Height() = aElementSize.Height(); in getOptimalSize()
315 aRet.Width() += aElementSize.Width(); in getOptimalSize()
575 Size aElementSize( m_aElement.getOptimalSize( i_eType ) ); in getOptimalSize() local
576 aRet.Width() += aElementSize.Width(); in getOptimalSize()
577 if( aElementSize.Height() > aRet.Height() ) in getOptimalSize()
578 aRet.Height() = aElementSize.Height(); in getOptimalSize()
588 Size aElementSize( m_aElement.getOptimalSize( WINDOWSIZE_PREFERRED ) ); in resize() local
591 if( nDistance + aLabelSize.Width() + aElementSize.Width() > m_aManagedArea.GetWidth() ) in resize()
592 aElementSize = m_aElement.getOptimalSize( WINDOWSIZE_MINIMUM ); in resize()
604 nYOff = (m_aManagedArea.GetHeight() - 2*nOuterBorder - aElementSize.Height()) / 2; in resize()
606 aSize.Width() = aElementSize.Width(); in resize()
696 Size aElementSize; in getOptimalSize() local
703 aElementSize = pLabel->getLabelSize( WINDOWSIZE_MINIMUM ); in getOptimalSize()
704 if( aElementSize.Width() ) in getOptimalSize()
705 aElementSize.Width() = nWidth; in getOptimalSize()
707 aElementSize.Width() += aSize.Width(); in getOptimalSize()
708 if( aSize.Height() > aElementSize.Height() ) in getOptimalSize()
709 aElementSize.Height() = aSize.Height(); in getOptimalSize()
713 aElementSize = pEle->getOptimalSize( i_eType ); in getOptimalSize()
718 aElementSize = pEle->getOptimalSize( i_eType ); in getOptimalSize()
720 if( aElementSize.Width() ) in getOptimalSize()
722 aElementSize.Width() += 2*nOuterBorder; in getOptimalSize()
723 if( aElementSize.Width() > aColumnSize.Width() ) in getOptimalSize()
724 aColumnSize.Width() = aElementSize.Width(); in getOptimalSize()
726 if( aElementSize.Height() ) in getOptimalSize()
728 aColumnSize.Height() += getBorderValue( getBorderWidth() ) + aElementSize.Height(); in getOptimalSize()