From a77ce99a3d183f94af7ab0d51129b83e43f3685c Mon Sep 17 00:00:00 2001 From: nico Date: Wed, 13 Oct 1999 00:53:20 +0000 Subject: [PATCH] Various fixes mainly for keyboard event processing. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5003 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/ChangeLog b/ChangeLog index b6926516d..903469cfe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +Wed Oct 13 1999 Nicola Pero + + You should now be able to use key equivalents for buttons. + See core/Testing/Calculator.app for a running example. + * Source/NSApplication.m ([-sendEvent:]): Changed modifier used + for key equivalents to NSControlKeyMask. + * Source/NSButtonCell.m ([-_init]): By default, set + keyEquivalentModifierMask to NSControlKeyMask. + * Source/NSButton.m ([-keyDown:]): Removed invocation of + peformKeyEquivalent:. Key equivalents are not processed here. + * Source/NSWindow.m ([-keyDown:]): After all else fails, try + considering the key as a keyEquivalent without Control pressed. + * Source/NSWindow.m ([-initDefaults]): Make the default first + responder the window itself. ([-display]): Modified initial first + responder stuff accordingly. + Tue Oct 12 1999 Richard Frith-Macdonald * Source/NSApplication.m: Attempts to fix ordering of application