Tagged Questions

2
votes
0answers
22 views

How can i pop up NSMenu at mouse cursor position?

I want to react on hot key press by displaying NSMenu at mouse cursor position. My application is UIElement and doesn't have its own window. I know there is method of NSMenu : ...
2
votes
1answer
2k views

Custom NSStatusItem with custom view - Use NSWindow, NSView, custom NSMenuItem?

I'm trying to create a LSUIElement app that behaves like Spotlight, CoverSutra and other apps of that type. I managed to create a custom NSStatusItem, which popups up an NSWindow but the problem is ...
1
vote
0answers
388 views

NSView's context NSMenu is never shown even though all the right methods are being called

I have an NSCollectionView with a bunch of NSViews in it, stacked vertically, to make it look a bit like UIKit's UITableView. Everything works as expected, except for one thing: When right-clicking ...
1
vote
1answer
364 views

NSView in NSMenu — how to make “key” for accepting keyboard commands [specifically, return]

I have a text field and a button living in a view inside a menu item. The button submits the string in the text field to a function, and that works fine. However, I've also set the button's key ...
0
votes
0answers
66 views

Strange visual display errors after [NSMenu cancelTracking]

I have a custom NSView inside an NSMenuItem. When the user clicks inside the custom view I want to perform an action and close the hosting popup-menu. I do this by capturing the mouseUp: event inside ...
0
votes
1answer
345 views

NSMenuItem custom view problems

I am trying to put a custom view inside an NSMenuItem and this is result I get: How can I remove the white padding on top and on the right hand side? Thanks.