Line | |
---|
1 | // |
---|
2 | // PSAlarmSetController.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 | #import "PSAlarm.h" |
---|
11 | |
---|
12 | @interface PSAlarmSetController : NSWindowController { |
---|
13 | IBOutlet NSTextField *messageField; |
---|
14 | IBOutlet NSMatrix *inAtMatrix; |
---|
15 | IBOutlet NSTextField *timeInterval; |
---|
16 | IBOutlet NSPopUpButton *timeIntervalUnits; |
---|
17 | IBOutlet NSTextField *timeOfDay; |
---|
18 | IBOutlet NSTextField *timeDate; |
---|
19 | IBOutlet NSPopUpButton *timeDateCompletions; // XXX should go away when bug preventing both formatters and popup menus from existing is fixed |
---|
20 | IBOutlet NSTextField *timeSummary; |
---|
21 | IBOutlet NSButton *setButton; |
---|
22 | PSAlarm *alarm; |
---|
23 | NSString *status; |
---|
24 | BOOL isIn; |
---|
25 | } |
---|
26 | |
---|
27 | - (IBAction)update:(id)sender; |
---|
28 | - (IBAction)dateCompleted:(NSPopUpButton *)sender; |
---|
29 | - (IBAction)inAtChanged:(id)sender; |
---|
30 | - (IBAction)setAlarm:(NSButton *)sender; |
---|
31 | |
---|
32 | @end |
---|
Note: See
TracBrowser
for help on using the repository browser.