source: trunk/Cocoa/Pester/Source/PSAlarmNotifierController.m@ 24

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

Pester 1.0d2

File size: 791 bytes
RevLine 
[21]1//
2// PSAlarmNotifierController.m
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 "PSAlarmNotifierController.h"
[24]10#import "PSAlarm.h"
[21]11
12@implementation PSAlarmNotifierController
13
14- (id)initWithTimer:(NSTimer *)timer;
15{
16 if ([self initWithWindowNibName: @"Notifier"]) {
[24]17 PSAlarm *alarm = [timer userInfo];
[21]18
19 [[self window] center];
[24]20 [messageField setStringValue: [alarm message]];
[21]21 [dateField setObjectValue: [timer fireDate]];
22 [NSApp activateIgnoringOtherApps: YES];
23 [[self window] makeKeyAndOrderFront: nil];
24 [[self window] orderFrontRegardless];
25 NSBeep();
26 }
27 return self;
28}
29
30- (IBAction)close:(id)sender;
31{
32 [self close];
33}
34
35@end
Note: See TracBrowser for help on using the repository browser.