// Public API
// Default constructor
- wxSplitterWindow() : m_container(this)
+ wxSplitterWindow()
{
Init();
}
const wxSize& size = wxDefaultSize,
long style = wxSP_3D,
const wxString& name = "splitter")
- : m_container(this)
{
Init();
Create(parent, id, pos, size, style, name);
protected:
// common part of all ctors
void Init();
+
+ // adjusts sash position with respect to min. pane and window sizes
+ void AdjustSashPosition(int &sashPos);
int m_splitMode;
bool m_permitUnsplitAlways;