git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30094
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
All (GUI):
- recursive wxSizer::GetItem returns item of given window, sizer or nth index
All (GUI):
- recursive wxSizer::GetItem returns item of given window, sizer or nth index
+- wxLayoutConstraints now use best size, not current size, for AsIs() condition
+ win->GetBestSize(&w, &h);
win->GetPosition(&x, &y);
value = x + w;
done = true;
win->GetPosition(&x, &y);
value = x + w;
done = true;
+ win->GetBestSize(&w, &h);
win->GetPosition(&x, &y);
value = h + y;
done = true;
win->GetPosition(&x, &y);
value = h + y;
done = true;
- win->GetSize(&value, &h);
+ win->GetBestSize(&value, &h);
done = true;
return true;
}
done = true;
return true;
}
- win->GetSize(&w, &value);
+ win->GetBestSize(&w, &value);
done = true;
return true;
}
done = true;
return true;
}