home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / Palettes / Clocks / Inspectors.subproj / DigitalClockInspector.h < prev    next >
Text File  |  1992-12-05  |  1KB  |  40 lines

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    DigitalClockInspector
  4. //
  5. //    Inherits From:        ClockInspector
  6. //
  7. //    Declared In:        DigitalClockInspector.h
  8. //
  9. //    Class Description
  10. //
  11. //        DigitalClockInspector manages IB Attributes inspection for
  12. //        an instance of the DigitalClock class.
  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. #import <apps/InterfaceBuilder.h>
  24. #import "ClockInspector.h"
  25.  
  26.  
  27. @interface DigitalClockInspector:ClockInspector
  28. {
  29.     id     timecolor;
  30.     id    datecolor;
  31. }
  32.  
  33. //----------------------------------------------------------------------------------------------------
  34. //    Setting Attributes
  35. //----------------------------------------------------------------------------------------------------
  36. - setTimeColor: sender;
  37. - setDateColor: sender;
  38.  
  39.  
  40. @end