Example #1
0
void nuiContainer::SetAlpha(float Alpha)
{
  CheckValid();
  nuiWidget::SetAlpha(Alpha);
  SilentInvalidateChildren(true);
  DebugRefreshInfo();
}
Example #2
0
void nuiContainer::SetSelected(bool set)
{
  CheckValid();
  nuiWidget::SetSelected(set);
  SilentInvalidateChildren(true);
  Invalidate();
  DebugRefreshInfo();
}
Example #3
0
void nuiContainer::SetEnabled(bool set)
{
  CheckValid();
  if (set == mEnabled)
    return;
  nuiWidget::SetEnabled(set);
  SilentInvalidateChildren(true);
  Invalidate();
  DebugRefreshInfo();
}