pos = GetMenuItemCount() - 1;
}
- // adjust position to account for the title, if any
- if ( !m_title.empty() )
+ // adjust position to account for the title of a popup menu, if any
+ if ( !GetMenuBar() && !m_title.empty() )
pos += 2; // for the title itself and its separator
BOOL ok = false;
return true;
}
+// get the menu with given handle (recursively)
+wxMenu* wxMenu::MSWGetMenu(WXHMENU hMenu)
+{
+ // check self
+ if ( GetHMenu() == hMenu )
+ return this;
+
+ // recursively query submenus
+ for ( size_t n = 0 ; n < GetMenuItemCount(); ++n )
+ {
+ wxMenuItem* item = FindItemByPosition(n);
+ wxMenu* submenu = item->GetSubMenu();
+ if ( submenu )
+ {
+ submenu = submenu->MSWGetMenu(hMenu);
+ if (submenu)
+ return submenu;
+ }
+ }
+
+ // unknown hMenu
+ return NULL;
+}
+
// ---------------------------------------------------------------------------
// Menu Bar
// ---------------------------------------------------------------------------
wxMenuBarBase::Detach();
}
+// get the menu with given handle (recursively)
+wxMenu* wxMenuBar::MSWGetMenu(WXHMENU hMenu)
+{
+ wxCHECK_MSG( GetHMenu() != hMenu, NULL,
+ wxT("wxMenuBar::MSWGetMenu(): menu handle is wxMenuBar, not wxMenu") );
+
+ // query all menus
+ for ( size_t n = 0 ; n < GetMenuCount(); ++n )
+ {
+ wxMenu* menu = GetMenu(n)->MSWGetMenu(hMenu);
+ if ( menu )
+ return menu;
+ }
+
+ // unknown hMenu
+ return NULL;
+}
+
#endif // wxUSE_MENUS