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