source: trunk/Cocoa/Pester/Source/PSAlarmSetController.h@ 21

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

Pester 1.0d1

File size: 965 bytes
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
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 BOOL isIn;
24 NSCalendarDate *alarmDate;
25 NSTimeInterval alarmInterval;
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.