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

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    AnalogClockInspector
  4. //
  5. //    Inherits From:        ClockInspector
  6. //
  7. //    Declared In:        AnalogClockInspector.h
  8. //
  9. //    Class Description
  10. //
  11. //        AnalogClockInspector manages IB Attributes inspection for
  12. //        an instance of the AnalogClock 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 AnalogClockInspector:ClockInspector
  28. {
  29.     id    clockfaceimage;
  30.     id     hourAndMinuteHandcolor;
  31.     id    secondHandcolor;
  32. }
  33.  
  34. //----------------------------------------------------------------------------------------------------
  35. //    Setting Attributes
  36. //----------------------------------------------------------------------------------------------------
  37. - setClockFaceImage: sender;
  38. - setHourAndMinuteHandColor: sender;
  39. - setSecondHandColor: sender;
  40.  
  41.  
  42. @end