Last change
on this file since 70 was 53, checked in by Nicholas Riley, 22 years ago |
Updated for Pester 1.1a5 (very limited release).
Pester 1.1a4 was never released.
|
File size:
804 bytes
|
Rev | Line | |
---|
[21] | 1 | //
|
---|
| 2 | // PSAlarmNotifierController.h
|
---|
| 3 | // Pester
|
---|
| 4 | //
|
---|
| 5 | // Created by Nicholas Riley on Tue Oct 08 2002.
|
---|
| 6 | // Copyright (c) 2002 Nicholas Riley. All rights reserved.
|
---|
| 7 | //
|
---|
| 8 |
|
---|
| 9 | #import <AppKit/AppKit.h>
|
---|
| 10 |
|
---|
[53] | 11 | @class NJRIntervalField;
|
---|
[26] | 12 | @class PSAlarm;
|
---|
[21] | 13 |
|
---|
| 14 | @interface PSAlarmNotifierController : NSWindowController {
|
---|
| 15 | IBOutlet NSTextField *messageField;
|
---|
| 16 | IBOutlet NSTextField *dateField;
|
---|
[53] | 17 | IBOutlet NSTextField *intervalField;
|
---|
| 18 | IBOutlet NSTextField *nextDateField;
|
---|
| 19 | IBOutlet NJRIntervalField *snoozeIntervalField;
|
---|
| 20 | IBOutlet NSButton *okButton;
|
---|
| 21 | IBOutlet NSButton *snoozeButton;
|
---|
| 22 | NSTimer *updateTimer;
|
---|
| 23 | PSAlarm *alarm;
|
---|
| 24 | BOOL canSnooze;
|
---|
[21] | 25 | }
|
---|
| 26 |
|
---|
[53] | 27 | - (id)initWithAlarm:(PSAlarm *)anAlarm;
|
---|
[26] | 28 |
|
---|
[53] | 29 | - (IBAction)close:(id)sender;
|
---|
| 30 | - (IBAction)snooze:(NSButton *)sender;
|
---|
| 31 | - (IBAction)stopRepeating:(NSButton *)sender;
|
---|
[21] | 32 |
|
---|
| 33 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.