Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

Apart from creating a custom view, what is the best way to open a pop-up menu from a NSToolbarItem?

like image 692
ruipacheco Avatar asked Sep 30 '09 18:09

ruipacheco


5 Answers

Basically, you create something like an NSButton that has an NSMenu attached to it, then use NSToolbarItem's setView: method to embed the button in the toolbarItem.

like image 83
Dave DeLong Avatar answered Oct 07 '22 11:10

Dave DeLong


FYI: this post is long over but I'm just browsing and I have an easy method for this so I thought I'd give an answer in case someone else looks through it. I found that I can't drag a popup button directly to the toolbar in Interface Builder from the Library. However, I can drag a popup button from the window to the toolbar. So I create the popup button on the window first and then drag that to the toolbar... it works! The same with other objects.

like image 21
regulus6633 Avatar answered Oct 07 '22 12:10

regulus6633


Just create an NSView in IB with your menu like you want it. Then in your window controller, add some code like this:

// This assumes you have a window property pointing to the window to which you'll
// add the toolbar. It also assumes you've connected the NSView to add to the
// toolbar to a member called toolbarView.

- (NSArray*)toolbarAllowedItemIdentifiers:(NSToolbar*)toolbar {
    return [NSArray arrayWithObject:@"myToolbarMenu"];
}

- (NSArray*)toolbarDefaultItemIdentifiers:(NSToolbar*)toolbar {
    return [self toolbarAllowedItemIdentifiers:toolbar];
}

- (NSToolbarItem*)toolbar:(NSToolbar*)toolbar
    itemForItemIdentifier:(NSString*)str
willBeInsertedIntoToolbar:(BOOL)flag
{
    if ([str isEqualToString:@"myToolbarMenu"] == YES) {
        NSToolbarItem* item = [[NSToolbarItem alloc] initWithItemIdentifier:str];
        [item setView:toolbarView];
        [item setMinSize:[toolbarView frame].size];
        [item setMaxSize:[toolbarView frame].size];
        return [item autorelease];  
    }
    return nil;
}

- (void)windowDidLoad {
    NSToolbar* toolbar = [[NSToolbar alloc] initWithIdentifier:@"myToolbar"];
    [toolbar setDelegate:self];
    [self.window setToolbar:[toolbar autorelease]];
}
like image 44
nall Avatar answered Oct 07 '22 12:10

nall


If you want an actual pop-up button for the toolbar item, set an NSPopUpButton as the toolbar item's view.

In Interface Builder 3.2.1 (I don't know when this ability was actually introduced), you can drill down to the toolbar in the hierarchical list of objects in the nib window, and drag a pop-up button from the Library palette into the toolbar in the list. IB will wrap the button in a toolbar item for you.

like image 23
Peter Hosey Avatar answered Oct 07 '22 11:10

Peter Hosey


Assuming menu is an NSMenu object and sender is a NSToolbarItem, then all you need to do is pass in the sender.view to show the menu. No need to add another view if you have already set up the NSToolbarItem via Interface Builder.

[NSMenu popUpContextMenu:menu
               withEvent:[NSApp currentEvent]
                 forView:sender.view];
like image 26
Will Avatar answered Oct 07 '22 12:10

Will