|
From: Ralph T. <ra...@us...> - 2005-04-11 22:13:27
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/sources/win In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv998/adobe-source/adobe/test/visual/sources/win Modified Files: event_dispatcher.cpp Log Message: The command modifier is being removed, this change means that it is no longer referenced in the Win32-specific part of ui-core. Index: event_dispatcher.cpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/sources/win/event_dispatcher.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** event_dispatcher.cpp 5 Apr 2005 05:46:05 -0000 1.1 --- event_dispatcher.cpp 11 Apr 2005 22:13:16 -0000 1.2 *************** *** 21,28 **** #define MAPMOD(osmod, adobemod) if (os_modifiers == (osmod)) result = result | (adobemod) // ! // Note that VK_MENU is the ALT key, and that VK_APPS is the "popup menu" key. ! // If I plug my keyboard into a Mac then the Windows-logo key becomes the Apple ! // key (also called the command key). However, the Windows-logo key brings up ! // the start menu, so I'm using the "popup menu" key for command instead. // MAPMOD(VK_CAPITAL, adobe::modifiers_caps_lock_s); --- 21,25 ---- #define MAPMOD(osmod, adobemod) if (os_modifiers == (osmod)) result = result | (adobemod) // ! // Note that VK_MENU is the ALT key. // MAPMOD(VK_CAPITAL, adobe::modifiers_caps_lock_s); *************** *** 30,34 **** MAPMOD(VK_SHIFT, adobe::modifiers_any_shift_s); MAPMOD(VK_MENU, adobe::modifiers_any_option_s); - MAPMOD(VK_APPS, adobe::modifiers_any_command_s); return result; --- 27,30 ---- |