• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: NSPopUpButton inside Table CornerView
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: NSPopUpButton inside Table CornerView


  • Subject: Re: NSPopUpButton inside Table CornerView
  • From: Matt Neuburg <email@hidden>
  • Date: Fri, 18 Aug 2006 09:01:47 -0700
  • Thread-topic: NSPopUpButton inside Table CornerView

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>



 _______________________________________________
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

  • Follow-Ups:
    • Re: Re: NSPopUpButton inside Table CornerView
      • From: malcom <email@hidden>
  • Prev by Date: Re: Programmatically replace bound objects
  • Next by Date: Re: Custom NSButtonCell and NSTableColumn binding
  • Previous by thread: NSPopUpButton inside Table CornerView
  • Next by thread: Re: Re: NSPopUpButton inside Table CornerView
  • Index(es):
    • Date
    • Thread