-DECLARE_DYNAMIC_CLASS(wxMDIChildFrame)
-public:
-
- wxMDIChildFrame();
- inline wxMDIChildFrame(wxMDIParentFrame *parent,
- wxWindowID id,
- const wxString& title,
- const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize,
- long style = wxDEFAULT_FRAME_STYLE,
- const wxString& name = wxFrameNameStr)
- {
- Create(parent, id, title, pos, size, style, name);
- }
-
- ~wxMDIChildFrame();
-
- bool Create(wxMDIParentFrame *parent,
- wxWindowID id,
- const wxString& title,
- const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize,
- long style = wxDEFAULT_FRAME_STYLE,
- const wxString& name = wxFrameNameStr);
-
- // Set menu bar
- void SetMenuBar(wxMenuBar *menu_bar);
- void SetTitle(const wxString& title);
-
- void SetClientSize(int width, int height);
- void SetClientSize(const wxSize& size) { wxWindow::SetClientSize(size); }
-
- void GetClientSize(int *width, int *height) const;
- wxSize GetClientSize() const { return wxWindow::GetClientSize(); }
-
- void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
- virtual void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
- { wxWindow::SetSize(rect, sizeFlags); }
- virtual void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
- virtual void SetSize(int width, int height) { SetSize(-1, -1, width, height, wxSIZE_USE_EXISTING); }
-
- void GetSize(int *width, int *height) const;
- wxSize GetSize() const { return wxWindow::GetSize(); }
-
- void GetPosition(int *x, int *y) const ;
- wxPoint GetPosition() const { return wxWindow::GetPosition(); }
-
- // Set icon
- virtual void SetIcon(const wxIcon& icon);
-
- // Override wxFrame operations
- void CaptureMouse();
- void ReleaseMouse();
- void Raise();
- void Lower(void);
- void SetSizeHints(int minW = -1, int minH = -1, int maxW = -1, int maxH = -1, int incW = -1, int incH = -1);
-
- // MDI operations
- virtual void Maximize();
- inline void Minimize() { Iconize(TRUE); };
- virtual void Iconize(bool iconize);
- virtual void Restore();
- virtual void Activate();
- virtual bool IsIconized() const ;
-
- // Is the frame maximized? Returns TRUE for
- // wxMDIChildFrame due to the tabbed implementation.
- virtual bool IsMaximized(void) const ;
-
- bool Show(bool show);
-
- inline WXWidget GetMainWidget() const { return m_mainWidget; };
- inline WXWidget GetTopWidget() const { return m_mainWidget; };
- inline WXWidget GetClientWidget() const { return m_mainWidget; };
-
-/*
- virtual void OnRaise();
- virtual void OnLower();
-*/