Lines Matching refs:aFont

841 					Font	aFont;  in ImplConvertFromSVM1()  local
848 ImplReadColor( rIStm, aActionColor ); aFont.SetColor( aActionColor ); in ImplConvertFromSVM1()
849 ImplReadColor( rIStm, aActionColor ); aFont.SetFillColor( aActionColor ); in ImplConvertFromSVM1()
851 aFont.SetName( UniString( aName, rIStm.GetStreamCharSet() ) ); in ImplConvertFromSVM1()
857 aFont.SetSize( Size( nWidth, nHeight ) ); in ImplConvertFromSVM1()
858 aFont.SetCharSet( (CharSet) nCharSet ); in ImplConvertFromSVM1()
859 aFont.SetFamily( (FontFamily) nFamily ); in ImplConvertFromSVM1()
860 aFont.SetPitch( (FontPitch) nPitch ); in ImplConvertFromSVM1()
861 aFont.SetAlign( (FontAlign) nAlign ); in ImplConvertFromSVM1()
862 aFont.SetWeight( ( nWeight == 1 ) ? WEIGHT_LIGHT : ( nWeight == 2 ) ? WEIGHT_NORMAL : in ImplConvertFromSVM1()
864 aFont.SetUnderline( (FontUnderline) nUnderline ); in ImplConvertFromSVM1()
865 aFont.SetStrikeout( (FontStrikeout) nStrikeout ); in ImplConvertFromSVM1()
866 aFont.SetItalic( bItalic ? ITALIC_NORMAL : ITALIC_NONE ); in ImplConvertFromSVM1()
867 aFont.SetOutline( bOutline ); in ImplConvertFromSVM1()
868 aFont.SetShadow( bShadow ); in ImplConvertFromSVM1()
869 aFont.SetOrientation( nLineOrient ); in ImplConvertFromSVM1()
870 aFont.SetTransparent( bTransparent ); in ImplConvertFromSVM1()
872 eActualCharSet = aFont.GetCharSet(); in ImplConvertFromSVM1()
876 rMtf.AddAction( new MetaFontAction( aFont ) ); in ImplConvertFromSVM1()
877 rMtf.AddAction( new MetaTextAlignAction( aFont.GetAlign() ) ); in ImplConvertFromSVM1()
878 rMtf.AddAction( new MetaTextColorAction( aFont.GetColor() ) ); in ImplConvertFromSVM1()
879 … rMtf.AddAction( new MetaTextFillColorAction( aFont.GetFillColor(), !aFont.IsTransparent() ) ); in ImplConvertFromSVM1()
882 aFontVDev.SetFont( aFont ); in ImplConvertFromSVM1()