From: Chris Elliott Date: Wed, 1 Sep 2004 09:16:21 +0000 (+0000) Subject: mdi menu updates fixed (after SF 1012653) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6aca462878bbad1c83f9fc1241a23d2bbf8a8ecf?ds=inline mdi menu updates fixed (after SF 1012653) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28985 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/frame.h b/include/wx/frame.h index cc09dfbcb4..adb10c54a0 100644 --- a/include/wx/frame.h +++ b/include/wx/frame.h @@ -157,7 +157,7 @@ public: // send wxUpdateUIEvents for all menu items in the menubar, // or just for menu if non-NULL - void DoMenuUpdates(wxMenu* menu = NULL); + virtual void DoMenuUpdates(wxMenu* menu = NULL); #endif // wxUSE_MENUS // do the UI update processing for this window diff --git a/include/wx/msw/mdi.h b/include/wx/msw/mdi.h index 714c097592..a6fc56445b 100644 --- a/include/wx/msw/mdi.h +++ b/include/wx/msw/mdi.h @@ -69,7 +69,8 @@ public: // MDI windows menu wxMenu* GetWindowMenu() const { return m_windowMenu; }; void SetWindowMenu(wxMenu* menu) ; - + virtual void DoMenuUpdates(wxMenu* menu = NULL); + // MDI operations // -------------- virtual void Cascade(); diff --git a/src/msw/mdi.cpp b/src/msw/mdi.cpp index b1d924d27d..4bbb0a2b56 100644 --- a/src/msw/mdi.cpp +++ b/src/msw/mdi.cpp @@ -300,6 +300,34 @@ void wxMDIParentFrame::SetWindowMenu(wxMenu* menu) } } +void wxMDIParentFrame::DoMenuUpdates(wxMenu* menu) +{ + wxMDIChildFrame *child = GetActiveChild(); + if ( child ) + { + wxEvtHandler* source = child->GetEventHandler(); + wxMenuBar* bar = child->GetMenuBar(); + + if (menu) + { + menu->UpdateUI(source); + } + else + { + if ( bar != NULL ) + { + int nCount = bar->GetMenuCount(); + for (int n = 0; n < nCount; n++) + bar->GetMenu(n)->UpdateUI(source); + } + } + } + else + { + wxFrameBase::DoMenuUpdates(menu); + } +} + void wxMDIParentFrame::OnSize(wxSizeEvent&) { if ( GetClientWindow() )