コード例 #1
0
ファイル: StdLayoutImpl.C プロジェクト: bvanhauwaert/wt
void StdLayoutImpl::update(WLayoutItem *item)
{
  WContainerWidget *c = container();

  if (c)
    c->layoutChanged();
}
コード例 #2
0
ファイル: FlexLayoutImpl.C プロジェクト: AlexanderKotliar/wt
void FlexLayoutImpl::update()
{
  WContainerWidget *c = container();

  if (c)
    c->layoutChanged(false);
}
コード例 #3
0
ファイル: StdGridLayoutImpl2.C プロジェクト: Unss/wt
void StdGridLayoutImpl2::update(WLayoutItem *item)
{
  WContainerWidget *c = container();

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

  needConfigUpdate_ = true;
}