Tagged Questions

12
votes
1answer
941 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 ...
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 = ...
2
votes
1answer
106 views

How do I adjust the size of an NSMenu to its content dynamically?

I have a standard NSMenu like this This menu was created with this code: NSMenu *menu = [[NSMenu alloc] init]; NSMenuItem *addMenuItem = [[NSMenuItem alloc] init]; [addMenuItem ...
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
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
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
183 views

NSMenuItem number bubble?

I have seen something like this: in a Menulet on the right of menu items and I can't figure out how to do it. Can anyone elaborate? Thank 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 ...
2
votes
1answer
138 views

What's the cleanest way to bind enumerated properties?

I have a menu which has an item for each value in an enum. The menu: [ ] Sort by Due Date [ ] Sort by Priority [√] Sort by Title The enum: typedef enum CW_TASK_SORT_METHOD { ...
1
vote
1answer
162 views

When to remove dynamic NSMenuItem's from an NSMenu

I have an NSMenu which contains a number of dynamic items. These items are created in NSMenuDelegate's menuNeedsUpdate method and are each assigned a representedObject. I'm looking to trim the object ...
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
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
153 views

How to know which NSTableView opened a Contextual Menu?

I have 5 NSTableView's instances that have the same contextual menu. When I get the message that the menu has been clicked I need to know which table sent it. I've checked the NSMenu documentation but ...
1
vote
1answer
148 views

Ellipsizing an NSMenuItem's title to the width of the menu

I want to programatically change an NSMenuItem's title, but ellipsize it so that this modification never causes the menu to increase in width. how can i do this?
1
vote
1answer
735 views

Alternative Menu Items in NSMenu

I have an NSMenu that contains NSMenuItems with custom views. I want it so that when the alt button is pressed, the menu items would change part of their look (through their view). I found ...
1
vote
0answers
749 views

How to customize NSMenu like the Apple Pro Apps?

I want to customize a NSMenu with NSMenuItems, so does it looks like the Apple Pro Apps. But how can I customize a NSMenu? There is no draw method to change the appearance. If I set a NSView to a ...
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
0answers
120 views

Update a Menu Item in Cocoa Dock Menu

I want to create a custom dock menu item and update it programmatically. I add to NSApplication delegate these methods /** * Customize dock menu */ - (NSMenu*) applicationDockMenu: (id) sender { ...
0
votes
0answers
66 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
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
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
1answer
92 views

How can I get a NSMenuItem from a submenu?

I have a reference to the outermost menu, but I'm trying to get a reference to an NSMenuItem that's nested in a submenu: NSMenuItem* file_menu = [menu itemWithTitle:@"File]; file_menu is obviously ...
0
votes
1answer
511 views

Creating NSMenu with NSMenuItems in it, programmatically?

First, I'd like to point out that this question is probably already asked, I just couldn't find any answers from them. So, I'm programmatically trying to create a NSMenu and NSMenuItem to the main ...
0
votes
1answer
86 views

How to remove NSMenuItem gap above custom view

I was looking for something discussed in following posts. Gap above NSMenuItem custom view. Reverse engineering an NSMenu for a Status Bar Item I tried the carbon code provided by Pierre Bernard ...
0
votes
0answers
151 views

Cocoa NSMenu(Item) shown but not highlighted

I have an (LSUIElement) application with a statusMenu (systemStatusBar, and statusItem), and a custom view for displaying the logo (but mainly to get a handle on drag and drop operations). Since ...
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
346 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
116 views

Canceling NSMenuItem update calls

Here's the challenge: I've got an NSMenu whose delegate populates it using the delegate methods: - (NSInteger)numberOfItemsInMenu:(NSMenu *)menu and - (BOOL)menu:(NSMenu *)menu updateItem:(NSMenuItem ...
0
votes
1answer
333 views

set titles of items in my app's main menu?

I am trying to change the titles of some of the items in my Cocoa app's main menu. I have tried setting them both within IB and also programmatically from my app's ...
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
2answers
247 views

@selector with multiple arguments

first my code: - (NSMenu*)sourceList:(PXSourceList*)aSourceList menuForEvent:(NSEvent*)theEvent item:(id)item { if ([theEvent type] == NSRightMouseDown || ([theEvent type] == ...
0
votes
1answer
108 views

Don't dismiss NSMenu when selected

How would you programatically prevent the dismissal of an NSMenu when an item is selected? Thanks.
0
votes
2answers
531 views

Reverse engineering an NSMenu for a Status Bar Item

I'm want to create a menu for a status bar item like the one seen in Tapbot's PastebotSync application: Does anyone have any ideas how to achieve the custom area at the top of the menu which is ...
0
votes
1answer
199 views

Displaying custom/arbitrary controls in an NSMenu

How can I Display an NSTextField or an NSProgressIndicator within an NSMenu? I'm looking to do something similar to the Spotlight icon menu, or the Help menu of most applications.
0
votes
1answer
193 views

how to set focus on NSMenu (make it get key events)?

I have a status menu with a NSSearchField and menu items. When search field is active and user presses up & down arrows, I'd like to start menu tracking, that is that the user will be able to move ...
0
votes
2answers
259 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 ...
0
votes
1answer
206 views

Selecting the first item in a popUpContextMenu

I work on a very keyboard intensive application. Both hands on the keyboard. No hands on the mouse. A user can, via the keyboard, popup a context menu, select an item and finally hit enter. [NSMenu ...
0
votes
1answer
77 views

Cocoa: Changing object property from different menu items

What's the rule of thumb if I want to change observed object's single property from different menu items (think - list of options). E.g. I have an app that displays a car in a single window. I have a ...
0
votes
2answers
162 views

First item in an NsMenu does not appear to show up (cocoa osx)

I am making my own NSMenu programatically and popping it up when a button is pressed. I create NsMenuItems and add them with the NSMenu method insertItem:atIndex:. For some reason whatever item is ...
0
votes
1answer
130 views

NSMenuItem not responding to setIndentationLevel:

If I call setIndentationLevel: on an NSMenuItem then nothing happens, if I call indentationLevel on it after I set it to 3, it returns 3 like it should. I'm adding the menu items to the Dock menu and ...
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 ...