示例#1
0
const FeFontContainer *FePresent::get_pooled_font( const std::string &n )
{
    std::vector<std::string> my_list;
    my_list.push_back( n );

    return get_pooled_font( my_list );
}
示例#2
0
void FePresent::set_layout_font( const char *n )
{
	const FeFontContainer *font = get_pooled_font( n );

	if ( font )
	{
		m_layoutFontName = n;
		m_currentFont = font;
		flag_redraw();
	}
}