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 | NSString *status;
|
---|
23 | NSTimer *updateTimer;
|
---|
24 | PSAlarm *alarm;
|
---|
25 | BOOL isInterval;
|
---|
26 | }
|
---|
27 |
|
---|
28 | - (IBAction)update:(id)sender;
|
---|
29 | - (IBAction)dateCompleted:(NSPopUpButton *)sender;
|
---|
30 | - (IBAction)inAtChanged:(id)sender;
|
---|
31 | - (IBAction)setAlarm:(NSButton *)sender;
|
---|
32 |
|
---|
33 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.