X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4e41ce37ac7bcb43663241439cee68ebeff7ffc..b38b0d22d7a97ff66d824e11e3e1c96c4423900b:/include/wx/mac/mdi.h diff --git a/include/wx/mac/mdi.h b/include/wx/mac/mdi.h index df6eb3b412..d92254fe4d 100644 --- a/include/wx/mac/mdi.h +++ b/include/wx/mac/mdi.h @@ -54,17 +54,15 @@ public: long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL, const wxString& name = wxFrameNameStr); - void OnSize(wxSizeEvent& event); + // Mac OS activate event + virtual void MacActivate(long timestamp, bool activating); + + // wxWindows activate event void OnActivate(wxActivateEvent& event); void OnSysColourChanged(wxSysColourChangedEvent& event); void SetMenuBar(wxMenuBar *menu_bar); - // Gets the size available for subwindows after menu size, toolbar size - // and status bar size have been subtracted. If you want to manage your own - // toolbar(s), don't call SetToolBar. - void DoGetClientSize(int *width, int *height) const; - // Get the active MDI child window (Windows only) wxMDIChildFrame *GetActiveChild() const ; @@ -125,6 +123,9 @@ public: long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr); + // Mac OS activate event + virtual void MacActivate(long timestamp, bool activating); + // Set menu bar void SetMenuBar(wxMenuBar *menu_bar); @@ -162,6 +163,11 @@ class WXDLLEXPORT wxMDIClientWindow: public wxWindow // Note: this is virtual, to allow overridden behaviour. virtual bool CreateClient(wxMDIParentFrame *parent, long style = wxVSCROLL | wxHSCROLL); + // Gets the size available for subwindows after menu size, toolbar size + // and status bar size have been subtracted. If you want to manage your own + // toolbar(s), don't call SetToolBar. + void DoGetClientSize(int *width, int *height) const; + // Explicitly call default scroll behaviour void OnScroll(wxScrollEvent& event);