Lines Matching refs:aLogFont

510 		LOGFONTW aLogFont;  in HasMissingChars()  local
511 ImplGetLogFontFromFontSelect( mhDC, &aFSD, aLogFont, true ); in HasMissingChars()
514 HFONT hNewFont = ::CreateFontIndirectW( &aLogFont ); in HasMissingChars()
1370 LOGFONTW aLogFont; in ImplIsFontAvailable() local
1371 memset( &aLogFont, 0, sizeof( aLogFont ) ); in ImplIsFontAvailable()
1372 aLogFont.lfCharSet = DEFAULT_CHARSET; in ImplIsFontAvailable()
1375 if ( nNameLen > (sizeof( aLogFont.lfFaceName )/sizeof( wchar_t ))-1 ) in ImplIsFontAvailable()
1376 nNameLen = (sizeof( aLogFont.lfFaceName )/sizeof( wchar_t ))-1; in ImplIsFontAvailable()
1377 memcpy( aLogFont.lfFaceName, rName.GetBuffer(), nNameLen*sizeof( wchar_t ) ); in ImplIsFontAvailable()
1378 aLogFont.lfFaceName[nNameLen] = 0; in ImplIsFontAvailable()
1381 EnumFontFamiliesExW( hDC, &aLogFont, (FONTENUMPROCW)SalEnumQueryFontProcExW, in ImplIsFontAvailable()
1547 LOGFONTW aLogFont; in ImplDoSetFont() local
1548 ImplGetLogFontFromFontSelect( getHDC(), i_pFont, aLogFont, true ); in ImplDoSetFont()
1559 && (ImplSalWICompareAscii( aLogFont.lfFaceName, "Courier" ) == 0) ) in ImplDoSetFont()
1560 lstrcpynW( aLogFont.lfFaceName, L"Courier New", 11 ); in ImplDoSetFont()
1564 if( (-aLogFont.lfHeight <= MAXFONTHEIGHT) in ImplDoSetFont()
1565 && (+aLogFont.lfWidth <= MAXFONTHEIGHT) ) in ImplDoSetFont()
1569 else if( -aLogFont.lfHeight >= +aLogFont.lfWidth ) in ImplDoSetFont()
1571 o_rFontScale = -aLogFont.lfHeight / (float)MAXFONTHEIGHT; in ImplDoSetFont()
1572 aLogFont.lfHeight = -MAXFONTHEIGHT; in ImplDoSetFont()
1573 aLogFont.lfWidth = FRound( aLogFont.lfWidth / o_rFontScale ); in ImplDoSetFont()
1577 o_rFontScale = +aLogFont.lfWidth / (float)MAXFONTHEIGHT; in ImplDoSetFont()
1578 aLogFont.lfWidth = +MAXFONTHEIGHT; in ImplDoSetFont()
1579 aLogFont.lfHeight = FRound( aLogFont.lfHeight / o_rFontScale ); in ImplDoSetFont()
1582 hNewFont = ::CreateFontIndirectW( &aLogFont ); in ImplDoSetFont()
1597 lstrcpynW( aLogFont.lfFaceName, L"Courier New", 11 ); in ImplDoSetFont()
1598 aLogFont.lfPitchAndFamily = FIXED_PITCH; in ImplDoSetFont()
1599 HFONT hNewFont2 = CreateFontIndirectW( &aLogFont ); in ImplDoSetFont()
1787 LOGFONTA aLogFont; in ImplGetAllFontCharSets() local
1788 memset( &aLogFont, 0, sizeof( aLogFont ) ); in ImplGetAllFontCharSets()
1789 aLogFont.lfCharSet = DEFAULT_CHARSET; in ImplGetAllFontCharSets()
1790 GetTextFaceA( pData->getHDC(), sizeof( aLogFont.lfFaceName ), aLogFont.lfFaceName ); in ImplGetAllFontCharSets()
1791 EnumFontFamiliesExA( pData->getHDC(), &aLogFont, (FONTENUMPROCA)SalEnumCharSetsProcExA, in ImplGetAllFontCharSets()
2402 LOGFONTW aLogFont; in GetDevFontList() local
2403 memset( &aLogFont, 0, sizeof( aLogFont ) ); in GetDevFontList()
2404 aLogFont.lfCharSet = DEFAULT_CHARSET; in GetDevFontList()
2405 aInfo.mpLogFontW = &aLogFont; in GetDevFontList()
2406 EnumFontFamiliesExW( getHDC(), &aLogFont, in GetDevFontList()