Is it possible to give an NSView inside an NSPanel first responder status without giving the NSPanel key window status (making the main application window resign key)?
Thanks.
|
Is it possible to give an NSView inside an NSPanel first responder status without giving the NSPanel key window status (making the main application window resign key)? Thanks.
| |||
|
feedback
|
|
Well, I ended up figuring this one out, but it took a lot of research so I'll post the details here in case anyone else runs into the same problem. First of all, a few basics:
My Scenario: I added a child window containing an The first thing I tried was fooling the table view into thinking that it was inside the key window by overriding The Solution: So by default, NSBorderlessWindowMask will not allow the window to become key. To make the table view first responder, the window had to be key so I overrode
This subclass checks if the application is active, and if it is, it always returns | |||
|
feedback
|