本文整理汇总了C++中cegui::String::rfind方法的典型用法代码示例。如果您正苦于以下问题:C++ String::rfind方法的具体用法?C++ String::rfind怎么用?C++ String::rfind使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cegui::String
的用法示例。
在下文中一共展示了String::rfind方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: handleFontCreationButtonClicked
bool FontDemo::handleFontCreationButtonClicked(const EventArgs& e)
{
FontManager& fontMgr(FontManager::getSingleton());
CEGUI::String fontName = d_fontNameEditbox->getText();
bool fontNameExists = fontMgr.isDefined(fontName);
if(fontNameExists ||fontName.size() == 0)
{
d_fontEditorInfoLabel->setText("Font name already in use.");
return true;
}
CEGUI::String fontFileName = d_fontFileNameSelector->getSelectedItem()->getText();
CEGUI::String fontSizeString = d_fontSizeEditbox->getText();
float fontSize = CEGUI::PropertyHelper<float>::fromString(fontSizeString);
if(fontSize == 0.0f)
return true;
bool antiAlias = d_fontAntiAliasCheckbox->isSelected();
AutoScaledMode autoScaleMode = static_cast<AutoScaledMode>(getAutoScaleMode());
String::size_type pos = fontFileName.rfind(".imageset");
if(pos != -1)
{
CEGUI::Font& createdFont = fontMgr.createPixmapFont(fontName, fontFileName, Font::getDefaultResourceGroup(), autoScaleMode,
CEGUI::Sizef(1280.0f, 720.0f), XREA_THROW);
}
else
{
CEGUI::Font& createdFont = fontMgr.createFreeTypeFont(fontName, fontSize, antiAlias, fontFileName, Font::getDefaultResourceGroup(), autoScaleMode,
CEGUI::Sizef(1280.0f, 720.0f), XREA_THROW);
}
ListboxItem* item = new MyListItem(fontName, 0);
d_fontSelector->addItem(item);
d_fontSelector->setItemSelectState(item, true);
return true;
}