added WXK_WINDOWS_XXX key constants

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19360 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-02-27 11:51:41 +00:00
parent 8a09029e0c
commit 702c420889
3 changed files with 121 additions and 76 deletions

View File

@@ -4860,6 +4860,12 @@ int wxCharCodeMSWToWX(int keySym)
case VK_OEM_6: id = ']'; break;
case VK_OEM_7: id = '\''; break;
#ifdef VK_APPS
case VK_LWIN: id = WXK_WINDOWS_LEFT; break;
case VK_RWIN: id = WXK_WINDOWS_RIGHT; break;
case VK_APPS: id = WXK_WINDOWS_MENU; break;
#endif // VK_APPS defined
default:
id = 0;
}