home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Utilities / Comics-1.0-MIS / PopupInTable.h < prev    next >
Encoding:
Text File  |  1997-09-25  |  1.1 KB  |  44 lines

  1. #import <AppKit/AppKit.h>
  2.  
  3. /*
  4.  File:       PopupInTable.h
  5.  
  6.  Contains:   Header file for the Controller of the popup menu button
  7.              used in the "Input" window, see also InputController.h
  8.  
  9.  Written by: Eric Simenel
  10.  
  11.  Created:    May 1997
  12.  
  13.  Copyright:  (c)1997 by Apple Computer, Inc., all rights reserved.
  14.  
  15.  Change History (most recent first):
  16.  
  17.  You may incorporate this sample code into your applications without
  18.  restriction, though the sample code has been provided "AS IS" and the
  19.  responsibility for its operation is 100% yours.  However, what you are
  20.  not permitted to do is to redistribute the source as "DSC Sample Code"
  21.  after having made changes. If you're going to re-distribute the source,
  22.  we require that you make it clear in the source that the code was
  23.  descended from Apple Sample Code, but that you've made changes.
  24. */
  25.  
  26. @interface PopupInTable : NSObject
  27. {
  28.     id ic;
  29.  
  30.     NSPopUpButton *pub;
  31.     short alreadyRemoved;
  32.     short pubTitle, pubChoice;
  33.     char charIshMenu[30];
  34.     short shortIshMenu[30];
  35.     short nbma, monthArray[5];
  36. }
  37.  
  38. - (id)init;
  39. - (void)pubSelect:(id)sender;
  40. - (void)setUpPopup;
  41. - (void)releasePub;
  42.  
  43. @end
  44.