Tagged Questions
12
votes
1answer
940 views
Gap above NSMenuItem custom view
I am using the setView: method on an NSMenuItem to set a custom view. In this custom view there is an image which takes the whole of the view. The NSMenuItem with this custom view is the first in the ...
12
votes
2answers
779 views
How does Apple update the Airport menu while it is open? (How to change NSMenu when it is already open)
I've got a statusbar item that pops open an NSMenu, and I have a delegate set and it's hooked up correctly (-(void)menuNeedsUpdate:(NSMenu *)menu works fine). That said, that method is setup to be ...
6
votes
2answers
249 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, ...
4
votes
1answer
72 views
NSMenuItem enable items
I have an NSMenuItem with a bunch of items in it, however... the list just doesn't get enabled.
What I mean:
This is my code:
- (void)didFetchNewList:(NSArray *)list
{
NSArray *smallList = ...
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 ...
3
votes
2answers
164 views
Best way to wire up NSMenuItems from Interface Builder?
So I've spent some time checking out CocoaDev, reading the Cocoa docs on NSMenuItems, and doing some tests in Interface Builder.
In my application I have an application menu ([NSApp mainMenu]) ...
2
votes
1answer
45 views
Changing visibility of NSPopUpButton's items based on keypress
I've got an application here that needs to read in a bunch of data from an external file and display it as a NSPopUpButton in a Cocoa user interface. The catch here is that the data that is being read ...
2
votes
1answer
107 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
3answers
412 views
Highlighting a NSMenuItem with a custom view?
I have created a simple NSStatusBar with a NSMenu set as the menu. I have also added a few NSMenuItems to this menu, which work fine (including selectors and highlighting) but as soon as I add a ...
2
votes
2answers
222 views
Cocoa Key Equivalent in Menu is not working
I have created a NSStatusItem and I have assigned two key equivalents within interface builder (Xcode 4.0). These are for the preference menu cmd-, and the quit option cmd-q. Both of these will work ...
2
votes
1answer
163 views
Modify NSMenu structure on each open?
I need to be able to dynamically modify an NSMenu hierarchy each time it is shown (add/remove items etc). For example:
user starts a tracking session on a main menu and selects a submenu
detect ...
2
votes
1answer
201 views
Connecting Menu Items in Document Based Applications
I've already asked a couple questions on this topic, and haven't really received a real answer on how to do it (it actually received the "Tumbleweed Badge" lol).
I have a document based application ...
2
votes
1answer
134 views
Sync state of two NSMenuItems
I have two NSMenus with the same NSMenuItems. Only one NSMenuItem in its NSMenu should be selected. (Kind of like an NSMatrix). So I connected each NSMenuItem to the same action and added an iVar for ...
2
votes
1answer
420 views
NSTextField in NSMenuItem
Hi am writing small app for posting twitts on twitter.com
I manage to create statusbar icon next to clock and battery monitor, but now I am stacked...
I wanted to add menu item text area max length ...
1
vote
2answers
75 views
How to hide a NSMenuItem?
I'm currently writing a Mac App in Objective-C and can't for the life of me figure out how to hide a NSMenuItem. (Note: Yes I really mean hide, not disable/grey-out. I realize the UX implications of ...
1
vote
0answers
172 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
254 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
236 views
How do you hide a Menu Item with a custom view?
I am using a very simple custom view (containing only a read-only NSTextField and an NSSegmentedControl) in an NSMenuItem (using the -setView: method). This part works as expected.
Here's the ...
1
vote
1answer
536 views
Create NSMenu for NSStatusBar.systemStatusBar programmatically
I'm trying to create a simple menu in the System Status Bar using code only. I'm not receiving any compilation or runtime errors but I see no effect at all.
- (void)awakeFromNib
{
NSMenu ...
1
vote
1answer
166 views
How to add icons to the right hand side of NSMenuItem
I'm trying to add some icons to the right hand side of a menu next to a menu item, ideally all right justified. I'm aware that NSMenuItem allows you to add menu items (for instance, see the ...
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
336 views
menu item is enabled, but still grayed out
I have a menu with several items created in interface builder. It looks fine there and 'enabled' is checked.
But when I run application, all menu items are grayed out.
I've checked isEnabled, it ...
1
vote
1answer
68 views
Problem with disappearing NSMenuItems
I disabled "auto-enables menu items" for my app's main menu in Interface Builder because I need to disable some menus when certain views are loaded. I am running into a problem though. Whenever my ...
1
vote
2answers
291 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
2answers
613 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 ...
1
vote
2answers
237 views
Getting a particular menu item from MainMenu
I have a nib (winA.xib) that contains a window. My app delegate contains an NSWindowController subclass called WinAController.
WinAController has a property (NSMenu *mainMenu) that I want to point to ...
0
votes
1answer
23 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
1answer
28 views
NSMenuItem — include a simple graph
Is there a way to make a NSMenuItem display a simple graph / chart (really, extremely simple, something like this, even without the grid would be fine : )?
It would be great if this could be done ...
0
votes
1answer
45 views
NSMenuItem target and action
I would like to have help about binding a function to NSMenuItem.
I have an array of object Tab and I would like to draw an NSMenuItem for each of the Tab objects. I succeed in drawing and adding the ...
0
votes
1answer
45 views
Creating dynamic count of NSMenuItems
I'm currently struggling with dynamic UI in Mac OS X.
I created a Menu Bar item and want to add a dynamic count of MenuItems within it.
The count of the elements depends on Network interfaces on the ...
0
votes
1answer
114 views
Updating A Dynamically Created NSMenu with NSMenuItems
I have a NSMenu with 3 static NSMenuItems that I want to keep, and a bunch after that are dynamically generated and should be removed and reloaded each time the user clicks the menu icon.
I'm trying ...
0
votes
2answers
165 views
Set an NSButton's action to be the same as an NSMenuItem's
In my application, I save user preferences and one of the preferences is whether to show any NSMenuItems as buttons in the home window. I don't have problems to create the buttons dynamically, but I ...
0
votes
1answer
69 views
Getting textual input from a menubar app? Cocoa
So I created a menubar app (agent application) and I need to find some way to get textual input via the menubar icon. I heard that making a popup modal with a textfield is frowned upon, and putting a ...
0
votes
0answers
95 views
NSMenuItem actions overriding NSPopUpButton actions
I've noticed an interesting behavior and I wonder if it's something I'm doing wrong. I have an NSPopUpButton with several NSMenuItems on an NSMenu on the NSPopUpButton. When I click the popup button ...
0
votes
1answer
123 views
Populate a NSMenu from an NSArray with NSMenuItems - Need Alternative Suggestions
So I have the following code:
- (void)addSupportLinksMenuItems
{
NSString *subMenuTitle;
NSString *getURL;
if (!supportLinks) {
supportLinks = [[NSArray alloc] ...
0
votes
0answers
226 views
NSButton in NSMenuItem sometimes doesn't respond
I have a weird problem with an NSMenuItem and although I think it's very complicated to explain, I'll try and hope for some geniouses here...
I have a singleton which holds an array of items which ...
0
votes
1answer
345 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
1answer
381 views
Adding “Not Selected” Option To Bound NSPopupButton
I have an NSPopupButton that is bound to a core data backed NSArrayController. The selection of the NSPopupButton is also bound to a core data backed item. Bindings pretty much as follows:
NSArray ...
0
votes
1answer
821 views
NSMenuItem not being enabled?
I have an NSMenuItem called history which resides in a NSMenu called menu. When my program starts history doesn't have a submenu so its disabled. Then at some point, I need a submenu for history, so I ...
0
votes
0answers
77 views
Custom NSMenuItems with NSTextFields for the views used for a font menu with font names in font
The fontMenuLabel is an IBOutlet to a NSTextField. I am trying to create a font menu that displays all of the selectable fonts in their own font. I have seen this done in pages '09 ...
0
votes
1answer
292 views
NSMenu --> Adding SubMenu --> receive select event
I need to create a Menu for a selected row of a table,
I am able to create by overriding
-(NSMenu*)menuForEvent:(NSEvent*)evt
Method, of a table, This particular Menu has two sub-menu, i am able ...
0
votes
1answer
662 views
Change NSMenuItem state in MenuController from AppController?
My code is split into two main implementations: MenuController.m and AppController.m, each with header files.
I have a couple user preferences, which are stored using NSUserDefaults, and changed via ...
0
votes
3answers
509 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
496 views
NSMenu problems showing/hiding HUD NSPanel
Still having great difficulty with this problem. Any suggestions?
I cannot find a simple tutorial online that explains the basics of NSPanel windowing as different from NSWindow.
I have an HUD ...
0
votes
1answer
160 views
Can't populate NSMenu from document controller
I've a MainMenu.xib and a MyDocument.xib. I need to dynamically populate some NSMenuItem's from my document controller but I'm at a loss on how to get to it from MainMenu.xib.
I've tried adding an ...
0
votes
2answers
862 views
Adding item to NSMenu with action selector preset
I'm new to Obj-C/Cocoa programming, and I'm having an issue trying to dynamically add menu items to an NSMenu instance and have the items action selector already set upon insertion.
I can, add the ...