#endif
#include "wx/window.h" // base class declaration
+#include "wx/containr.h" // wxControlContainer
class WXDLLEXPORT wxSplitterEvent;
Create(parent, id, pos, size, style, name);
}
- ~wxSplitterWindow();
+ virtual ~wxSplitterWindow();
bool Create(wxWindow *parent, wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
void SendUnsplitEvent(wxWindow *winRemoved);
protected:
+ // common part of all ctors
void Init();
-
int m_splitMode;
bool m_permitUnsplitAlways;
bool m_needUpdating; // when in live mode, set this to TRUE to resize children in idle
wxPen* m_facePen;
private:
+ WX_DECLARE_CONTROL_CONTAINER();
+
DECLARE_DYNAMIC_CLASS(wxSplitterWindow)
DECLARE_EVENT_TABLE()
};