本文整理汇总了C++中CAButton::setOpacity方法的典型用法代码示例。如果您正苦于以下问题:C++ CAButton::setOpacity方法的具体用法?C++ CAButton::setOpacity怎么用?C++ CAButton::setOpacity使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CAButton
的用法示例。
在下文中一共展示了CAButton::setOpacity方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: addButton
CCObject* CAUIHelper::addButton(CSJson::Value jsonValue, cocos2d::CCRect &uiRect)
{
CAButton *btn = CAButton::createWithFrame(uiRect, CAButtonTypeRoundedRect);
int tag = jsonValue["tag"].asInt();
// bool isEffect = jsonValue["isEffect"].asBool();
// bool isClick = jsonValue["isClick"].asBool();
// bool isTouchSuspend = jsonValue["isTouchSuspend"].asBool();
CAControlState btnState = (CAControlState)jsonValue["btnState"].asInt();
int alpha = jsonValue["alpha"].asInt();
std::string imageRes = jsonValue["backgroundImage"].asString();
mCAButtonType btntype = (mCAButtonType)jsonValue["btnType"].asInt();
btn->setTag(tag);
btn->setOpacity(alpha);
btn->setControlState(btnState);
if (btntype == ButtonColor)
{
}
else if (btntype == ButtonGrid9)
{
CAScale9ImageView *image = CAScale9ImageView::createWithImage(CAImage::create(imageRes.c_str()));
btn->setBackGroundViewForState(CAControlStateNormal, image);
}
else if (btntype == ButtonImage)
{
}
else if (btntype == ButtonNone)
{
}
return btn;
}