Lines Matching refs:pFD

840 	::com::sun::star::awt::FontDescriptor* pFD = NULL;  in read()
965 if ( !pFD ) in read()
967 pFD = new ::com::sun::star::awt::FontDescriptor; in read()
970 pProp->GetValue() >>= *pFD; in read()
972 pFD->Name = InStream->readUTF(); in read()
973 pFD->StyleName = InStream->readUTF(); in read()
974 pFD->Family = InStream->readShort(); in read()
975 pFD->CharSet = InStream->readShort(); in read()
976 pFD->Pitch = InStream->readShort(); in read()
983 if ( !pFD ) in read()
985 pFD = new ::com::sun::star::awt::FontDescriptor; in read()
988 pProp->GetValue() >>= *pFD; in read()
990 pFD->Width = (sal_Int16)InStream->readLong(); in read()
991 pFD->Height = (sal_Int16)InStream->readLong(); in read()
993 pFD->CharacterWidth = ::com::sun::star::awt::FontWidth::DONTKNOW; in read()
1000 if ( !pFD ) in read()
1002 pFD = new ::com::sun::star::awt::FontDescriptor; in read()
1005 pProp->GetValue() >>= *pFD; in read()
1007 pFD->Weight = VCLUnoHelper::ConvertFontWeight( (FontWeight) InStream->readShort() ); in read()
1008 pFD->Slant = (::com::sun::star::awt::FontSlant)InStream->readShort(); in read()
1009 pFD->Underline = InStream->readShort(); in read()
1010 pFD->Strikeout = InStream->readShort(); in read()
1011 pFD->Orientation = ( (float)(double)InStream->readShort() ) / 10; in read()
1012 pFD->Kerning = InStream->readBoolean(); in read()
1013 pFD->WordLineMode = InStream->readBoolean(); in read()
1068 if ( pFD ) in read()
1071 aValue <<= *pFD; in read()
1073 delete pFD; in read()
1396 ::std::auto_ptr< awt::FontDescriptor > pFD; in setPropertyValues()
1401 if ( !pFD.get() ) in setPropertyValues()
1404 pFD.reset( new awt::FontDescriptor ); in setPropertyValues()
1405 pProp->GetValue() >>= *pFD; in setPropertyValues()
1407 lcl_ImplMergeFontProperty( *pFD, (sal_uInt16)pHandles[n], pValues[n] ); in setPropertyValues()
1428 if ( pFD.get() ) in setPropertyValues()
1431 aValue <<= *pFD; in setPropertyValues()