+ wxFrame();
+ 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();
+ bool Destroy();
+
+ virtual bool Show( bool show );
+ virtual void Enable( bool enable );
+ virtual void Centre( int direction = wxHORIZONTAL );
+
+ virtual void GetClientSize( int *width, int *height ) const;
+ virtual void SetClientSize( int const width, int const height );
+
+ // set minimal/maxmimal size for the frame
+ virtual void SetSizeHints(int minW, int minH,
+ int maxW = -1, int maxH = -1,
+ int incW = -1 );
+
+ virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0,
+ const wxString& name = "statusBar");
+ virtual wxStatusBar *OnCreateStatusBar( int number, long style, wxWindowID id,
+ const wxString& name );
+ virtual wxStatusBar *GetStatusBar() const;
+ virtual void SetStatusText( const wxString &text, int number = 0 );
+ virtual void SetStatusWidths( int n, const int widths_field[] );
+
+ virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1,
+ const wxString& name = wxToolBarNameStr);
+ virtual wxToolBar *OnCreateToolBar( long style, wxWindowID id, const wxString& name );
+ virtual wxToolBar *GetToolBar(void) const;