1. added wxMenuBarBase
2. corrected typo in gtk/menu.cpp when dealing with Fn accel keys git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4204 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -137,6 +137,17 @@ void wxMenuItem::DeleteSubMenu()
|
||||
m_subMenu = NULL;
|
||||
}
|
||||
|
||||
// get item state
|
||||
// --------------
|
||||
|
||||
void wxMenuItem::IsChecked() const
|
||||
{
|
||||
int flag = ::GetMenuState(GetHMenuOf(m_parentMenu), id, MF_BYCOMMAND);
|
||||
|
||||
// don't "and" with MF_ENABLED because its value is 0
|
||||
return (flag & MF_DISABLED) == 0;
|
||||
}
|
||||
|
||||
// change item state
|
||||
// -----------------
|
||||
|
||||
|
Reference in New Issue
Block a user