Re: Re: NSPopUpButton inside Table CornerView
Re: Re: NSPopUpButton inside Table CornerView
- Subject: Re: Re: NSPopUpButton inside Table CornerView
- From: malcom <email@hidden>
- Date: Fri, 18 Aug 2006 18:47:52 +0200
yes matt you're right. I've forgot that in the same class there is a
validateMenuItem that check for another particular case for another
menu ;) I've solved thanks
On 8/18/06, Matt Neuburg <email@hidden> wrote:
On Fri, 18 Aug 2006 01:17:01 +0200, malcom <email@hidden> said:
>I've created an NSPopUpButton menu inside an NSOutlineView corner view.
>This is the code for awakeFromNib:
>
>- (void) _initCornerView {
> NSPopUpButton * sortBtn ;
> sortBtn = [[ NSPopUpButton alloc] init ] ;
> [ sortBtn setImage: [NSImage imageNamed: @"flagged_header.tiff"] ];
> [ sortBtn setTarget: self ];
> [sortBtn setBordered:NO];
>
> [tagMenu release];
> tagMenu = [[NSMenu allocWithZone:[NSMenu menuZone]] initWithTitle: @"Msg"];
> NSMenuItem *item = [[NSMenuItem alloc] initWithTitle: @"c" action:
>@selector(ctx_selectPopMenu:) keyEquivalent:@""];
> [item setTarget: self];
> [tagMenu addItem:item];
> [tagMenu setDelegate: self];
>
> [sortBtn setMenu: tagMenu];
> [ self setCornerView: sortBtn ];
>}
>
>Unfortunatly it does not work because the menu item still disabled.
>I've LAOtried to call [item setEnabled: YES] and [sortBtn
>setEnabled...] but nothing has changed... anyone can help me? thanks.
I have not tried this particular configuration, but I would think that the
menu enablement rules here would be the same as menu enablement rules
elsewhere. So, I would try implementing validateMenuItem: and see how you
go. At the very least, you'll know whether the enablement check is reaching
the right place. m.
--
matt neuburg, phd = email@hidden, <http://www.tidbits.com/matt/>
A fool + a tool + an autorelease pool = cool!
AppleScript: the Definitive Guide - Second Edition!
<http://www.amazon.com/gp/product/0596102119>
--
www.malcom-mac.com - indipendent software developer
mail: email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden