home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks3 / AppKit.framework / Headers / NSMenuCell.h < prev    next >
Text File  |  1994-09-29  |  540b  |  25 lines

  1. /*
  2.     MenuCell.h
  3.     Application Kit, Release 2.0
  4.     Copyright (c) 1988, 1989, 1990, NeXT, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import "NSButtonCell.h"
  8.  
  9. @interface NSMenuCell : NSButtonCell
  10. {
  11.     SEL                 updateAction;
  12. }
  13.  
  14. - initTextCell:(NSString *)aString;
  15.  
  16. + useUserKeyEquivalents:(BOOL)flag;
  17.  
  18. - setUpdateAction:(SEL)aSelector forMenu:aMenu;
  19. - (NSString *)userKeyEquivalent;
  20. - (SEL)updateAction;
  21. - (BOOL)trackMouse:(NSEvent *)theEvent inRect:(NSRect)cellFrame ofView:controlView untilMouseUp:(BOOL)untilMouseUp;
  22. - (BOOL)hasSubmenu;
  23.  
  24. @end
  25.