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 = ...
3
votes
1answer
174 views
Remove the “Open Recent” menu item in Cocoa apps
I found a bunch of people asking this (remove or disable the recent-items submenu) and no answers.
After a bit of investigation ... the problem is that Apple has secretly hard-coded that particular ...
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
2answers
248 views
NSTextfield + NSMenu and first responder
I'm trying to implement my own autocomplemention system (result is pull from an sqlite database)
I've set up a NSTextField and the appropriate delegate. Each time the text in the NSTextField change, ...
2
votes
0answers
225 views
Is there a way to control the NSMenuItem item that is initially highlighted when opening a menu?
I'm working on the details of a symbols pop up button, similar to what Xcode 3 at the top of its editor window.
My controller object is the delegate of the NSMenu that is shown when the NSPopUpButton ...
2
votes
1answer
164 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
413 views
Capture key press events while NSMenu is open
I'm interested in capturing key presses while a NSMenu is open. For example, if the menu is open and the user presses "e", or "1" on the keyboard, send a particular message (preferably passing an ...
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
153 views
How to associate an action to a keyboard shortcut?
I've an IBAction that calls up a panel. I want to invoke that action with a keyboard shortcut but I'm at a loss on how to do it.
I guess one way of doing it would be to create a menu item, associate ...
2
votes
4answers
2k views
How to add a pop-up menu to a NSToolbarItem?
I'm trying to open a pop-up menu from a NSToolbarItem. I tried following this example but I can't use that class method because NSToolbar and NSToolbarItem inherit from NSObject and not from NSView.
...
1
vote
1answer
76 views
Memory management when updating the items in a NSMenu
I'd like to know if this is the correct way to avoid a memory leak in a Cocoa app.
My app has a method that updates an NSMenu's items:
//Remove and Release old Status Scan Menu:
if ...
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
237 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
0answers
388 views
NSView's context NSMenu is never shown even though all the right methods are being called
I have an NSCollectionView with a bunch of NSViews in it, stacked vertically, to make it look a bit like UIKit's UITableView. Everything works as expected, except for one thing:
When right-clicking ...
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
1answer
603 views
Cocoa AppKit - Dismissing a modal window (i.e. popup or contextual menu) and pressing the button currently hovered above
Basically I want to create the effect of that provided in the system's menu bar. A user presses on one of the menu headings, and as he moves across the different headings, the menus open up ...
1
vote
1answer
248 views
How can I keep an NSPopUpButton open after the user selects a menu item?
I have an NSPopUpButton providing the NSMenu for a status item with a custom view. The popup button displays a list of links. When the user selects a link from the list, the link is displayed in the ...
0
votes
0answers
5 views
NSPopUpButtonCell does not return current selection
I am using an NSPopUpButtonCell in an NSTableView. The popup button has a binding to an NSArray property offered by the ApplicationDelegate. When I select a menu item of the popup button I expect to ...
0
votes
0answers
12 views
Connect IBAction to NSMenu in system status bar
I am trying to figure out a way to connect an IBAction to a menu in the status bar. The goal is to cause this action to show a popover from NSPopover. I read through the similar questions about this ...
0
votes
2answers
53 views
Disclosure button displaying a menu
Please give me an advice how to implement this kind of disclosure button as on my screenshot - a disclosure "arrow down" button displaying a menu on click:
I've tried two approaches, using ...
0
votes
1answer
46 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
102 views
control NSSlider with arrows on NSMenu for a NSStatusItem- Objective-C/Cocoa
I would like to create a status item with a vertical slider in it, much like the sound control provided by Apple. My question is: how do I make it react to the up/down arrow keys, just like the slider ...
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
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
1answer
293 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
125 views
load a menu from nib
I have a Main.xib, with the main window, the main menu, and a second menu with a name "StatusMenu" that connects nowhere.
In my application, I have an NSStatusItem, and I want to press it, and ...
0
votes
1answer
155 views
Determine whether an NSMenu is opened
I have an NSMenu which opens when a user clicks an NSStatusItem in the status bar. How can I determine if the NSMenu is opened (expanded) or not?
Thank you!
0
votes
1answer
212 views
NSWindow in front of NSMenu
Is it possible to show an NSWindow in front of a NSMenu, so that it is not hidden behind it?
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 ...