source: releases/Pester/1.1b7/Source/PSAlarmAlertController.h

Last change on this file 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: 586 bytes
Line 
1//
2// PSAlarmAlertController.h
3// Pester
4//
5// Created by Nicholas Riley on Sat Oct 26 2002.
6// Copyright (c) 2002 Nicholas Riley. All rights reserved.
7//
8
9#import <AppKit/AppKit.h>
10#import "PSAlarm.h"
11
12extern NSString * const PSAlarmAlertStopNotification;
13
14@interface PSAlarmAlertController : NSObject {
15 NSMutableSet *pendingAlerts;
16 ProcessSerialNumber frontmostApp;
17 BOOL appWasHidden;
18}
19
20+ (PSAlarmAlertController *)controllerWithTimerExpiredNotification:(NSNotification *)notification;
21
22+ (IBAction)stopAlerts:(id)sender;
23
24- (id)initWithAlarm:(PSAlarm *)alarm;
25
26@end
Note: See TracBrowser for help on using the repository browser.