- DECLARE_DYNAMIC_CLASS(wxFrame)
-
- public:
-
- wxFrame(void);
- wxFrame( wxWindow *parent, wxWindowID id, const wxString &title,
- const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
- long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
- bool Create( wxWindow *parent, wxWindowID id, const wxString &title,
- const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
- long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
- ~wxFrame(void);
- bool Destroy(void);
- void OnCloseWindow( wxCloseEvent& event );
- virtual bool Show( bool show );
- virtual void Enable( bool enable );
- virtual void GetClientSize( int *width, int *height ) const;
- void OnSize( wxSizeEvent &event );
- void SetMenuBar( wxMenuBar *menuBar );
- virtual bool CreateStatusBar( int number = 1 );
- virtual void SetStatusText( const wxString &text, int number = 0 );
- virtual void SetStatusWidths( int n, int *width );
- wxStatusBar *GetStatusBar(void);
- wxMenuBar *GetMenuBar(void);
- void SetTitle( const wxString &title );
- wxString GetTitle(void) const;
- void OnActivate( wxActivateEvent &WXUNUSED(event) ) {};
- void OnIdle( wxIdleEvent &event );
-
- //private:
+public:
+ // construction
+ wxFrame() { Init(); }
+ wxFrame(wxWindow *parent,
+ wxWindowID id,
+ const wxString& title,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxDEFAULT_FRAME_STYLE,
+ const wxString& name = wxFrameNameStr)
+ {
+ Init();
+
+ Create(parent, id, title, pos, size, style, name);
+ }
+
+ bool Create(wxWindow *parent,
+ wxWindowID id,
+ const wxString& title,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxDEFAULT_FRAME_STYLE,
+ const wxString& name = wxFrameNameStr);
+
+ virtual ~wxFrame();
+
+#if wxUSE_STATUSBAR
+ virtual void PositionStatusBar();
+
+ virtual wxStatusBar* CreateStatusBar(int number = 1,
+ long style = wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE,
+ wxWindowID id = 0,
+ const wxString& name = wxStatusLineNameStr);
+#endif // wxUSE_STATUSBAR
+
+#if wxUSE_TOOLBAR
+ virtual wxToolBar* CreateToolBar(long style = -1,
+ wxWindowID id = -1,
+ const wxString& name = wxToolBarNameStr);
+ void SetToolBar(wxToolBar *toolbar);
+#endif // wxUSE_TOOLBAR