home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------------------------------
- //
- // AnalogClockInspector
- //
- // Inherits From: ClockInspector
- //
- // Declared In: AnalogClockInspector.h
- //
- // Class Description
- //
- // AnalogClockInspector manages IB Attributes inspection for
- // an instance of the AnalogClock class.
- //
- //
- // Disclaimer
- //
- // You may freely copy, distribute and reuse this software and its
- // associated documentation. I disclaim any warranty of any kind,
- // expressed or implied, as to its fitness for any particular use.
- //
- //----------------------------------------------------------------------------------------------------
- #import <appkit/appkit.h>
- #import <apps/InterfaceBuilder.h>
- #import "ClockInspector.h"
-
-
- @interface AnalogClockInspector:ClockInspector
- {
- id clockfaceimage;
- id hourAndMinuteHandcolor;
- id secondHandcolor;
- }
-
- //----------------------------------------------------------------------------------------------------
- // Setting Attributes
- //----------------------------------------------------------------------------------------------------
- - setClockFaceImage: sender;
- - setHourAndMinuteHandColor: sender;
- - setSecondHandColor: sender;
-
-
- @end