本文整理汇总了C++中LLIconCtrl::setColor方法的典型用法代码示例。如果您正苦于以下问题:C++ LLIconCtrl::setColor方法的具体用法?C++ LLIconCtrl::setColor怎么用?C++ LLIconCtrl::setColor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LLIconCtrl
的用法示例。
在下文中一共展示了LLIconCtrl::setColor方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: fromXML
LLView* LLIconCtrl::fromXML(LLXMLNodePtr node, LLView *parent, LLUICtrlFactory *factory)
{
LLString name("icon");
node->getAttributeString("name", name);
LLRect rect;
createRect(node, rect, parent, LLRect());
LLUUID image_id;
if (node->hasAttribute("image_name"))
{
LLString image_name;
node->getAttributeString("image_name", image_name);
image_id.set(LLUI::sAssetsGroup->getString( image_name ));
}
LLColor4 color(LLColor4::white);
LLUICtrlFactory::getAttributeColor(node,"color", color);
LLIconCtrl* icon = new LLIconCtrl(name, rect, image_id);
icon->setColor(color);
icon->initFromXML(node, parent);
return icon;
}
示例2: fromXML
LLView* LLIconCtrl::fromXML(LLXMLNodePtr node, LLView *parent, LLUICtrlFactory *factory)
{
LLRect rect;
createRect(node, rect, parent, LLRect());
std::string image_name;
if (node->hasAttribute("image_name"))
{
node->getAttributeString("image_name", image_name);
}
LLColor4 color(LLColor4::white);
LLUICtrlFactory::getAttributeColor(node,"color", color);
S32 min_width = 0, min_height = 0;
if (node->hasAttribute("min_width"))
{
node->getAttributeS32("min_width", min_width);
}
if (node->hasAttribute("min_height"))
{
node->getAttributeS32("min_height", min_height);
}
LLIconCtrl* icon = new LLIconCtrl("icon", rect, image_name, min_width, min_height);
icon->setColor(color);
icon->initFromXML(node, parent);
return icon;
}