The NSMenuItem class from AppKit.framework in Mac OS, defines objects that are used as command items in menus.
0
votes
0answers
20 views
Custom view for NSMenuItem in menu bar app and cursor keys
I am trying to create a simple menu bar application with Cocoa. There are lots of tutorials for it and i got it working - up to a certain point:
My NSStatusItem gets displayed in the status bar, my ...
0
votes
1answer
31 views
ValidateMenuItem is not getting called for NSMenuItem
Here is my sample class and usage:
@interface CCocoaMenuItem : NSMenuItem
{
someClass *someobj;
}
- (void)menuEventHandler:(id)target;
- (void)setEnableItem:(BOOL)nEnabled;
@end
...
0
votes
1answer
32 views
XCode display a project image in the credits.rtf file
I want to take an image from my project and add it to the "About MyApp" window.
This seemed as simple as adding the image to the credits.rtf file; once I dragged and dropped the image from the ...
0
votes
2answers
45 views
NSEvent click right menu
I use this code to have two different behaviors when click right or left on menu.
Click left and click right + cmd.
How can I right click without pressing cmd + click in the simplest way?
...
1
vote
0answers
35 views
NSMenu update title
I have created an NSMenu that is dynamically created and lists the HDD's attached to the computer. Each of these is a submenu that contains a NSMenuItem that is created with the title "Calculating ...
0
votes
2answers
52 views
NSMenuItem toggle Bold Font style
I have to implement NSMenuItem such a way that selected NSMenuItem should have Bold Text , this is what i have done,
@implementation NSMenuItem (Font)
-(void)setBoldStyle:(bool)bBold{
NSString* ...
3
votes
0answers
65 views
Weird issue with NSMenuItem, custom view and mouseUp:
I'm having a very very strange issue here with a NSMenu.
About half the NSMenuItems I use have custom views on them through the setView: method on NSMenuItem. In this custom view I've implemented ...
1
vote
0answers
131 views
NSMenu - dynamically adding NSMenuItem and Menus recursively
I need to create a tree structure for NSMenu using data like
01.level1:01.level2.1:01.level3.1#123456
01.level1:01.level2.2:02.level3.2#622112
01.level1:02.level2.3#98798
rootMenuItem -> level1 ...
0
votes
0answers
18 views
Tracking NSMenuItem in XCode Instrument?
My plugin application have a strange issue with a host application.
When it's instantiated, some of menu item are grayed in the host application.
Is there a way to track this kind of issue with ...
0
votes
0answers
72 views
Populating NSPopupButton with Core Data Entity plus a menu Item
Is there a way to put the list of a core data entity into a NSPopupButton and additionally put a menu item there?
I have two core data entities, say Person and Car.
A Person has many Cars ...
0
votes
1answer
181 views
MAC OSX NSStatusItem with Custom NSMenu/MenuItems AND Drag And Drop functionality
I am trying to create a Mac Application that has an NSStatusItem icon in the Status Bar. The status bar icon should support file drag and drop and must also show a menu when clicked.
The problem is ...
1
vote
3answers
140 views
How to change NSMenuItem Title (Login to Logout)
Im surprised that this hasn't already been asked:
But how does one go about changing the NSMenuItem title in a NSStatusBar menu. When a user logs in I want the menu item to say logout. I have tried ...
0
votes
1answer
91 views
Setting Selected Index of NSPopUpButtonCell in NSTableView
I populate a column in an NSTableView with NSPopUpButtonCell instances (just dragged such a cell to a column in IB).
Everything works fine, except for one thing : when I try to set the selected item ...
0
votes
0answers
16 views
Add MenuItem to Twitterrific Menu (SIMBL)
Hey i did a bit of reverse engineering and i found out that the menu (which pops up when you click on the CharacterCounterButton in the "Compose new Tweet View" is filled in Class ...
0
votes
1answer
71 views
Create SIMBL Plugin in Cocoa
I want to make a very basic SIMBL Plugin - just add a new Menu in Safari.
This is what I've tried:
I added this to my plist:
<key>NSPrincipalClass</key>
...
2
votes
2answers
54 views
Display Model's Data in NSMenuItem
I'd like to display some data of my model within a status bar menu. So, I bound my entity-object to the title of an NSMenuItem:
[self.statusMenu setAutoenablesItems:NO];
NSMenuItem ...
1
vote
0answers
63 views
NSMenu cancelTracking sometimes doesn't cancel tracking
I have a QT app, and I'm using native menus on OSX. I have custom-drawn menu items, which I created by attaching my own NSView-derived class to the NSMenuItems that I want to draw specially. This ...
1
vote
1answer
127 views
NSMenuItem Key Equivalent not working when menu is hidden
I have an NSMenu in Interface Builder that is connected to an NSTableView's menu outlet.
I want to assign Key Equivalents to the items in this menu so the user doesn't have to right click, but they ...
-1
votes
1answer
82 views
sort NSPopUpMenu items alphabetically
I want to sort the NSMenuItems of a NSPopUButton alphabetically.
I checked the cocoa reference and i can't find a function that does this.
Am i missing something or i have to write my own sorting ...
0
votes
1answer
275 views
Custom NSMenu design
Tough question. I'm looking for examples to create a custom NSMenuItem design. I want to achieve something like http://anvilformac.com/. Are there any examples out there that could put me in the right ...
0
votes
2answers
226 views
How to set the font of NSMenu/NSMenuItems?
I can’t figure out how to set the font/styling of my NSMenuItems in my NSMenu. I tried the setFont method on the NSMenu but it doesn’t seem to have any effect on the menu items. NSMenuItem doesn’t ...
0
votes
1answer
113 views
OS X, Why is Help NSMenuItem in NSMenu disabled after registering the Help Book?
OS X, Why is Help NSMenuItem in mainMenu disabled after registering the Help Book
Tags: OSX, HelpBook, NSMenuItem, AHRegisterHelpBookWithURL
The HelpBook is unusable because the Help menu is ...
0
votes
1answer
108 views
Adding static items to “Windows” menu in Cocoa application
I have a application with 2 windows (think like Twitter Timeline and mentions). For now I have been having the menus "Timeline ⌘1" and "Mentions ⌘2" in the "File" menu but this is kind of wrong. So I ...
1
vote
1answer
119 views
Find NSMenu position which was shown on right click
In my app I have three NSImageView. When the user right click over the imageview, I am showing a NSMenu which two NSMenuItems "Add Photo", "Delete Photo". Since I have three Imageview I need to know ...
0
votes
0answers
87 views
NSMenuItem Key Equivalent not working
I am trying to create a keyboard shortcut for a NSMenuItem. From what I understand, setting a Key Equivalent for the NSMenuItem in the Interface builder should do it. But unfortunately it's not doing ...
0
votes
0answers
68 views
NSPopupButton doesn't show list when being inside a nsmenuitem
I'm a beginner at Cocoa.
I'm writing a status bar application. Inside the NSMenu, the first menuitem's view is a custom view, which containing a nspopupbutton. The pop up button is bound to an array ...
0
votes
0answers
93 views
NSPopover relative to NSMenuItem
I'm working on an OSX application which uses a NSMenu to display content.
I'd like to make a NSPopover appear when an NSMenuItem is highlighted, but I'm stucked with the ...
1
vote
1answer
76 views
Mac app, NSDocument window does not appear in Window menu
I have continued work on an app made by another. It looks in relevant parts identical to the standard NSDocument window-based app that you get when starting a new project (where the Window menu works ...
0
votes
2answers
192 views
Mac app, menuitem to bring main window to front grayed out on close/minimize
I'm trying to add a menu item to show the main window. It's enabled when the window has not been minimized or closed (yellow - and red x buttons), but when it has, the menu item is grayed out. That is ...
0
votes
1answer
148 views
Transparent NSMenu
I'm trying to change the opacity of a NSMenu, I made custom NSMenuItems and changed their opacity but there is still the white color of menu behinde them, I'm looking for a way too change the color ...
0
votes
0answers
57 views
Display Different Icon when NSMenuItem is selected
I'm implementing a status bar only application (just an icon, and a dropdown menu) and I'm facing this issue :
When the menu is not selected, the icon show alright
When the menu IS selected, the ...
1
vote
0answers
83 views
Changing the Save (saveDocument:) menu text
In our Cocoa NSDocument-based application we have a Save (saveDocument:) button on a context menu, but we want the text of the menu-item to change depending on the circumstances of the NSDocument, in ...
1
vote
1answer
197 views
NSMenuItem setHidden doesnt work?
I try to hide a NSMenuItem but the method doesn't work. My NSMenuItem is not nil (-setTitle, -setEnabled work as expected). Outlet is connected correctly in the IB and -setAutoEnableItem is set to NO.
...
0
votes
0answers
124 views
IBOutlet is nil?
I have the following code:
.h
IBOutlet NSMenuItem *item1;
@property(assign) IBOutlet NSMenuItem *item;
.m
@synthesize item1=_item;
-(void)dealloc {
[_item1 release];
[super dealloc];
}
...
-3
votes
1answer
227 views
NSAppleScript Returned Value
How do I get the returned value from an NSAppleScript.
I am using apple script to get the song title in iTunes and take that value and set NSMenuItem's title.
My code: .M
//run applescript
...
0
votes
1answer
50 views
NSMenu - Recent list
I need to implement a "recent list" for uploaded images like in cloudapp or droplr.
So whenever i upload an image it should create a nsmenuitem with its title(or url).
There should be always the last ...
0
votes
2answers
289 views
How do I route menu actions to an NSViewController inside a window?
I have a menu item inside the main app menu and I’d like to route its action to a view controller (NSViewController). The interface hierarchy looks like this: There’s a main app window controller by ...
1
vote
2answers
127 views
Hide the title of an NSMenuItem, just show its image?
I have an NSMenu (belonging to an NSPopUpButton) where the NSMenuItem all have images set and I'd like them to display only the images, not the titles. I can't unset the titles, though, since they ...
0
votes
0answers
58 views
Unable to edit text field on view in status bar - menu item
In my application I have a status bar, showing a menu item. I have done binding of a view to the menu item, in XIB, such that it shows view when status item is clicked. I am showing a text field on ...
1
vote
3answers
273 views
NSMenuItem KeyEquivalent “ ”(space) bug
I want to set key equivalent " "(space) without any modifiers for NSMenuItem (in App Main Menu).
As follows from documentation:
For example, in an application that plays media, the Play command ...
1
vote
1answer
419 views
Xcode/Interface Builder Mac App Development [closed]
Well i want from the drop down menu(Menu Item List) one item to be working as an link, to open an url/website in safari - thats it. When this is so simple, why no one come up with a clue here - I ...
0
votes
1answer
383 views
cocoa NSMenu add NSMenuItem in position
I'm trying to create an NSMenu in my application. I succesfully create the menu, with some fixed items, and now I have to add some items programmatically. I succeed also in that, but it adds the item ...
3
votes
1answer
120 views
Ugly character in NSMenuItem's key equivalent
In my app's main menu I have a menu item that I'd like to set to the shortcut alt+"minus sign". I was able to set the key equivalent in IB, and it triggers as expected, but it's really ugly when ...
0
votes
0answers
218 views
How to call NSMenu validateMenuItem ?
I need dynamically enabling voice on a NSMenu.
The first check is done with validateMenuItem in this way:
-(BOOL)validateMenuItem:(NSMenuItem *)menuItem{
NSMenuItem *item = [self.menu ...
0
votes
2answers
212 views
Popped Up NSMenu Always Highlights First NSMenuItem
I have an NSButton that when clicked calls [NSMenu popUpMenuPositioningItem:atLocation:inView:]. The menu pops up in the proper location however the topmost NSMenuItem is always highlighted blue, as ...
0
votes
2answers
160 views
NSMenuItem Title Set to String and NSString?
So basically I have an IBoutlet NSMenuItem called localIP. I am using the setTitle instance in my .m and I want to set the title equal to a string (@"") and an NSString.
Look at the following ...
0
votes
0answers
113 views
Connect menu item to table view
I have an application with a single window. In this window I have a table view with two items. Now I have added two menu items in the menu. I want to connect the menu item to the table view, but I do ...
1
vote
1answer
289 views
cocoa: menu bar item with backspace as key equivalent
I would like to set the key equivalent of a menu bar item in IB to the backspace key (delete left of the cursor), but for some reason this doesn't seem to work. I can assign all kinds of keys to it, ...
0
votes
1answer
400 views
Get index of NSMenuItem (sender) in parent menu
I'm having a NSMenu (application dock menu) and several items in it with the same action.
How can I figure out the index of the sender item (the one triggering the action) within its container menu? ...
1
vote
3answers
658 views
How to update NSMenu while it's open?
I have a NSMenu with dynamically added NSMenuItems. The NSMenu is not refreshing properly while it's kept open. I am calling NSMenu update method in NSEventTrackingRunLoopModes.
I have implemented ...


