home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / AppKit / BusyBox / BusyBoxApp.h < prev    next >
Text File  |  1992-05-28  |  384b  |  19 lines

  1. #import <appkit/Application.h>
  2.  
  3. @interface BusyBoxApp:Application
  4. {
  5.     id helpObject;            /* (Ect that handles help requests */
  6.     id infoPanel;            /* The Info... panel */
  7.     id prefPanel;            /* The Preferences panel */
  8. }
  9.  
  10. /* TARGET/ACTION METHODS */
  11. - info:sender;
  12. - preferences:sender;
  13.  
  14. /* OVERRIDDEN FROM APPLICATION */
  15. - appDidInit:sender;
  16. - sendEvent:(NXEvent *)theEvent;
  17.  
  18. @end
  19.