本文整理汇总了C++中CocoWidget::getVisible方法的典型用法代码示例。如果您正苦于以下问题:C++ CocoWidget::getVisible方法的具体用法?C++ CocoWidget::getVisible怎么用?C++ CocoWidget::getVisible使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CocoWidget
的用法示例。
在下文中一共展示了CocoWidget::getVisible方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getAbsoluteVisible
bool CocoWidget::getAbsoluteVisible()
{
if (this->m_bVisibleDirty) {
CocoWidget* parent = this;
bool visible = this->getVisible();
while (parent){
visible &= parent->getVisible();
if (!visible) {
break;
}
parent = parent->getWidgetParent();
}
this->m_bAbsoluteVisible = visible;
this->m_bVisibleDirty = false;
}
return this->m_bAbsoluteVisible;
}
示例2: update
void UIInputManager::update(float dt)
{
if (this->m_bTouchDown){
this->m_fLongClickRecordTime += dt;
if (this->m_fLongClickRecordTime >= this->m_fLongClickTime){
this->m_fLongClickRecordTime = 0;
this->m_bTouchDown = false;
this->m_pCurSelectedWidget->onTouchLongClicked(this->touchBeganedPoint);
}
}
for (int i=0;i<this->checkedDoubleClickWidget->count();i++){
CocoWidget* widget = (CocoWidget*)(this->checkedDoubleClickWidget->objectAtIndex(i));
if (!widget->getVisible()){
continue;
}
// widget->checkDoubleClick(dt);
}
}