-//----------------------------------------------------------------------
-
-class wxFrame : public wxWindow {
-public:
- wxFrame(wxWindow* parent, const wxWindowID id, const wxString& title,
- const wxPoint& pos = wxPyDefaultPosition,
- const wxSize& size = wxPyDefaultSize,
- long style = wxDEFAULT_FRAME_STYLE,
- char* name = "frame");
-
- void Centre(int direction = wxBOTH);
-#ifdef __WXMSW__
- void Command(int id);
-#endif
- bool CreateStatusBar(int number = 1);
- wxMenuBar* GetMenuBar();
- wxStatusBar* GetStatusBar();
- wxString GetTitle();
- void Iconize(bool iconize);
- bool IsIconized();
- void Maximize(bool maximize);
-#ifdef __WXMSW__
- void SetAcceleratorTable(const wxAcceleratorTable& accel);
-#endif
- void SetIcon(const wxIcon& icon);
- void SetMenuBar(wxMenuBar* menuBar);
- void SetStatusText(const wxString& text, int number = 0);
- void SetStatusWidths(int LCOUNT, int* LIST); // use typemap
- void SetTitle(const wxString& title);
-
-};
-
-//---------------------------------------------------------------------------
-
-#ifdef __WXMSW__
-class wxMiniFrame : public wxFrame {
-public:
- wxMiniFrame(wxWindow* parent, const wxWindowID id, const wxString& title,
- const wxPoint& pos = wxPyDefaultPosition,
- const wxSize& size = wxPyDefaultSize,
- long style = wxDEFAULT_FRAME_STYLE,
- char* name = "frame");
-};
-#endif