Lines Matching refs:aSize

1251     Size  aSize;  in ImplLoadRes()  local
1278 aSize.Width() = ImplLogicUnitToPixelX( ReadLongRes(), eSizeMap ); in ImplLoadRes()
1280 aSize.Height() = ImplLogicUnitToPixelY( ReadLongRes(), eSizeMap ); in ImplLoadRes()
1289 SetOutputSizePixel( aSize ); in ImplLoadRes()
1292 SetPosSizePixel( aPos, aSize ); in ImplLoadRes()
1296 SetSizePixel( aSize ); in ImplLoadRes()
1722 Size aSize = rFont.GetSize(); in ImplPointToLogic() local
1725 if ( aSize.Width() ) in ImplPointToLogic()
1727 aSize.Width() *= mpWindowImpl->mpFrameData->mnDPIX; in ImplPointToLogic()
1728 aSize.Width() += 72/2; in ImplPointToLogic()
1729 aSize.Width() /= 72; in ImplPointToLogic()
1730 aSize.Width() *= nScreenFontZoom; in ImplPointToLogic()
1731 aSize.Width() /= 100; in ImplPointToLogic()
1733 aSize.Height() *= mpWindowImpl->mpFrameData->mnDPIY; in ImplPointToLogic()
1734 aSize.Height() += 72/2; in ImplPointToLogic()
1735 aSize.Height() /= 72; in ImplPointToLogic()
1736 aSize.Height() *= nScreenFontZoom; in ImplPointToLogic()
1737 aSize.Height() /= 100; in ImplPointToLogic()
1740 aSize = PixelToLogic( aSize ); in ImplPointToLogic()
1742 rFont.SetSize( aSize ); in ImplPointToLogic()
1749 Size aSize = rFont.GetSize(); in ImplLogicToPoint() local
1753 aSize = LogicToPixel( aSize ); in ImplLogicToPoint()
1755 if ( aSize.Width() ) in ImplLogicToPoint()
1757 aSize.Width() *= 100; in ImplLogicToPoint()
1758 aSize.Width() /= nScreenFontZoom; in ImplLogicToPoint()
1759 aSize.Width() *= 72; in ImplLogicToPoint()
1760 aSize.Width() += mpWindowImpl->mpFrameData->mnDPIX/2; in ImplLogicToPoint()
1761 aSize.Width() /= mpWindowImpl->mpFrameData->mnDPIX; in ImplLogicToPoint()
1763 aSize.Height() *= 100; in ImplLogicToPoint()
1764 aSize.Height() /= nScreenFontZoom; in ImplLogicToPoint()
1765 aSize.Height() *= 72; in ImplLogicToPoint()
1766 aSize.Height() += mpWindowImpl->mpFrameData->mnDPIY/2; in ImplLogicToPoint()
1767 aSize.Height() /= mpWindowImpl->mpFrameData->mnDPIY; in ImplLogicToPoint()
1769 rFont.SetSize( aSize ); in ImplLogicToPoint()
4317 Size aSize = pFocusWin->ImplLogicToDevicePixel( rFont.GetSize() ); in ImplNewInputContext() local
4318 if ( !aSize.Height() ) in ImplNewInputContext()
4323 aSize.Height() = 1; in ImplNewInputContext()
4325 aSize.Height() = (12*pFocusWin->mnDPIY)/72; in ImplNewInputContext()
4332 rFont, aSize, static_cast<float>(aSize.Height()), pFontSubst ); in ImplNewInputContext()
7543 Size aSize ( pWin->GetSizePixel() ); in ImplGetWindowExtentsRelative() local
7549 aSize.Width() += g.nLeftDecoration + g.nRightDecoration; in ImplGetWindowExtentsRelative()
7550 aSize.Height() += g.nTopDecoration + g.nBottomDecoration; in ImplGetWindowExtentsRelative()
7558 return Rectangle( aPos, aSize ); in ImplGetWindowExtentsRelative()