Tagged Questions

0
votes
0answers
23 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 b …
1
vote
1answer
33 views

How to associate an action to a keyboard shortcut?

Hi all, I've an IBAction that calls up a panel. I want to invoke that action with a keyboard shortcut but I'm at a loss on how to do it. I guess one way of doing it would be to c …
2
votes
1answer
34 views

What’s the cleanest way to bind enumerated properties?

I have a menu which has an item for each value in an enum. The menu: [ ] Sort by Due Date [ ] Sort by Priority [√] Sort by Title The enum: typedef enum CW_TASK_SORT_METHOD { …
1
vote
3answers
75 views

How to add a pop-up menu to a NSToolbarItem?

Hi, I'm trying to open a pop-up menu from a NSToolbarItem. I tried following this example but I can't use that class method because NSToolbar and NSToolbarItem inherit from NSObj …
1
vote
2answers
79 views

How to have an NSMenu with dynamic actions

I want to create an NSMenu with an option similar to the Send To option you'd find in Windows Explorer where it will list the devices attached that you can send the file to. From …
0
votes
2answers
45 views

contextual menu item are not getting activated

Thanks Chuck for the quick reply. I am having a new problem now. my contextual menu is getting displayed but the menu items are not activated. so my new code for displaying the men …
0
votes
1answer
32 views

App crashes when updating an highlighted NSMenuItem

Heyho! I've a little app running as LSUIElement with a NSStatusItem. Sometimes the popupmenu's menuitems are updated by the code. But when the updated NSMenuItem (or its supermenu) …
0
votes
1answer
77 views

How can I keep an NSPopUpButton open after the user selects a menu item?

I have an NSPopUpButton providing the NSMenu for a status item with a custom view. The popup button displays a list of links. When the user selects a link from the list, the link …
0
votes
3answers
606 views

Is there an equivalent technique in Cocoa for the synchronous TrackPopupMenu in Windows?

In response to a rightMouse event I want to call a function that displays a context menu, runs it, and responds to the selected menu item. In Windows I can use TrackPopupMenu with …