The NSPopUpButtonCell class defines the visual appearance of pop-up buttons that display pop-up or pull-down menus.
0
votes
0answers
28 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 ...
0
votes
0answers
26 views
Set the title of an NSMenu to the title of the clicked MenuItem in its submenu
I have an NSPopUpButtonCell that includes an NSMenu. This NSMenu consists of 6 NSMenuItems. These 6 NSMenuItems have SubMenus on their own and these SubMenus have NSMenuItems as well.
MainMenu 1
...
0
votes
1answer
86 views
Setting Selected Index of NSPopUpButtonCell in NSTableView
I populate a column in an NSTableView with NSPopUpButtonCell instances (just dragged such a cell to a column in IB).
Everything works fine, except for one thing : when I try to set the selected item ...
0
votes
0answers
67 views
why pop up button cell returns nil
I'm using a pop up button cell with outlineview, and bound the cell's selected index with a tree controller.But first time you choose a selection in the cell, it aways set my object's binded property ...
1
vote
1answer
131 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
126 views
Custom NSPopUpButtonCell outlet / bindings
I'm having a problem with a custom NSPopUpButtonCell in a table that's instantiated when the table view is populated via bindings and a NSArrayController.
The pop up button cell is created but when ...
0
votes
1answer
184 views
NSPopupButton content binding to NSAttributedString
I've got a NSArrayController dynamically populating a table with a bunch of columns, one of them has a popup button. The content of the popup button cell needs to use NSAttributedString as I need to ...
0
votes
2answers
89 views
NSPopUpButtonCell indexOfSelectedItem always returns 0
I have a NSTableView with each cell containing a NSPopUpButtonCell. I have set the NSPopUpButtonCell 's action to a method that simply checks for the selected index (so that this can be saved and the ...
2
votes
1answer
132 views
Why is NSPopUpButtonCell showing correctly when only setObjectValue:nil is called?
An NSTableView has multiples NSCells (indirectly via NSTableColumn). NSCell follows the Flyweight design pattern; they're cookie-cutters. There's one cell per column and it's asked to draw itself ...
0
votes
1answer
378 views
How to retrieve the current selection of an NSPopUpButtonCell?
I am using an NSPopUpButtonCell in an NSTableView. The popup button has a binding to an NSArray property offered by the ApplicationDelegate. When I select a menu item of the popup button I expect to ...
0
votes
1answer
93 views
Reusing NSArrayController in multiple places
I have a simple NSArrayController hooked up to one of my coreData models. I can easily show all the items in a NSTableView without problem, however, if I try to bind a NSTableColumn containing a ...
0
votes
1answer
110 views
What are all the things you can bind to in a NSTableColumn of NSPopupButtonCell?
There are quite a few things you can bind to in a NSTableColumn filled with NSPopupButtonCell, I tried looking around for explanations but couldn't seem to find any.
What are each of the binding ...
0
votes
1answer
283 views
Proper way to populate NSPopUpButtonCell using NSTableViewDataSource
Lets say a Person has many Cars and they have a favorite Car. I cannot seem to find in the docs where it describes the right way to populate the NSPopUpButtonCell in a tableview, differently for each ...
0
votes
1answer
401 views
NSTableView with Dropdown Menu and having Image inside Menu
Yes,
Is it possible to have
a) A table having two column ( Should be easy)
b) One of Cell should have image and that should be selectable from Drop - down menu
By googling what i came to know it ...
1
vote
1answer
448 views
Problem with NSPopupButtonCell bindings
I'm trying to achieve something similar to the Apple Master-Detail pop-up cell example but the bindings don't seem to be working for me.
My app allows users to build up a stageplay; so I have a table ...
4
votes
2answers
422 views
NSPopUpButtonCell with hierarchical menu in NSTableView
I have an NSTableView of which one column contains NSPopUpButtonCells. This column is assigned to an IBOutlet. My application's controller class creates a menu in it's init and assigns it to the ...
0
votes
1answer
218 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 ...
2
votes
2answers
2k views
Using NSPopUpButtonCell with NSTableView
Hello I am trying to use a NSPopUpButtonCell inside an NSTableView. Basically when you select an item in the pop up I want it displayed in the table view column/row. When an item in the popup cell is ...
0
votes
1answer
254 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?
1
vote
1answer
324 views
Dynamically populated NSPopUpButtonCell menu in an NSOutlineView
I’m working with an NSOutlineView which has two columns. My dataSource supplies the outline view with a tree of items of a custom class which represents file types (that is, you initialise it with a ...
0
votes
1answer
827 views
Populating an NSPopUpButtonCell with string values
I am trying to populate a NSPopUpButtonCell with a list of strings. In -(init), I populate an NSArray with the values I want in the PopUp Button. How do I connect this to the NSArrayController I ...
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 ...
0
votes
2answers
303 views
Programatically instantiating a NSPopUpButtonCell in Cocoa OSX
I have an openGL GUI interface and I need to have a popup menu that will be called when this a certain button is pressed in my openGL display. I want to display a menu similar to the one that pops up ...
0
votes
1answer
225 views
How to use NSDateFormatter with NSPopUpButton
I have an NSPopUpButton's content bound to an Array Controller of "Meeting" entities and it's content value bound to the same array controller, but to the "date" model key path. Everything works fine. ...
0
votes
1answer
425 views
Filtering entries from a Core Data entity that appear in an NSPopUpButton list
I'm familiar with how to feed data from one Core Data entity into an NSPopUpButton item so that it can be selected for another. Bindings like so:
For the values themselves:
-> ...
1
vote
1answer
459 views
NSPopupButton, updates depending on another NSPopupButton
I wish to make a city/country selector using 2 NSPopupButtons. One popup button will contain the first part e.g. UK, and the second one will contain the second part e.g. London
So the whole ...
1
vote
1answer
379 views
How do I manually highlight an NSPopUpButtonCell when drawing it (draw it using white instead of black)?
I've got a custom cell composed out of several cells, one of which is an NSPopUpButtonCell.
When drawing my custom cell highlighted, I want to cause all the sub-cells to highlight as well (typically ...
2
votes
2answers
565 views
NSPopUpButtonCell inside custom NSCell does not change selection when item is selected from menu
I have an NSPopUpButtonCell inside a custom NSCell and I'm using
- (BOOL)startTrackingAt:(NSPoint)startPoint inView:(NSView *)controlView
to produce the pop up menu when it's clicked.
I have also ...
1
vote
1answer
400 views
NSPopUpButtonCell inside custom cell does not pop up when clicked
I've created a custom subclass of NSCell with an NSImageCell, some NSTextFieldCells, and an NSPopUpButtonCell.
I'm initializing the pop up cell using:
myPopUpCell = [[NSPopUpButtonCell alloc] ...
0
votes
1answer
230 views
How do I force an NSPopUpButtonCell to redisplay itself?
I'm creating a custom subclass of NSPopUpButton and NSPopUpButtonCell to display a lone icon on top of the button instead of the usual text.
To do this I'm overriding
- ...