0
votes
1answer
32 views

XCode display a project image in the credits.rtf file

I want to take an image from my project and add it to the "About MyApp" window. This seemed as simple as adding the image to the credits.rtf file; once I dragged and dropped the image from the ...
1
vote
0answers
62 views

NSMenu cancelTracking sometimes doesn't cancel tracking

I have a QT app, and I'm using native menus on OSX. I have custom-drawn menu items, which I created by attaching my own NSView-derived class to the NSMenuItems that I want to draw specially. This ...
0
votes
0answers
58 views

Unable to edit text field on view in status bar - menu item

In my application I have a status bar, showing a menu item. I have done binding of a view to the menu item, in XIB, such that it shows view when status item is clicked. I am showing a text field on ...
1
vote
1answer
537 views

Custom view in NSMenuItem disables the NSPopUpButton selection

I want to customize an an NSPopUpButton so I have implemented an CustomMenuItemView which right now only has the following code (for testing purposes): - (void)drawRect:(NSRect)dirtyRect { ...
6
votes
2answers
429 views

NSMenuItem's NSView not highlighting in submenu

I have an NSStatusItem that displays an NSMenu full of NSView subclasses. I override drawRect: in my NSView subclass to implement highlighting in the NSMenu and everything works fine in the root menu, ...
0
votes
1answer
783 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.
3
votes
1answer
697 views

Cocoa - Custom NSView in NSMenuItem will not draw

I have a custom NSView which used to get created in a NIB and assigned as the view for an NSMenuItem, which works great, but now I want to create the view in code (for good reason I can assure you) ...
2
votes
1answer
333 views

NSMenuItem custom view does not respond to keyEquivalent

I've set a custom NSView to a NSMenuItem to do my own drawing and rendering. However the 'keyEquivalent' assigned to the NSMenuItem does not seem to respond. I understand drawing and action handling ...
0
votes
1answer
405 views

How to flash a custom NSMenuItem view after selection?

I need to assign a view to an NSMenuItem and do some custom drawing. Basically, I'm adding a little delete button next to the currently selected menu item, among other things. But I want my custom ...
0
votes
3answers
1k views

Using NSProgressIndicator inside an NSMenuItem

I'm trying to use a NSProgressIndicator (indeterminate) inside of a statusbar-menu. I'm using an NSView-object as view for the menuitem, and then subviews the progress indicator to display it. But ...
0
votes
1answer
1k views

Loading NSView subclass from a XIB

I need to use a custom view into a NSMenuItem. I've created a new view XIB and customized the view in it. How can I load that view and set it in the NSMenuItem using the setView: method? UPDATE: I've ...
3
votes
1answer
919 views

Cocoa custom view for NSMenuItem

I am developing a small app that display the active mounts in a menu in the NSStatusBar. So far it looks like this: I want to add an eject button to the right of each menu item (like the left bar ...
2
votes
2answers
962 views

An NSMenuItem's view (instance of an NSView subclass) isn't highlighting on hover

I need to use a custom NSView subclass to draw some content, but it isn't drawing as highlighted when the user hovers and it doesn't dismiss the NSMenu when the user clicks on it. Any ideas? Edit So ...
0
votes
1answer
496 views

NSTableView and NSSearchField in an NSView, which is the outlet of an NSMenuItem, don't work

I'm having an NSView, which is set as the view: outlet of an NSMenuItem. The view contains an NSTableView (inside an NSScrollView) and an NSSearchField. The NSMenu is shown when the user clicks a ...
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 ...