protected:
void OnSize(wxSizeEvent& event);
+ virtual void DoGetClientSize(int *width, int *height) const;
+ virtual void DoSetClientSize(int width, int height);
+
#if wxUSE_MENUS
// override to update menu bar position when the frame size changes
virtual void PositionMenuBar();
#endif // wxUSE_MENUS
+#if wxUSE_STATUSBAR
+ // override to update statusbar position when the frame size changes
+ virtual void PositionStatusBar();
+#endif // wxUSE_MENUS
+
DECLARE_EVENT_TABLE()
DECLARE_DYNAMIC_CLASS(wxFrame)
};