class WXDLLEXPORT wxPanel : public wxWindow
{
public:
- wxPanel() : m_container(this) { Init(); }
+ wxPanel() { Init(); }
// Old-style constructor (no default values for coordinates to avoid
// ambiguity with the new one)
int x, int y, int width, int height,
long style = wxTAB_TRAVERSAL | wxNO_BORDER,
const wxString& name = wxPanelNameStr)
- : m_container(this)
{
Init();
const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxNO_BORDER,
const wxString& name = wxPanelNameStr)
- : m_container(this)
{
Init();
// implementation from now on
// --------------------------
- // Sends an OnInitDialog event, which in turns transfers data to
- // to the dialog via validators.
- virtual void InitDialog();
-
// responds to colour changes
void OnSysColourChanged(wxSysColourChangedEvent& event);
// calls layout for layout constraints and sizers
void OnSize(wxSizeEvent& event);
+ virtual void InitDialog();
+
WX_DECLARE_CONTROL_CONTAINER();
protected: