Lines Matching refs:aTextSize
572 Size aTextSize(pDev->GetTextWidth( aStr ), pDev->GetTextHeight()); in DrawText() local
575 if ( aTextSize.Width() > nWidth ) in DrawText()
582 aTextSize.Width() = pDev->GetTextWidth(aStr); in DrawText()
587 if ( aTextSize.Height() <= nHeight ) in DrawText()
593 aPos.X() += nWidth-aTextSize.Width(); in DrawText()
595 aPos.X() += (nWidth-aTextSize.Width())/2; in DrawText()
599 aPos.Y() += aTextSize.Height(); in DrawText()
604 aPos.Y() += nHeight-aTextSize.Height(); in DrawText()
606 aPos.Y() += (nHeight-aTextSize.Height())/2; in DrawText()
2360 Size aTextSize( GetItemSize( pView, pEntry, pItem, pViewData )); in CalcTextRect() local
2361 aTextSize.Width() += 2*LROFFS_TEXT; in CalcTextRect()
2386 if( aTextSize.Width() < nMinWidth ) in CalcTextRect()
2387 aTextSize.Width() = nMinWidth; in CalcTextRect()
2392 if( aOptSize.Height() > aTextSize.Height() ) in CalcTextRect()
2393 aTextSize.Height() = aOptSize.Height(); in CalcTextRect()
2397 aPos.X() += ( aBound.GetWidth() - aTextSize.Width() ) / 2; in CalcTextRect()
2406 aPos.Y() += ( nBmpWidth - aTextSize.Height() ) / 2; in CalcTextRect()
2410 Rectangle aRect( aPos, aTextSize ); in CalcTextRect()
3697 pViewData->aTextSize = aTextRect.GetSize(); in Center()
3731 return pViewData->aTextSize; in GetItemSize()