source: trunk/Cocoa/Pester/Source/PSAlarmNotifierController.h@ 61

Last change on this file since 61 was 53, checked in by Nicholas Riley, 21 years ago

Updated for Pester 1.1a5 (very limited release).

Pester 1.1a4 was never released.

File size: 804 bytes
Line 
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
11@class NJRIntervalField;
12@class PSAlarm;
13
14@interface PSAlarmNotifierController : NSWindowController {
15 IBOutlet NSTextField *messageField;
16 IBOutlet NSTextField *dateField;
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;
25}
26
27- (id)initWithAlarm:(PSAlarm *)anAlarm;
28
29- (IBAction)close:(id)sender;
30- (IBAction)snooze:(NSButton *)sender;
31- (IBAction)stopRepeating:(NSButton *)sender;
32
33@end
Note: See TracBrowser for help on using the repository browser.