home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 (1993) / nebula.bin / SourceCode / MiniExamples / FindIt / Controller.h next >
Encoding:
Text File  |  1991-10-09  |  586 b   |  34 lines

  1. /* 
  2.  * Controller.h
  3.  *
  4.  * Purpose:
  5.  *        Manages the windows in this example.
  6.  *
  7.  * You may freely copy, distribute, and reuse the code in this example.
  8.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  9.  * fitness for any particular use.
  10.  *
  11.  * Written by: Mary McNabb
  12.  * Created: Apr 91
  13.  *
  14.  */
  15.  
  16. #import <objc/Object.h>
  17.  
  18. @interface Controller:Object
  19. {
  20.     id fileScrollView;
  21.     id fileDocView;
  22.     id findObject;
  23.     id theMatrix;
  24.     id infoPanel;
  25. }
  26.  
  27. - appDidInit:sender;
  28. - findPanel:sender;
  29. - findNext:sender;
  30. - findPrevious:sender;
  31. - infoPanel:sender;
  32.  
  33. @end
  34.