Tagged Questions
13
votes
2answers
851 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 ...
12
votes
1answer
1k 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 ...
7
votes
1answer
218 views
Update NSMenuItem while the host menu is shown
I have an NSMenuItem that I need to update to show a progress (like Time machine does with it's backup). The problem is that when I set a new title on that NSMenuItem and the title is not changing.
...
7
votes
0answers
872 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 ...
6
votes
2answers
264 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
96 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
377 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
1answer
579 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
30 views
Can't get NSXMLParser data into textfield, menu item, or label
I am using the code below to parse an online XML file. When I run the application, my textfields are empty. How do I extract the strings from the NSXMLParser and put them into IBOutlets such as ...
2
votes
1answer
55 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
132 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
124 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
476 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
234 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
213 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
1answer
322 views
How do I bind an NSMenuItem to an NSArrayController
How do I bind the enabled state of an NSMenuItem to an NSArrayController's selection? I've tried binding the item's enabled state to the controller's selectedObjects or selectedIndexes and in neither ...
2
votes
1answer
176 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
0answers
938 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
407 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
220 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
108 views
Why cannot I open the Preferences from each windows?
I have come across this Cocoa application (source code) that shows a main Window.
As long as this window is key it is possible to open the Preferences window from the Main menu as well as by hitting ...
2
votes
1answer
194 views
NSMenuItem -setTarget: Does it retain the target?
NSMenuItem -setTarget: Does it retain the target, or should one explicitly retain it?
I've seen conflicting docs on this. I know of retainArguments in NSInvocation, but I'm not sure this applies to ...
2
votes
1answer
352 views
Programmatically adding glyphs (delete key, backspace, space, etc) to menu item
It used to be that in Carbon you could use SetMenuItemKeyGlyph. What's the alternative under 10.6? Will I need to use undocumented goodness or...?
Thanks
2
votes
1answer
192 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
437 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 ...
2
votes
1answer
144 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
24 views
Cannot seem to setEnabled:NO on NSMenuItem
I have subclassed NSMenu and connected a bunch of NSMenuItem's via Interface Builder. I have tested via the debugger to see that they really get initialized.
The menu is set to not auto enable items. ...
1
vote
2answers
108 views
64-bit replacement for [NSMenuItemCell menuView] and [NSMenuItemCell setMenuView]
What are the 64-bit replacements for the two methods -[NSMenuItemCell menuView] and -[NSMenuItemCell setMenuView:] of the NSMenuItemCell class?
How can I obtain the same results?
1
vote
2answers
144 views
How to connect a menu item to a custom action defined in the NSApplication delegate across nib files?
In my Cocoa app I have two NIB/XIB files that I need to connect:
MainMenu.xib: contains a custom object for the NSApplication delegate object and connects it to the proper outlet in the ...
1
vote
1answer
37 views
Where to implement methods for menu item that is not window dependent (Cocoa OSX
I currently implement most of the functions for my mainMenu in a NSWindowController subclass, this works fine for most functions but I would like to be able to use some menu items when no Window is ...
1
vote
1answer
174 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
0answers
193 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
2answers
266 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
579 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
180 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
332 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
1answer
149 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
381 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
2answers
276 views
@selector with multiple arguments
first my code:
- (NSMenu*)sourceList:(PXSourceList*)aSourceList menuForEvent:(NSEvent*)theEvent item:(id)item
{
if ([theEvent type] == NSRightMouseDown || ([theEvent type] == ...
1
vote
1answer
416 views
disabled nsmenuitem
I programmatically create an NSMenuItem and it is disabled. If I override the validateMenuItem: method and return YES for all items, the menu item works fine.
Why would it not be enabled when I tell ...
1
vote
2answers
300 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
159 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
0answers
146 views
NSMenuItem Hidden binding issue
I have an NSMenuItem which I have bound to an NSUserDefaults boolean value in IB like so:
When bMenuHidden is true, I would like my NSMenuItem to be hidden, and vice versa. This works as expected ...
1
vote
1answer
163 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
2answers
636 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
259 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 ...
1
vote
1answer
775 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
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 ...
1
vote
2answers
531 views
How to draw my own key equivalents in NSMenuItem?
I would need something this owner drawn tab completition key equivalents in my own code. Like TextMate does in this example.
I heared that the menu drawing is Carbon based but I don't hope it is such ...
0
votes
1answer
25 views
NSPanel Popping up in the wrong space
So, I'm looking through this source, trying to make one of those status bar applications with a custom popover using an NSPanel -
All works fine and dandy. Clicking the menulet calls [panel ...