Esempio n. 1
0
void StdLayoutImpl::update(WLayoutItem *item)
{
  WContainerWidget *c = container();

  if (c)
    c->layoutChanged();
}
Esempio n. 2
0
void FlexLayoutImpl::update()
{
  WContainerWidget *c = container();

  if (c)
    c->layoutChanged(false);
}
Esempio n. 3
0
void StdGridLayoutImpl2::update(WLayoutItem *item)
{
  WContainerWidget *c = container();

  if (c)
    c->layoutChanged(false, false);

  needConfigUpdate_ = true;
}