Lines Matching refs:aFD

237 		EmptyFontDescriptor aFD;  in ImplGetDefaultValue()  local
240 case BASEPROPERTY_FONTDESCRIPTOR: aDefault <<= aFD; break; in ImplGetDefaultValue()
241 case BASEPROPERTY_FONTDESCRIPTORPART_NAME: aDefault <<= aFD.Name; break; in ImplGetDefaultValue()
242 case BASEPROPERTY_FONTDESCRIPTORPART_STYLENAME: aDefault <<= aFD.StyleName; break; in ImplGetDefaultValue()
243 case BASEPROPERTY_FONTDESCRIPTORPART_FAMILY: aDefault <<= aFD.Family; break; in ImplGetDefaultValue()
244 case BASEPROPERTY_FONTDESCRIPTORPART_CHARSET: aDefault <<= aFD.CharSet; break; in ImplGetDefaultValue()
245 case BASEPROPERTY_FONTDESCRIPTORPART_HEIGHT: aDefault <<= (float)aFD.Height; break; in ImplGetDefaultValue()
246 case BASEPROPERTY_FONTDESCRIPTORPART_WEIGHT: aDefault <<= aFD.Weight; break; in ImplGetDefaultValue()
247 case BASEPROPERTY_FONTDESCRIPTORPART_SLANT: aDefault <<= (sal_Int16)aFD.Slant; break; in ImplGetDefaultValue()
248 case BASEPROPERTY_FONTDESCRIPTORPART_UNDERLINE: aDefault <<= aFD.Underline; break; in ImplGetDefaultValue()
249 case BASEPROPERTY_FONTDESCRIPTORPART_STRIKEOUT: aDefault <<= aFD.Strikeout; break; in ImplGetDefaultValue()
250 case BASEPROPERTY_FONTDESCRIPTORPART_WIDTH: aDefault <<= aFD.Width; break; in ImplGetDefaultValue()
251 case BASEPROPERTY_FONTDESCRIPTORPART_PITCH: aDefault <<= aFD.Pitch; break; in ImplGetDefaultValue()
252 case BASEPROPERTY_FONTDESCRIPTORPART_CHARWIDTH: aDefault <<= aFD.CharacterWidth; break; in ImplGetDefaultValue()
253 case BASEPROPERTY_FONTDESCRIPTORPART_ORIENTATION: aDefault <<= aFD.Orientation; break; in ImplGetDefaultValue()
254 case BASEPROPERTY_FONTDESCRIPTORPART_KERNING: aDefault <<= aFD.Kerning; break; in ImplGetDefaultValue()
255 case BASEPROPERTY_FONTDESCRIPTORPART_WORDLINEMODE: aDefault <<= aFD.WordLineMode; break; in ImplGetDefaultValue()
256 case BASEPROPERTY_FONTDESCRIPTORPART_TYPE: aDefault <<= aFD.Type; break; in ImplGetDefaultValue()
689 ::com::sun::star::awt::FontDescriptor aFD; in write()
690 rValue >>= aFD; in write()
691 OutStream->writeUTF( aFD.Name ); in write()
692 OutStream->writeShort( aFD.Height ); in write()
693 OutStream->writeShort( aFD.Width ); in write()
694 OutStream->writeUTF( aFD.StyleName ); in write()
695 OutStream->writeShort( aFD.Family ); in write()
696 OutStream->writeShort( aFD.CharSet ); in write()
697 OutStream->writeShort( aFD.Pitch ); in write()
698 OutStream->writeDouble( aFD.CharacterWidth ); in write()
699 OutStream->writeDouble( aFD.Weight ); in write()
701 sal::static_int_cast< sal_Int16 >(aFD.Slant) ); in write()
702 OutStream->writeShort( aFD.Underline ); in write()
703 OutStream->writeShort( aFD.Strikeout ); in write()
704 OutStream->writeDouble( aFD.Orientation ); in write()
705 OutStream->writeBoolean( aFD.Kerning ); in write()
706 OutStream->writeBoolean( aFD.WordLineMode ); in write()
707 OutStream->writeShort( aFD.Type ); in write()
769 ::com::sun::star::awt::FontDescriptor aFD; in write()
770 pProp->GetValue() >>= aFD; in write()
781 OutStream->writeUTF( aFD.Name ); in write()
782 OutStream->writeUTF( aFD.StyleName ); in write()
783 OutStream->writeShort( aFD.Family ); in write()
784 OutStream->writeShort( aFD.CharSet ); in write()
785 OutStream->writeShort( aFD.Pitch ); in write()
789 OutStream->writeLong( aFD.Width ); in write()
790 OutStream->writeLong( aFD.Height ); in write()
793 VCLUnoHelper::ConvertFontWidth( aFD.CharacterWidth )) ); in write()
799 VCLUnoHelper::ConvertFontWeight( aFD.Weight )) ); in write()
801 sal::static_int_cast< sal_Int16 >(aFD.Slant) ); in write()
802 OutStream->writeShort( aFD.Underline ); in write()
803 OutStream->writeShort( aFD.Strikeout ); in write()
804 OutStream->writeShort( (short)(aFD.Orientation * 10) ); in write()
805 OutStream->writeBoolean( aFD.Kerning ); in write()
806 OutStream->writeBoolean( aFD.WordLineMode ); in write()
894 ::com::sun::star::awt::FontDescriptor aFD; in read()
895 aFD.Name = InStream->readUTF(); in read()
896 aFD.Height = InStream->readShort(); in read()
897 aFD.Width = InStream->readShort(); in read()
898 aFD.StyleName = InStream->readUTF(); in read()
899 aFD.Family = InStream->readShort(); in read()
900 aFD.CharSet = InStream->readShort(); in read()
901 aFD.Pitch = InStream->readShort(); in read()
902 aFD.CharacterWidth = (float)InStream->readDouble(); in read()
903 aFD.Weight = (float)InStream->readDouble(); in read()
904 aFD.Slant = (::com::sun::star::awt::FontSlant)InStream->readShort(); in read()
905 aFD.Underline = InStream->readShort(); in read()
906 aFD.Strikeout = InStream->readShort(); in read()
907 aFD.Orientation = (float)InStream->readDouble(); in read()
908 aFD.Kerning = InStream->readBoolean(); in read()
909 aFD.WordLineMode = InStream->readBoolean(); in read()
910 aFD.Type = InStream->readShort(); in read()
911 aValue <<= aFD; in read()
1026 EmptyFontDescriptor aFD; in read() local
1027 aValue <<= aFD; in read()
1272 ::com::sun::star::awt::FontDescriptor aFD; in getFastPropertyValue()
1273 pProp->GetValue() >>= aFD; in getFastPropertyValue()
1276 case BASEPROPERTY_FONTDESCRIPTORPART_NAME: rValue <<= aFD.Name; in getFastPropertyValue()
1278 case BASEPROPERTY_FONTDESCRIPTORPART_STYLENAME: rValue <<= aFD.StyleName; in getFastPropertyValue()
1280 case BASEPROPERTY_FONTDESCRIPTORPART_FAMILY: rValue <<= aFD.Family; in getFastPropertyValue()
1282 case BASEPROPERTY_FONTDESCRIPTORPART_CHARSET: rValue <<= aFD.CharSet; in getFastPropertyValue()
1284 case BASEPROPERTY_FONTDESCRIPTORPART_HEIGHT: rValue <<= (float)aFD.Height; in getFastPropertyValue()
1286 case BASEPROPERTY_FONTDESCRIPTORPART_WEIGHT: rValue <<= aFD.Weight; in getFastPropertyValue()
1288 case BASEPROPERTY_FONTDESCRIPTORPART_SLANT: rValue <<= (sal_Int16)aFD.Slant; in getFastPropertyValue()
1290 case BASEPROPERTY_FONTDESCRIPTORPART_UNDERLINE: rValue <<= aFD.Underline; in getFastPropertyValue()
1292 case BASEPROPERTY_FONTDESCRIPTORPART_STRIKEOUT: rValue <<= aFD.Strikeout; in getFastPropertyValue()
1294 case BASEPROPERTY_FONTDESCRIPTORPART_WIDTH: rValue <<= aFD.Width; in getFastPropertyValue()
1296 case BASEPROPERTY_FONTDESCRIPTORPART_PITCH: rValue <<= aFD.Pitch; in getFastPropertyValue()
1298 case BASEPROPERTY_FONTDESCRIPTORPART_CHARWIDTH: rValue <<= aFD.CharacterWidth; in getFastPropertyValue()
1300 case BASEPROPERTY_FONTDESCRIPTORPART_ORIENTATION: rValue <<= aFD.Orientation; in getFastPropertyValue()
1302 case BASEPROPERTY_FONTDESCRIPTORPART_KERNING: rValue <<= aFD.Kerning; in getFastPropertyValue()
1304 case BASEPROPERTY_FONTDESCRIPTORPART_WORDLINEMODE: rValue <<= aFD.WordLineMode; in getFastPropertyValue()
1306 case BASEPROPERTY_FONTDESCRIPTORPART_TYPE: rValue <<= aFD.Type; in getFastPropertyValue()