NSTextField in NSMenuItem

2010-12-24 Thread Joshua Garnham
How can I display an editable NSTextField inside an NSMenuItem? I'm looking to do something similar to Spotlight. Would it work by simply usingsetView: on the menu item? Thanks! ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

Re: NSTextField in NSMenuItem

2010-12-24 Thread Kyle Sluder
On Fri, Dec 24, 2010 at 12:49 PM, Joshua Garnham joshua.garn...@yahoo.co.uk wrote: How can I display an editable NSTextField inside an NSMenuItem? I'm looking to do something similar to Spotlight. You can't. NSMenu doesn't support the event model necessary for this. Spotlight doesn't use

Re: NSTextField in NSMenuItem

2010-12-24 Thread John C. Randolph
NSMenuItem's -setView: method should do what you need. -jcr On Dec 24, 2010, at 11:49 AM, Joshua Garnham wrote: How can I display an editable NSTextField inside an NSMenuItem? I'm looking to do something similar to Spotlight. Would it work by simply usingsetView: on the menu item