home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / Palettes / KeyDownBrowser / UsingKeyDownBrowser / UsingKeyDownBrowserController.h < prev    next >
Text File  |  1993-01-19  |  1KB  |  41 lines

  1. //---------------------------------------------------------------------------------------------------------
  2. //
  3. //    UsingKeyDownBrowserController
  4. //
  5. //    Inherits From:        Object
  6. //
  7. //    Declared In:        UsingKeyDownBrowserController.h
  8. //
  9. //    Class Description
  10. //
  11. //        Application controller for UsingKeyDownBrowserPalette example.
  12. //        Messages an instance of KeyDownBrowser to perform actions.
  13. //
  14. //
  15. //    Disclaimer
  16. //
  17. //        You may freely copy, distribute and reuse this software and its
  18. //        associated documentation. I disclaim any warranty of any kind, 
  19. //        expressed or implied, as to its fitness for any particular use.
  20. //
  21. //---------------------------------------------------------------------------------------------------------
  22. #import <appkit/appkit.h>
  23.  
  24.  
  25. @interface UsingKeyDownBrowserController:Object
  26. {
  27.     id                browser;
  28.     id                singleActionTextField;
  29.     id                doubleActionTextField;
  30.     NXHashTable*    classes;
  31.     NXHashState         state;
  32. }
  33.  
  34. //---------------------------------------------------------------------------------------------------------
  35. //    Action Methods
  36. //---------------------------------------------------------------------------------------------------------
  37. - singleAction: sender;
  38. - doubleAction: sender;
  39.  
  40.  
  41. @end