home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / TIFFandEPS / PopAndForm.h < prev    next >
Text File  |  1993-01-19  |  420b  |  22 lines

  1. /* PopAndForm.h
  2.  *  Purpose: A small Object that controls a Popup connected to a Form
  3.  *
  4.  *  You may freely copy, distribute, and reuse the code in this example.
  5.  *  NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  *  fitness for any particular use.
  7.  *
  8.  */
  9.  
  10. #import <objc/Object.h>
  11.  
  12. @interface PopAndForm:Object
  13. {
  14.     id    popup;
  15.     id    formcell;
  16. }
  17.  
  18. - newValue:sender;
  19. - enableForm:sender;
  20.  
  21. @end
  22.