home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / IndexingKit / ToDoList / MainDelegate.h < prev    next >
Encoding:
Text File  |  1993-02-16  |  717 b   |  38 lines

  1. /*
  2. MainDelegate.h - Copyright (c) 1992 NeXT Computer, Inc.
  3.  
  4. You may freely copy, distribute and reuse the code in this example.
  5. NeXT Computer, Inc. disclaims any warranty of any kind, expressed or implied, 
  6. as to its fitness for any particular use.
  7. */
  8.  
  9. #import <appkit/appkit.h>
  10.  
  11. @interface MainDelegate:Object
  12. {
  13.     id        chooser;
  14.     id        findPanel;
  15.     id        windows;
  16.     id        topicPanel;
  17.     id        topicBrowser;
  18.     id        mainStore;
  19.     id        calView;
  20.  
  21.     id        cursor;
  22.     int        count;
  23.     int        hintRow;
  24.     char    appDirectory[1 + MAXPATHLEN];    // The path to the application
  25. }
  26.  
  27. - appDidInit:sender;
  28. - appWillTerminate:sender;
  29.  
  30. - recordManager;
  31.  
  32. - popChooser:sender;
  33. - dateDidChange:sender;
  34.  
  35. - windowWillDisappear:sender;
  36.  
  37. @end
  38.