本文整理汇总了C++中sf::String::SetStyle方法的典型用法代码示例。如果您正苦于以下问题:C++ String::SetStyle方法的具体用法?C++ String::SetStyle怎么用?C++ String::SetStyle使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sf::String
的用法示例。
在下文中一共展示了String::SetStyle方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: drawRectangle
void InfoBox::draw(sf::RenderWindow& rw)
{
glColor3f(0.6, 0.6, 0.6);
drawRectangle(start_, end_, true);
static sf::String tx;
tx.SetText("Status");
tx.SetFont(sf::Font::GetDefaultFont());
tx.SetStyle(sf::String::Bold);
tx.SetPosition(start_[0] + 20, start_[1] + 20);
tx.SetSize(16);
rw.Draw(tx);
}
示例2: set_police
void Param::set_police(sf::String &destination, const char *ligne)
{
int i = 0;
long unsigned int style = sf::String::Regular;
while(ligne[i] != '\0')
{
switch(ligne[i])
{
case 's' :
case 'u' :
case 'S' :
case 'U' :
style |= sf::String::Underlined;
break;
case 'b' :
case 'g' :
case 'B' :
case 'G' :
style |= sf::String::Bold;
break;
case 'n' :
case 'd' :
case 'N' :
case 'D' :
style = sf::String::Regular;
break;
case 'i' :
case 'I' :
style |= sf::String::Italic;
break;
}
i++;
while(ligne[i] != '|' && ligne[i] != '\0')
{
i++;
}
if(ligne[i] != '\0')
{
i++;
if(ligne[i] == ' ')
i++;
}
}
destination.SetStyle(style);
}