X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9b73db3c34aefd98080b425459322fa821ae271f..fb2957900c9c38ffa03b4ab2ea6cbcc1e23ecc7d:/include/wx/msw/mdi.h diff --git a/include/wx/msw/mdi.h b/include/wx/msw/mdi.h index 828df13b23..ebbda27e84 100644 --- a/include/wx/msw/mdi.h +++ b/include/wx/msw/mdi.h @@ -68,7 +68,9 @@ public: // just return a new class) virtual wxMDIClientWindow *OnCreateClient(void); - WXHMENU GetWindowMenu() const { return m_windowMenu; } +// WXHMENU GetWindowHMENU() const { return m_windowMenu; } + wxMenu* GetWindowMenu() const { return m_windowMenu; }; + void SetWindowMenu(wxMenu* menu) ; // MDI operations // -------------- @@ -100,7 +102,8 @@ protected: wxMDIClientWindow * m_clientWindow; wxMDIChildFrame * m_currentChild; - WXHMENU m_windowMenu; +// WXHMENU m_windowMenu; + wxMenu* m_windowMenu; // TRUE if MDI Frame is intercepting commands, not child bool m_parentFrameActive; @@ -142,6 +145,8 @@ public: long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr); + virtual bool IsTopLevel() const { return FALSE; } + // MDI operations virtual void Maximize(bool maximize = TRUE); virtual void Restore();