home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / Palettes / Clocks / UsingClocksPalette / UsingClocksPaletteController.h < prev    next >
Text File  |  1992-12-11  |  1KB  |  39 lines

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    UsingClocksPaletteController
  4. //
  5. //    Inherits From:        Object
  6. //
  7. //    Declared In:        UsingClocksPaletteController.h
  8. //
  9. //    Class Description
  10. //
  11. //        UsingClocksPaletteController is the application contoller for
  12. //        the UsingClocksPalette application. It only functions to set an
  13. //        alarm time and act as target for the alarm action in the alarm
  14. //        feature demonstration.
  15. //
  16. //
  17. //    Disclaimer
  18. //
  19. //        You may freely copy, distribute and reuse this software and its
  20. //        associated documentation. I disclaim any warranty of any kind, 
  21. //        expressed or implied, as to its fitness for any particular use.
  22. //
  23. //----------------------------------------------------------------------------------------------------
  24. #import <appkit/appkit.h>
  25. #import "DigitalClock.h"
  26.  
  27.  
  28. @interface UsingClocksPaletteController:Object
  29. {
  30.      id    alarmClock;
  31.     id    activateButton;
  32. }
  33.  
  34. - activateAlarm:sender;
  35. - antiGravity:sender;
  36.  
  37.  
  38. @end
  39.