home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / YellowBox / Kits / MiscTableScroll-138.1 / Examples / LazyScrollDir / DirController.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-31  |  1.6 KB  |  49 lines

  1. #ifndef __DirController_h
  2. #define __DirController_h
  3. //=============================================================================
  4. //
  5. //    Copyright (C) 1995-1997 by Paul S. McCarthy and Eric Sunshine.
  6. //        Written by Paul S. McCarthy and Eric Sunshine.
  7. //                All Rights Reserved.
  8. //
  9. //    This notice may not be removed from this source code.
  10. //
  11. //    This object is included in the MiscKit by permission from the authors
  12. //    and its use is governed by the MiscKit license, found in the file
  13. //    "License.rtf" in the MiscKit distribution.  Please refer to that file
  14. //    for a list of all applicable permissions and restrictions.
  15. //
  16. //=============================================================================
  17. //-----------------------------------------------------------------------------
  18. // DirController.h
  19. //
  20. //    Manages application which demonstrates use of TableScroll.
  21. //
  22. //-----------------------------------------------------------------------------
  23. //-----------------------------------------------------------------------------
  24. // $Id: DirController.h,v 1.1 97/03/23 01:59:08 sunshine Exp $
  25. // $Log:    DirController.h,v $
  26. // Revision 1.1  97/03/23  01:59:08  sunshine
  27. // v13.1: Application controller.
  28. // 
  29. //-----------------------------------------------------------------------------
  30. #import <Foundation/NSObject.h>
  31. @class NSNotification, NSPanel, NSText;
  32.  
  33. @interface DirController : NSObject
  34.     {
  35.     NSPanel* infoPanel;
  36.     NSText*  infoText;
  37.     }
  38.  
  39. - (id)init;
  40. - (void)dealloc;
  41. - (void)applicationDidFinishLaunching:(NSNotification*)n;
  42. - (void)applicationWillTerminate:(NSNotification*)n;
  43. - (void)new:(id)sender;
  44. - (void)info:(id)sender;
  45.  
  46. @end
  47.  
  48. #endif // __DirController_h
  49.