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

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    CalendarClockInspector
  4. //
  5. //    Inherits From:        ClockInspector
  6. //
  7. //    Declared In:        CalendarClockInspector.h
  8. //
  9. //    Class Description
  10. //
  11. //        CalendarClockInspector manages IB Attributes inspection for
  12. //        an instance of the CalendarClock 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 CalendarClockInspector:ClockInspector
  28. {
  29.     id     timecolor;
  30.     id    datecolor;
  31.     id     weekdaycolor;
  32.     id    monthcolor;
  33. }
  34.  
  35. //----------------------------------------------------------------------------------------------------
  36. //    Setting Attributes
  37. //----------------------------------------------------------------------------------------------------
  38. - setTimeColor: sender;
  39. - setDateColor: sender;
  40. - setWeekdayColor: sender;
  41. - setMonthColor: sender;
  42.  
  43.  
  44. @end