本文整理汇总了C++中LLCurrencyUIManager::process方法的典型用法代码示例。如果您正苦于以下问题:C++ LLCurrencyUIManager::process方法的具体用法?C++ LLCurrencyUIManager::process怎么用?C++ LLCurrencyUIManager::process使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LLCurrencyUIManager
的用法示例。
在下文中一共展示了LLCurrencyUIManager::process方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: draw
void LLFloaterBuyCurrencyUI::draw()
{
if (mManager.process())
{
if (mManager.bought())
{
close();
return;
}
updateUI();
}
LLFloater::draw();
}
示例2: draw
void LLFloaterBuyCurrencyUI::draw()
{
if (mManager.process())
{
if (mManager.bought())
{
LLNotificationsUtil::add("BuyLindenDollarSuccess");
closeFloater();
return;
}
updateUI();
}
// disable the Buy button when we are not able to buy
getChildView("buy_btn")->setEnabled(mManager.canBuy());
LLFloater::draw();
}
示例3: draw
void LLFloaterBuyLandUI::draw()
{
LLFloater::draw();
bool needsUpdate = false;
needsUpdate |= checkTransaction();
needsUpdate |= mCurrency.process();
if (mBought)
{
closeFloater();
}
else if (needsUpdate)
{
if (mCanBuy && mCurrency.hasError())
{
tellUserError(mCurrency.errorMessage(), mCurrency.errorURI());
}
refreshUI();
}
}
示例4: draw
void LLFloaterBuyCurrencyUI::draw()
{
if (mManager.process())
{
if (mManager.bought())
{
std::string type_currency = LLGridManager::getInstance()->getCurrency();
LLSD args;
args["CUR"] = type_currency;
LLNotificationsUtil::add("BuyLindenDollarSuccess", args);
closeFloater();
return;
}
updateUI();
}
// disable the Buy button when we are not able to buy
getChildView("buy_btn")->setEnabled(mManager.canBuy());
LLFloater::draw();
}