i have app which open popover with NSTextField. The problem is that text field is not editable. Behavior for text field is set to Editable. I still can paste and copy text to this field but i can't edit it...
|
|
Not sure if you still need the answer, but there may be some others still looking. I found a solution on apple developer forums. Quoting the original author: The main problem is the way keyboard events works. Although the NSTextField (and all his superviews) receives keyboard events, he doesn't make any action. That happens because the view where the popover is atached, is in a window which can't become a key window. You can't access that window in no way, at least I couldn't. So the solution is override the method canBecomeKeyWindow for every NSWindow in our application using a category.
That makes the popover fully resposive. If you need another window which must respond NO to canBecomeKeyWindow, you can always make a subclass. |
|||||||||||
|
|
I struggled with this for a while as well, until I realized it was a bug. However, instead of relying on an isActive state of a NSStatusItem view, I find it much more reliable to use the isShown property of the NSPopover you have implemented. In my code, I have a NSPopover in a NSViewController:
|
|||
|
|
|
Definitely a bug. That bug report is exactly what I was trying to do. Even down to creating the status item and overriding mousdown. I can confirm that Balazs Toth's answer works. I just wonder if it might get in the way down the road. |
|||
|
|
|
Balazs Toth's answer works, but if you're attaching the popover to NSStatusItem.view the status item becomes unresponsive - requiring two clicks to focus. |
|||
|
What i found when working with this solution is that when NSStatusItem becomes unresponsive, you can easily override this behavior like this
You will check for the class of the window, if it matches the NSStatusBarWindow we can then check somehow if the NSStatusItem is active. If it is, that means we have to return YES, because this way the NSPopover from NSStatusItem will have all keyboard events. What I'm using for checking if the NSStatusItem was clicked (or is active) is that in my own custom view i have a bool value which changes when user clicks on the NSStatusItem, system automatically checks for "canBecomeKeyWindow" and when it does it will return NO and after user clicks on it (while it is returning the NO) it will change the bool value and return YES when system asks again (when NSPopover is being clicked for NSTextField editing). Sidenotes:
|
|||
|
|
|
Looks like this article covers this topic: Using NSPopover with NSStatusItem |
|||
|
|