本文整理汇总了C++中cegui::Listbox::findItemWithText方法的典型用法代码示例。如果您正苦于以下问题:C++ Listbox::findItemWithText方法的具体用法?C++ Listbox::findItemWithText怎么用?C++ Listbox::findItemWithText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cegui::Listbox
的用法示例。
在下文中一共展示了Listbox::findItemWithText方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: RemoveOnline
/***********************************************************
remove people online
***********************************************************/
void CommunityBox::RemoveOnline(const std::string & listname, const std::string &_offline)
{
if(listname == "online")
{
CEGUI::Listbox * lb = static_cast<CEGUI::Listbox *> (
CEGUI::WindowManager::getSingleton().getWindow("Community/onlinelist"));
std::map<std::string, CEGUI::ListboxItem *>::iterator itmap = _onlines.find(_offline);
if(itmap != _onlines.end())
{
lb->removeItem(itmap->second);
_onlines.erase(itmap);
}
UpdateFriendOnlineStatus(_offline);
}
if(listname == "IRC")
{
CEGUI::Listbox * lb = static_cast<CEGUI::Listbox *> (
CEGUI::WindowManager::getSingleton().getWindow("Community/IRClist"));
CEGUI::ListboxItem *it = lb->findItemWithText(_offline, NULL);
if(it != NULL)
lb->removeItem(it);
}
}
示例2: AddOnline
/***********************************************************
add people online
***********************************************************/
void CommunityBox::AddOnline(const std::string & listname, const std::string &_online,
const std::string &_status, const std::string &color)
{
if(listname == "online")
{
CEGUI::Listbox * lb = static_cast<CEGUI::Listbox *> (
CEGUI::WindowManager::getSingleton().getWindow("Community/onlinelist"));
std::string dis = "[colour='" + color + "']" + _online;
if(_status != "")
dis += " (" + _status + ")";
std::map<std::string, CEGUI::ListboxItem *>::iterator itmap = _onlines.find(_online);
if(itmap != _onlines.end())
{
itmap->second->setText(dis);
lb->invalidate();
}
else
{
CEGUI::ListboxItem *it = new MyComListItem(dis);
lb->addItem(it);
_onlines[_online] = it;
}
if(IsFriend(_online))
UpdateFriend(_online);
}
if(listname == "IRC")
{
CEGUI::Listbox * lb = static_cast<CEGUI::Listbox *> (
CEGUI::WindowManager::getSingleton().getWindow("Community/IRClist"));
CEGUI::ListboxItem *it = lb->findItemWithText(_online, NULL);
if(it == NULL)
lb->addItem(new MyComListItem(_online));
}
}