Lines Matching refs:FontWeight
270 float VCLUnoHelper::ConvertFontWeight( FontWeight eWeight ) in ConvertFontWeight()
273 return ::com::sun::star::awt::FontWeight::DONTKNOW; in ConvertFontWeight()
275 return ::com::sun::star::awt::FontWeight::THIN; in ConvertFontWeight()
277 return ::com::sun::star::awt::FontWeight::ULTRALIGHT; in ConvertFontWeight()
279 return ::com::sun::star::awt::FontWeight::LIGHT; in ConvertFontWeight()
281 return ::com::sun::star::awt::FontWeight::SEMILIGHT; in ConvertFontWeight()
283 return ::com::sun::star::awt::FontWeight::NORMAL; in ConvertFontWeight()
285 return ::com::sun::star::awt::FontWeight::SEMIBOLD; in ConvertFontWeight()
287 return ::com::sun::star::awt::FontWeight::BOLD; in ConvertFontWeight()
289 return ::com::sun::star::awt::FontWeight::ULTRABOLD; in ConvertFontWeight()
291 return ::com::sun::star::awt::FontWeight::BLACK; in ConvertFontWeight()
294 return ::com::sun::star::awt::FontWeight::DONTKNOW; in ConvertFontWeight()
297 FontWeight VCLUnoHelper::ConvertFontWeight( float f ) in ConvertFontWeight()
299 if( f <= ::com::sun::star::awt::FontWeight::DONTKNOW ) in ConvertFontWeight()
301 else if( f <= ::com::sun::star::awt::FontWeight::THIN ) in ConvertFontWeight()
303 else if( f <= ::com::sun::star::awt::FontWeight::ULTRALIGHT ) in ConvertFontWeight()
305 else if( f <= ::com::sun::star::awt::FontWeight::LIGHT ) in ConvertFontWeight()
307 else if( f <= ::com::sun::star::awt::FontWeight::SEMILIGHT ) in ConvertFontWeight()
309 else if( f <= ::com::sun::star::awt::FontWeight::NORMAL ) in ConvertFontWeight()
311 else if( f <= ::com::sun::star::awt::FontWeight::SEMIBOLD ) in ConvertFontWeight()
313 else if( f <= ::com::sun::star::awt::FontWeight::BOLD ) in ConvertFontWeight()
315 else if( f <= ::com::sun::star::awt::FontWeight::ULTRABOLD ) in ConvertFontWeight()
317 else if( f <= ::com::sun::star::awt::FontWeight::BLACK ) in ConvertFontWeight()