source: trunk/Cocoa/Pester/Source/PSSnoozeUntilController.h@ 516

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

Pester 1.1b3

File size: 1.1 KB
Line 
1//
2// PSSnoozeUntilController.h
3// Pester
4//
5// Created by Nicholas Riley on Sun Feb 16 2003.
6// Copyright (c) 2003 Nicholas Riley. All rights reserved.
7//
8
9#import <AppKit/AppKit.h>
10#import "PSAlarm.h"
11
12@class PSAlarmNotifierController;
13
14@interface PSSnoozeUntilController : NSWindowController {
15 IBOutlet NSTextField *messageField;
16 IBOutlet NSTextField *timeOfDay;
17 IBOutlet NSTextField *timeDate;
18 IBOutlet NSPopUpButton *timeDateCompletions; // XXX should go away when bug preventing both formatters and popup menus from existing is fixed
19 IBOutlet NSButton *timeCalendarButton;
20 IBOutlet NSButton *snoozeButton;
21 NSTimeInterval snoozeInterval;
22 PSAlarm *alarm; // not a real alarm, used for date<->interval conversion
23}
24
25+ (PSSnoozeUntilController *)snoozeUntilControllerWithNotifierController:(PSAlarmNotifierController *)aController;
26- (id)initWithNotifierController:(PSAlarmNotifierController *)aController;
27
28- (IBAction)update:(id)sender;
29- (IBAction)dateCompleted:(NSPopUpButton *)sender;
30- (IBAction)showCalendar:(NSButton *)sender;
31- (IBAction)close:(id)sender;
32- (IBAction)snooze:(NSButton *)sender;
33
34@end
Note: See TracBrowser for help on using the repository browser.