Tagged Questions
6
votes
2answers
254 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, ...
3
votes
1answer
548 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
1answer
393 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
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 ...
1
vote
0answers
130 views
NSMenutItem 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 ...
1
vote
2answers
614 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
32 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
{
...
0
votes
0answers
67 views
Strange visual display errors after [NSMenu cancelTracking]
I have a custom NSView inside an NSMenuItem. When the user clicks inside the custom view I want to perform an action and close the hosting popup-menu.
I do this by capturing the mouseUp: event inside ...
0
votes
1answer
351 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.
0
votes
0answers
228 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
515 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
557 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 ...
0
votes
1answer
364 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 ...