I have been trying to add a wxSplitterWindow to a vertical wxBoxSizer like so:
....
wxSplitterWindow * split = new wxSplitterWindow(this, wxID_ANY);
split->SplitVertically(selectPanel, trackingPanel);
verticalBox->Add(serverBarBox, 0, wxEXPAND);
verticalBox->Add(new wxStaticText(this, wxID_ANY, _("File selector:")), 0, wxEXPAND);
verticalBox->Add(split, 1, wxEXPAND);
...
but this only produces results in which the wxSplitterBox floats as a tiny square in the top left of the frame. What exactly is going on here?
As you can see the top left has part of a button which is part of one of the panels im adding to the splitter window.(Note i took out the static text for this picture hence why that isn't in there, though it does display properly when not commented out)