home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Examples / TreeView / TreeController.h < prev    next >
Encoding:
Text File  |  1993-04-25  |  403 b   |  24 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface TreeController:Object
  5. {
  6.     id    treeView;
  7.     id  infoPanel;
  8.     int nextX, nextY;
  9.     BOOL first;
  10. }
  11.  
  12. - init;
  13. - info:sender;
  14. - open:sender;
  15. - (BOOL)openFile:(const char *)name;
  16.  
  17. /* Application delegate methods */
  18.  
  19. - appDidInit:(Application *)sender;
  20. - (int)app:sender openFile:(const char *)file type:(const char *)type;
  21. - (BOOL)appAcceptsAnotherFile:sender;
  22.  
  23. @end
  24.