예제 #1
0
void CCMenuItemFont::setFontNameObj(const char* name)
{
    m_strFontName = name;
    recreateLabel();
}
예제 #2
0
void CCMenuItemFont::setFontSizeObj(unsigned int s)
{
    m_uFontSize = s;
    recreateLabel();
}
예제 #3
0
void MenuItemFont::setFontNameObj(const std::string& name)
{
    _fontName = name;
    recreateLabel();
}
예제 #4
0
void MenuItemFont::setFontNameObj(const char* name)
{
    _fontName = name;
    recreateLabel();
}
예제 #5
0
void MenuItemFont::setFontSizeObj(int s)
{
    _fontSize = s;
    recreateLabel();
}