home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula
/
nebula.bin
/
SourceCode
/
Palettes
/
Clocks
/
UsingClocksPalette
/
UsingClocksPaletteController.h
< prev
next >
Wrap
Text File
|
1992-12-11
|
1KB
|
39 lines
//----------------------------------------------------------------------------------------------------
//
// UsingClocksPaletteController
//
// Inherits From: Object
//
// Declared In: UsingClocksPaletteController.h
//
// Class Description
//
// UsingClocksPaletteController is the application contoller for
// the UsingClocksPalette application. It only functions to set an
// alarm time and act as target for the alarm action in the alarm
// feature demonstration.
//
//
// 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 "DigitalClock.h"
@interface UsingClocksPaletteController:Object
{
id alarmClock;
id activateButton;
}
- activateAlarm:sender;
- antiGravity:sender;
@end