home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / MiniExamples / AppKit / TIFFandEPS / PopAndForm.h < prev    next >
Encoding:
Text File  |  1992-07-22  |  424 b   |  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 <appkit/appkit.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.