On Wed, 16 Jul 2008 10:05:52 -0700, Jens Alfke <[EMAIL PROTECTED]> said:
>I've run into this problem a few times now: I have an
>NSWindowController subclass that manages a window. I want to handle
>certain hot-keys in this window, for example Esc to exit full-screen
>mode, or maybe use letter keys to switch tools as in Photoshop. Where
>do I put the handler for this?
>
>When this happened in the past I added a -performKeyEquivalent: method
>to a custom view in the window. However, this only makes sense
>architecturally if the action is related to that view; and if the view
>is a standard class (like NSTableView) then I have to subclass it just
>to add that one method. (AppKit doesn't send -performKeyEquivalent up
>the responder chain to the window's delegate, only to the views in the
>window.) This seems contrary to Cocoa's usual philosophy of delegation.
>
>Am I missing something?

Implement keyDown: in the NSWindowController? I'm not seeing a reason why
you need performKeyEquivalent to catch unmodified Esc and letter keys...
Actually I'm fond of sticking a singleton NSResponder into the chain after
the window and implementing keyDown: there. m.

-- 
matt neuburg, phd = [EMAIL PROTECTED], <http://www.tidbits.com/matt/>
A fool + a tool + an autorelease pool = cool!
One of the 2007 MacTech Top 25: <http://tinyurl.com/2rh4pf>
AppleScript: the Definitive Guide - Second Edition!
<http://www.amazon.com/gp/product/0596102119>



_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to