- 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 GetClientSize(int *width, int *height) const;
- void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
- void GetSize(int *width, int *height) const;
- void GetPosition(int *x, int *y) const ;
+public:
+ wxMDIChildFrame();
+ 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);
+
+ // 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();
+ virtual void Maximize(bool WXUNUSED(maximize)) { };
+ inline void Minimize() { Iconize(TRUE); };
+ virtual void Iconize(bool iconize);
+ virtual void Restore();
+ virtual void Activate();
+ virtual bool IsIconized() const ;
+
+ virtual bool IsTopLevel() const { return FALSE; }
+
+ // Is the frame maximized? Returns TRUE for
+ // wxMDIChildFrame due to the tabbed implementation.
+ virtual bool IsMaximized(void) const ;
+
+ bool Show(bool show);
+
+ WXWidget GetMainWidget() const { return m_mainWidget; };
+ WXWidget GetTopWidget() const { return m_mainWidget; };
+ WXWidget GetClientWidget() const { return m_mainWidget; };
+
+ /*
+ virtual void OnRaise();
+ virtual void OnLower();
+ */
+
+ void SetMDIParentFrame(wxMDIParentFrame* parentFrame) { m_mdiParentFrame = parentFrame; }
+ wxMDIParentFrame* GetMDIParentFrame() const { return m_mdiParentFrame; }