Tagged Questions
0
votes
0answers
30 views
NSPopUpButton: open pull-down menu above button
I have a NSPopUpButton that I want to open its menu above itself. Like in the screenshot below.
Setting preferredEdge doesn't do the trick as default is to show the menu below the
control. According ...
1
vote
1answer
132 views
Resize NSPopupButton to its selected title
I've a NSPopupButton and I want it so resize itself to fit the selected title.
[NSPopupButton sizeToFit] doesn't fit my needs because the popup is resized to the largest title item not to the current ...
0
votes
1answer
219 views
NSPopUpButton revert to initial state
I register for notification NSPopUpButtonWillPopUpNotification in order to change the pop up menu before it is shown. The new pop up menu consist of running Application list with respected icons. When ...
0
votes
1answer
256 views
Directly accessing the NSPopupButtonCell of an NSPopupButton (Cocoa OSX)
I know this is not normally recommended but I really need to access the NSPopupButtonCell of NSPopupButton. Is there a way to do this?
2
votes
2answers
2k views
How do I make an NSPopupButton that has a menu with images AND text?
I have a list of applications and I'd like to make an NSPopupButton that shows a menu of application names with their icon to the left of each item.
I've been able to bind the NSPopupButton to my ...