コード例 #1
0
void nuiContainer::SetAlpha(float Alpha)
{
  CheckValid();
  nuiWidget::SetAlpha(Alpha);
  SilentInvalidateChildren(true);
  DebugRefreshInfo();
}
コード例 #2
0
void nuiContainer::SetSelected(bool set)
{
  CheckValid();
  nuiWidget::SetSelected(set);
  SilentInvalidateChildren(true);
  Invalidate();
  DebugRefreshInfo();
}
コード例 #3
0
ファイル: nuiContainer.cpp プロジェクト: hamedmohammadi/nui3
void nuiContainer::SetEnabled(bool set)
{
  CheckValid();
  if (set == mEnabled)
    return;
  nuiWidget::SetEnabled(set);
  SilentInvalidateChildren(true);
  Invalidate();
  DebugRefreshInfo();
}