Lines Matching refs:aFAttrs

636 	FATTRS		  	aFAttrs;  in ImplDoSetFont()  local
640 memset( &aFAttrs, 0, sizeof( FATTRS ) ); in ImplDoSetFont()
641 aFAttrs.usRecordLength = sizeof( FATTRS ); in ImplDoSetFont()
643 aFAttrs.lMaxBaselineExt = i_pFont->mnHeight; in ImplDoSetFont()
644 aFAttrs.lAveCharWidth = i_pFont->mnWidth; in ImplDoSetFont()
654 aFAttrs.lMatch = pFontMetric->lMatch; in ImplDoSetFont()
655 aFAttrs.idRegistry = pFontMetric->idRegistry; in ImplDoSetFont()
656 aFAttrs.usCodePage = pFontMetric->usCodePage; in ImplDoSetFont()
660 aFAttrs.fsFontUse |= FATTR_FONTUSE_OUTLINE; in ImplDoSetFont()
662 aFAttrs.fsFontUse |= FATTR_FONTUSE_TRANSFORMABLE; in ImplDoSetFont()
666 aFAttrs.lMaxBaselineExt = pFontMetric->lMaxBaselineExt; in ImplDoSetFont()
667 aFAttrs.lAveCharWidth = pFontMetric->lAveCharWidth; in ImplDoSetFont()
681 strncpy( (char*)(aFAttrs.szFacename), pFontMetric->szFacename, sizeof( aFAttrs.szFacename ) ); in ImplDoSetFont()
685 strncpy( (char*)(aFAttrs.szFacename), aName.GetBuffer(), sizeof( aFAttrs.szFacename ) ); in ImplDoSetFont()
688 strncpy( (char*)(aFAttrs.szFacename), pFontMetric->szFamilyname, sizeof( aFAttrs.szFacename ) ); in ImplDoSetFont()
691 strncpy( (char*)(aFAttrs.szFacename), pFontMetric->szFacename, sizeof( aFAttrs.szFacename ) ); in ImplDoSetFont()
695 aFAttrs.fsSelection |= FATTR_SEL_ITALIC; in ImplDoSetFont()
697 aFAttrs.fsSelection |= FATTR_SEL_BOLD; in ImplDoSetFont()
703 debug_printf( "Os2SalGraphics::SetFont hps %x fattrs facename '%s'\n", mhPS, aFAttrs.szFacename); in ImplDoSetFont()
704 …debug_printf( "Os2SalGraphics::SetFont hps %x fattrs height '%d'\n", mhPS, aFAttrs.lMaxBaselineExt… in ImplDoSetFont()
705 debug_printf( "Os2SalGraphics::SetFont hps %x fattrs width '%d'\n", mhPS, aFAttrs.lAveCharWidth); in ImplDoSetFont()
715 if ( (rc=Ft2CreateLogFont( mhPS, NULL, nFallbackLevel + LCID_BASE, &aFAttrs)) == GPI_ERROR ) { in ImplDoSetFont()