I am porting my application to wx GUI from MFC, and I decided to use wxIFM for the docking system.
I encountered some problems with toolbars & wxIFM and found a workaround suggested by the author of the wxIFM package.
However, I am now facing a new problem:
When using the wxPanel workaround, when I am resizing the main frame, the
docked windows are not adjusting to the new size - so i get 'cut' windows
In my main frame i have the following:
// Add the tool bar
mainSizer->Add(m_standardToolbar, 0, wxEXPAND);
mainSizer->AddSpacer(1);
mainSizer->Add(m_thePanel, 1, wxGROW|wxALIGN_CENTER);
mainSizer->AddSpacer(1);
mainSizer->Add(m_statusBar, 0, wxEXPAND);
SetSizer(mainSizer);
mainSizer->Layout();
Attached you can see the problem, in the picture 1 you can see the editor with the visible windows, and in the second picture - you can see that the not all the windows are visible (even though they are)


Any ideas?
Thx,
Eran