Lines Matching refs:aFD

107 	FontDescriptor aFD;  in getMaterial()  local
108 aFD.Name = m_aFont.GetName(); in getMaterial()
109 aFD.Height = 0; in getMaterial()
110 aFD.Width = 0; in getMaterial()
111 aFD.StyleName = m_aFont.GetStyleName(); in getMaterial()
112 aFD.CharSet = 0; in getMaterial()
113 aFD.CharacterWidth = 0; in getMaterial()
114 aFD.Underline = 0; in getMaterial()
115 aFD.Strikeout = 0; in getMaterial()
116 aFD.Orientation = 0; in getMaterial()
117 aFD.Kerning = sal_False; in getMaterial()
118 aFD.WordLineMode = sal_False; in getMaterial()
119 aFD.Type = 0; in getMaterial()
122 case FAMILY_DECORATIVE: aFD.Family = com::sun::star::awt::FontFamily::DECORATIVE;break; in getMaterial()
123 case FAMILY_MODERN: aFD.Family = com::sun::star::awt::FontFamily::MODERN;break; in getMaterial()
124 case FAMILY_ROMAN: aFD.Family = com::sun::star::awt::FontFamily::ROMAN;break; in getMaterial()
125 case FAMILY_SCRIPT: aFD.Family = com::sun::star::awt::FontFamily::SCRIPT;break; in getMaterial()
126 case FAMILY_SWISS: aFD.Family = com::sun::star::awt::FontFamily::SWISS;break; in getMaterial()
127 case FAMILY_SYSTEM: aFD.Family = com::sun::star::awt::FontFamily::SYSTEM;break; in getMaterial()
129 aFD.Family = com::sun::star::awt::FontFamily::DONTKNOW; in getMaterial()
134 case PITCH_VARIABLE: aFD.Pitch = com::sun::star::awt::FontPitch::VARIABLE;break; in getMaterial()
135 case PITCH_FIXED: aFD.Pitch = com::sun::star::awt::FontPitch::FIXED;break; in getMaterial()
137 aFD.Pitch = com::sun::star::awt::FontPitch::DONTKNOW; in getMaterial()
142 case WEIGHT_THIN: aFD.Weight = com::sun::star::awt::FontWeight::THIN;break; in getMaterial()
143 case WEIGHT_ULTRALIGHT: aFD.Weight = com::sun::star::awt::FontWeight::ULTRALIGHT;break; in getMaterial()
144 case WEIGHT_LIGHT: aFD.Weight = com::sun::star::awt::FontWeight::LIGHT;break; in getMaterial()
145 case WEIGHT_SEMILIGHT: aFD.Weight = com::sun::star::awt::FontWeight::SEMILIGHT;break; in getMaterial()
147 case WEIGHT_NORMAL: aFD.Weight = com::sun::star::awt::FontWeight::NORMAL;break; in getMaterial()
148 case WEIGHT_SEMIBOLD: aFD.Weight = com::sun::star::awt::FontWeight::SEMIBOLD;break; in getMaterial()
149 case WEIGHT_BOLD: aFD.Weight = com::sun::star::awt::FontWeight::BOLD;break; in getMaterial()
150 case WEIGHT_ULTRABOLD: aFD.Weight = com::sun::star::awt::FontWeight::ULTRABOLD;break; in getMaterial()
151 case WEIGHT_BLACK: aFD.Weight = com::sun::star::awt::FontWeight::BLACK;break; in getMaterial()
153 aFD.Weight = com::sun::star::awt::FontWeight::DONTKNOW; in getMaterial()
158 case ITALIC_OBLIQUE: aFD.Slant = com::sun::star::awt::FontSlant_OBLIQUE;break; in getMaterial()
159 case ITALIC_NORMAL: aFD.Slant = com::sun::star::awt::FontSlant_ITALIC;break; in getMaterial()
161 aFD.Slant = com::sun::star::awt::FontSlant_DONTKNOW; in getMaterial()
164 return makeAny( aFD ); in getMaterial()