Tagged Questions
4
votes
1answer
357 views
Fake NSWindow with a NSView inside a NSMenuItem
Before I start I should say I know this seems like a long shot, however I figured it was worth a try.
One app I am working on right now is a Mac Statusbar App. It has a NSStatusItem in the menubar ...
2
votes
1answer
108 views
How to keep focus on NSStatusItem until toggling it again
I'm building an app the uses a NSStatusItem. I'm wanting my NSStatusItem to open when clicked and stay open until the user clicks the NSStatusItem again. As of right now, it opens the menu but the ...
2
votes
1answer
199 views
How do I get my menulet to look like this
How do i get this effect with a menulet application. I just want the window effect nothing else.
My current app looks like this. please if someone could shed some light it would be appreciated. ...
2
votes
0answers
893 views
Correct way to setup target/action for NSMenuItem in Cocoa?
I'm having some real difficulty with some initial Cocoa programming I am carrying out.
Essentially, I have an NSStatusBar item with an NSMenu attached as the menu. The menu has a single NMMenuItem. ...
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
173 views
How to create a NSWindow inside a menulet [closed]
I'm creating a menulet application in Xcode 4, and I'm trying to figure out how to display a window that will appear when the menulet icon is clicked. I would hope for the window to be displayed as ...
1
vote
3answers
257 views
Remove highlight from NSMenuItem after click?
I have added a custom view to my subclass of NSMenuItem (which sits in a NSStatusMenu), which means that by default it will not get "highlighted" with a blue/gray background.
I implemented this by ...
1
vote
2answers
312 views
Editable NSTextField in custom view of NSMenuItem
I have a subclassed NSView that I would like to contain an editable NSTextField, similar to Spotlight.
I am having significant difficult getting the text field to select and highlight. If I click ...
1
vote
2answers
292 views
NSMenuItem Title which changes over time
I would like to implement an NSStatusItem where the title changes over time. My ultimate goal is to display a countdown timer in the menu bar beside the image which I have set. Maybe I am going ...
1
vote
3answers
2k views
Custom NSView in NSMenuItem not receiving mouse events
I have an NSMenu popping out of an NSStatusItem using popUpStatusItemMenu. These NSMenuItems show a bunch of different links, and each one is connected with setAction: to the openLink: method of a ...
0
votes
2answers
260 views
How force NSMenuItem to redraw?
I'm implementing a custom status bar menu, which has a custom view with NSSearchField. I'm updating number of menu items according to search results. The number of menu items is changed as user types ...