+ node = node->GetNext();
+ }
+
+ // Now do a dummy run to see if we have any space left for the final window (fail if not)
+ node = parent->GetChildren().GetFirst();
+ while (node)
+ {
+ wxWindow* win = node->GetData();
+
+ // If mainWindow is NULL and we're at the last window,
+ // skip this, because we'll simply make it fit the remaining space.
+ if (win->IsShown() && (win != mainWindow) && (mainWindow != NULL || win != lastAwareWindow))
+ {
+ event.SetId(win->GetId());
+ event.SetEventObject(win);
+ event.SetFlags(wxLAYOUT_QUERY);
+
+ win->GetEventHandler()->ProcessEvent(event);
+ }
+
+ node = node->GetNext();
+ }
+
+ if (event.GetRect().GetWidth() < 0 || event.GetRect().GetHeight() < 0)
+ return FALSE;
+
+ event.SetRect(rect);
+
+ node = parent->GetChildren().GetFirst();
+ while (node)
+ {
+ wxWindow* win = node->GetData();
+
+ // If mainWindow is NULL and we're at the last window,
+ // skip this, because we'll simply make it fit the remaining space.
+ if (win->IsShown() && (win != mainWindow) && (mainWindow != NULL || win != lastAwareWindow))
+ {
+ event.SetId(win->GetId());
+ event.SetEventObject(win);
+ event.SetFlags(0); // ??
+
+ win->GetEventHandler()->ProcessEvent(event);
+ }