本文整理汇总了C++中sf::String::SetFont方法的典型用法代码示例。如果您正苦于以下问题:C++ String::SetFont方法的具体用法?C++ String::SetFont怎么用?C++ String::SetFont使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sf::String
的用法示例。
在下文中一共展示了String::SetFont方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: log_setup_1
int log_setup_1(){
//Load Font
if( PTSANS_loaded == false ){
if (!PTSANS.LoadFromFile("PTN57F.ttf", 50)) return -1;
PTSANS_loaded = true;
}
//Setup Strings
log_string.SetFont( PTSANS );
log_string.SetSize(24.f);
log_string.SetColor( sf::Color(255, 255, 255) );
log_string.SetPosition(100.f, 600.f);
log_name.SetFont( PTSANS );
log_name.SetSize(40.f);
log_name.SetColor( sf::Color(255, 255, 255) );
log_name.SetPosition(100.f, 550.f);
}
示例2: Button
Button(int x, int y, int w, int h,
const std::string & text,
const sf::Font & font,
WidgetContainer * parent = NULL)
: Widget(x, y, w, h, parent)
{
m_renderText.SetFont(font);
setText(text);
m_action = NULL;
}
示例3: TextBar
TextBar(int x, int y, int w, int h,
const sf::Font & font,
GenericAction * enterAction = NULL,
WidgetContainer * parent = NULL)
: Widget(x, y, w, h, parent)
{
m_renderText.SetFont(font);
setText("");
m_enterAction = enterAction;
}
示例4: 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);
}
示例5: InitString
void FontFunctions::InitString(sf::String& str, const int size)
{
str.SetFont(FontFunctions::_font);
str.SetColor(sf::Color::Black);
str.SetSize(size);
}