source: trunk/Cocoa/Pester/Source/PSAlarmSetController.m@ 587

Last change on this file since 587 was 587, checked in by Nicholas Riley, 15 years ago

Fix some problems/deprecation identified by compiling with the 10.6 SDK.

File size: 25.7 KB
Line 
1//
2// PSAlarmSetController.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 "PSAlarmSetController.h"
10#import "PSAlarmAlertController.h"
11#import "PSCalendarController.h"
12#import "PSPowerManager.h"
13#import "PSTimeDateEditor.h"
14#import "PSVolumeController.h"
15#import "NJRDateFormatter.h"
16#import "NJRFSObjectSelector.h"
17#import "NJRIntervalField.h"
18#import "NJRQTMediaPopUpButton.h"
19#import "NJRSoundManager.h"
20#import "NJRValidatingField.h"
21#import "NJRVoicePopUpButton.h"
22#import "NSString-NJRExtensions.h"
23#import "NSAttributedString-NJRExtensions.h"
24#import "NSCalendarDate-NJRExtensions.h"
25
26#import "PSAlerts.h"
27#import "PSDockBounceAlert.h"
28#import "PSScriptAlert.h"
29#import "PSNotifierAlert.h"
30#import "PSBeepAlert.h"
31#import "PSMovieAlert.h"
32#import "PSSpeechAlert.h"
33#import "PSWakeAlert.h"
34
35/* Bugs to file:
36
37¥ any trailing spaces: -> exception for +[NSCalendarDate dateWithNaturalLanguageString]:
38 > NSCalendarDate dateWithNaturalLanguageString: '12 '
39 format error: internal error
40
41¥ NSDate natural language stuff in NSCalendarDate (why?), misspelled category name
42¥ NSCalendarDate natural language stuff behaves differently from NSDateFormatter (AM/PM has no effect, shouldn't they share code?)
43¥ descriptionWithCalendarFormat:, dateWithNaturalLanguageString: does not default to current locale, instead it defaults to US unless you tell it otherwise
44¥ NSDateFormatter doc class description gives two examples for natural language that are incorrect, no link to NSDate doc that describes exactly how natural language dates are parsed
45¥ NSTimeFormatString does not include %p when it should, meaning that AM/PM is stripped yet 12-hour time is still used
46¥ NSNextDayDesignations, NSNextNextDayDesignations are noted as 'a string' in NSUserDefaults docs, but maybe they are actually an array, or either an array or a string, given their names?
47¥ "Setting the Format for Dates" does not document how to get 1:15 AM, the answer is %1I - strftime has no exact equivalent; the closest is %l. strftime does not permit numeric prefixes. It also refers to "NSCalendar" when no such class exists.
48¥ none of many mentions of NSAMPMDesignation indicates that they include the leading spaces (" AM", " PM"). In "Setting the Format for Dates", needs to mention that the leading spaces are not included in %p with strftime. But if you use the NSCalendarDate stuff, it appears %p doesn't include the space (because it doesn't use the locale dictionary).
49¥ If you feed NSCalendarDate dateWithNaturalLanguageString: an " AM"/" PM" locale, it doesn't accept that date format.
50¥ descriptions for %X and %x are reversed (time zone is in %X, not %x)
51¥ NSComboBox data source issues, canÕt have it appear as ÒtodayÓ because the formatter doesnÕt like that. Should be able to enter text into the data source and have the formatter process it without altering it.
52¥ too hard to implement date-only or time-only formatters
53¥ should be able to specify that natural language favors date or time (10 = 10th of month, not 10am)
54¥ please expose the iCal controls!
55
56*/
57
58static NSString * const PSAlertsSelected = @"Pester alerts selected"; // NSUserDefaults key
59static NSString * const PSAlertsEditing = @"Pester alerts editing"; // NSUserDefaults key
60
61@interface PSAlarmSetController (Private)
62
63- (void)_readAlerts:(PSAlerts *)alerts;
64- (BOOL)_setAlerts;
65- (void)_setVolume:(float)volume withPreview:(BOOL)preview;
66- (void)_stopUpdateTimer;
67
68@end
69
70@implementation PSAlarmSetController
71
72- (void)awakeFromNib;
73{
74 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
75 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
76 alarm = [[PSAlarm alloc] init];
77 [[self window] center];
78 if ([[removeMessageButton image] size].width != 0)
79 [removeMessageButton setTitle: @""];
80 [PSTimeDateEditor setUpTimeField: timeOfDay dateField: timeDate completions: timeDateCompletions];
81 { // volume defaults, usually overridden by restored alert info
82 float volume = 0.5;
83 [NJRSoundManager getDefaultOutputVolume: &volume];
84 [self _setVolume: volume withPreview: NO];
85 }
86 [editAlert setState: NSOnState]; // XXX temporary for 1.1b5
87 {
88 NSDictionary *plAlerts = [defaults dictionaryForKey: PSAlertsSelected];
89 PSAlerts *alerts = nil;
90 if (plAlerts == nil) {
91 alerts = [[PSAlerts alloc] initWithPesterVersion1Alerts];
92 } else {
93 @try {
94 alerts = [[PSAlerts alloc] initWithPropertyList: plAlerts];
95 } @catch (NSException *exception) {
96 NSRunAlertPanel(@"Unable to restore alerts", @"Pester could not restore recent alert information for one or more alerts in the Set Alarm window. The default set of alerts will be used instead.\n\n%@", nil, nil, nil, [exception reason]);
97 alerts = [[PSAlerts alloc] initWithPesterVersion1Alerts];
98 }
99 }
100 [self _readAlerts: alerts];
101 }
102 [self inAtChanged: nil]; // by convention, if sender is nil, we're initializing
103 [self playSoundChanged: nil];
104 [self doScriptChanged: nil];
105 [self doSpeakChanged: nil];
106 [self editAlertChanged: nil];
107 [script setFileTypes: [NSArray arrayWithObjects: @"applescript", @"script", NSFileTypeForHFSTypeCode(kOSAFileType), NSFileTypeForHFSTypeCode('TEXT'), nil]];
108 [notificationCenter addObserver: self selector: @selector(silence:) name: PSAlarmAlertStopNotification object: nil];
109 [notificationCenter addObserver: self selector: @selector(playSoundChanged:) name: NJRQTMediaPopUpButtonMovieChangedNotification object: sound];
110 [notificationCenter addObserver: self selector: @selector(applicationWillHide:) name: NSApplicationWillHideNotification object: NSApp];
111 [notificationCenter addObserver: self selector: @selector(applicationDidUnhide:) name: NSApplicationDidUnhideNotification object: NSApp];
112 [notificationCenter addObserver: self selector: @selector(applicationWillTerminate:) name: NSApplicationWillTerminateNotification object: NSApp];
113 [voice setDelegate: self]; // XXX why don't we do this in IB? It should use the accessor...
114 [wakeUp setEnabled: [PSPowerManager autoWakeSupported]];
115
116 // XXX workaround for 10.1.x and 10.2.x bug which sets the first responder to the wrong field alternately, but it works if I set the initial first responder to nil... go figure.
117 NSWindow *window = [self window];
118 [window setInitialFirstResponder: nil];
119 [window makeKeyAndOrderFront: nil];
120}
121
122- (void)setStatus:(NSString *)aString;
123{
124 // NSLog(@"%@", alarm);
125 if (aString != status) {
126 [status release]; status = nil;
127 status = [aString retain];
128 [timeSummary setStringValue: status];
129 }
130}
131
132// XXX with -[NSControl currentEditor] don't need to compare? Also check -[NSControl validateEditing]
133- (id)objectValueForTextField:(NSTextField *)field whileEditing:(id)sender;
134{
135 if (sender == field) {
136 NSString *stringValue = [[[self window] fieldEditor: NO forObject: field] string];
137 id obj = nil;
138 [[field formatter] getObjectValue: &obj forString: stringValue errorDescription: NULL];
139 // NSLog(@"from field editor: %@", obj);
140 return obj;
141 } else {
142 // NSLog(@"from field: %@", [field objectValue]);
143 return [field objectValue];
144 }
145}
146
147#pragma mark date/interval setting
148
149- (void)setAlarmDateAndInterval:(id)sender;
150{
151 if (isInterval) {
152 [alarm setInterval: [timeInterval interval]];
153 } else {
154 [alarm setForDate: [self objectValueForTextField: timeDate whileEditing: sender]
155 atTime: [self objectValueForTextField: timeOfDay whileEditing: sender]];
156 }
157}
158
159- (void)_stopUpdateTimer;
160{
161 [updateTimer invalidate]; [updateTimer release]; updateTimer = nil;
162}
163
164- (IBAction)updateDateDisplay:(id)sender;
165{
166 // NSLog(@"updateDateDisplay: %@", sender);
167 if ([alarm isValid]) {
168 [self setStatus: [NSString stringWithFormat: @"Alarm will be set for %@\non %@.", [alarm timeString], [alarm dateString]]];
169 [setButton setEnabled: YES];
170 if (updateTimer == nil || ![updateTimer isValid]) {
171 // XXX this logic (and the timer) should really go into PSAlarm, to send notifications for status updates instead. Timer starts when people are watching, stops when people aren't.
172 // NSLog(@"setting timer");
173 if (isInterval) {
174 updateTimer = [NSTimer scheduledTimerWithTimeInterval: 1 target: self selector: @selector(updateDateDisplay:) userInfo: nil repeats: YES];
175 } else {
176 updateTimer = [NSTimer scheduledTimerWithTimeInterval: [alarm interval] target: self selector: @selector(updateDateDisplay:) userInfo: nil repeats: NO];
177 }
178 [updateTimer retain];
179 }
180 } else {
181 [setButton setEnabled: NO];
182 [self setStatus: [alarm invalidMessage]];
183 [self _stopUpdateTimer];
184 }
185}
186
187// Be careful not to hook up any of the text fields' actions to update: because we handle them in controlTextDidChange: instead. If we could get the active text field somehow via public API (guess we could use controlTextDidBegin/controlTextDidEndEditing) then we'd not need to overload the update sender for this purpose. Or, I guess, we could use another method other than update. It should not be this hard to implement what is essentially standard behavior. Sigh.
188// Note: finding out whether a given control is editing is easier. See: <http://cocoa.mamasam.com/COCOADEV/2002/03/2/28501.php>.
189
190- (IBAction)update:(id)sender;
191{
192 // NSLog(@"update: %@", sender);
193 [self setAlarmDateAndInterval: sender];
194 [self updateDateDisplay: sender];
195}
196
197- (IBAction)inAtChanged:(id)sender;
198{
199 NSButtonCell *new = [inAtMatrix selectedCell], *old;
200 isInterval = ([inAtMatrix selectedTag] == 0);
201 old = [inAtMatrix cellWithTag: isInterval];
202 NSAssert(new != old, @"in and at buttons should be distinct!");
203
204 if (sender != nil) {
205 // XXX validation doesn't work properly for date/time, so we just universally cancel editing now
206 if (![[self window] makeFirstResponder: nil] && !isInterval) {
207 // This works fine synchronously only if you're using the keyboard shortcut to switch in/at. Directly activating the button, a delayed invocation is necessary.
208 NSInvocation *i = [NSInvocation invocationWithMethodSignature:
209 [inAtMatrix methodSignatureForSelector: @selector(selectCellWithTag:)]];
210 int tag = [old tag];
211 [i setSelector: @selector(selectCellWithTag:)];
212 [i setTarget: inAtMatrix];
213 [i setArgument: &tag atIndex: 2];
214 [NSTimer scheduledTimerWithTimeInterval: 0 invocation: i repeats: NO];
215 return;
216 }
217 }
218
219 [old setKeyEquivalent: [new keyEquivalent]];
220 [old setKeyEquivalentModifierMask: [new keyEquivalentModifierMask]];
221 [new setKeyEquivalent: @""];
222 [new setKeyEquivalentModifierMask: 0];
223 [timeInterval setEnabled: isInterval];
224 [timeIntervalUnits setEnabled: isInterval];
225 [timeIntervalRepeats setEnabled: isInterval];
226 [timeOfDay setEnabled: !isInterval];
227 [timeDate setEnabled: !isInterval];
228 [timeDateCompletions setEnabled: !isInterval && [NJRDateFormatter naturalLanguageParsingAvailable]];
229 [timeCalendarButton setEnabled: !isInterval];
230 if (sender != nil)
231 [[self window] makeFirstResponder: isInterval ? (NSTextField *)timeInterval : timeOfDay];
232 if (!isInterval) // need to do this every time the controls are enabled
233 [timeOfDay setNextKeyView: timeDate];
234 // NSLog(@"UPDATING FROM inAtChanged");
235 [self update: nil];
236}
237
238- (IBAction)dateCompleted:(NSPopUpButton *)sender;
239{
240 [timeDate setStringValue: [sender titleOfSelectedItem]];
241 [self update: sender];
242}
243
244#pragma mark calendar
245
246- (IBAction)showCalendar:(NSButton *)sender;
247{
248 [PSCalendarController controllerWithDate: [NSCalendarDate dateForDay: [timeDate objectValue]] delegate: self];
249}
250
251- (void)calendarController:(PSCalendarController *)calendar didSetDate:(NSCalendarDate *)date;
252{
253 [timeDate setObjectValue: date];
254 [self update: self];
255}
256
257- (NSView *)calendarControllerLaunchingView:(PSCalendarController *)controller;
258{
259 return timeCalendarButton;
260}
261
262#pragma mark volume
263
264- (IBAction)showVolume:(NSButton *)sender;
265{
266 [PSVolumeController controllerWithVolume: [sound outputVolume] delegate: self];
267}
268
269#define VOLUME_IMAGE_INDEX(vol) (vol * 4) - 0.01
270
271- (void)_setVolume:(float)volume withPreview:(BOOL)preview;
272{
273 float outputVolume = [sound outputVolume];
274 short volumeImageIndex = VOLUME_IMAGE_INDEX(volume);
275
276 if (outputVolume > 0 && volumeImageIndex == VOLUME_IMAGE_INDEX(outputVolume)) return;
277 NSString *volumeImageName = [NSString stringWithFormat: @"Volume %ld", volumeImageIndex];
278 [soundVolumeButton setImage: [NSImage imageNamed: volumeImageName]];
279
280 [sound setOutputVolume: volume withPreview: preview];
281}
282
283- (void)volumeController:(PSVolumeController *)controller didSetVolume:(float)volume;
284{
285 [self _setVolume: volume withPreview: YES];
286}
287
288- (NSView *)volumeControllerLaunchingView:(PSVolumeController *)controller;
289{
290 return soundVolumeButton;
291}
292
293#pragma mark alert editing
294
295- (IBAction)toggleAlertEditor:(id)sender;
296{
297 [editAlert performClick: self];
298}
299
300- (IBAction)editAlertChanged:(id)sender;
301{
302 BOOL editAlertSelected = [editAlert state] == NSOnState;
303 NSWindow *window = [self window];
304 NSRect frame = [window frame];
305 if (editAlertSelected) {
306 NSSize editWinSize = [window maxSize];
307 [editAlert setNextKeyView: [displayMessage controlView]];
308 frame.origin.y += frame.size.height - editWinSize.height;
309 frame.size = editWinSize;
310 [window setFrame: frame display: (sender != nil) animate: (sender != nil)];
311 [self updateDateDisplay: sender];
312 [alertTabs selectTabViewItemWithIdentifier: @"edit"];
313 } else {
314 NSSize viewWinSize = [window minSize];
315 NSRect textFrame = [alertView frame];
316 float textHeight;
317 if (![self _setAlerts]) {
318 [alertView setStringValue: [NSString stringWithFormat: @"%@\n%@", NSLocalizedString(@"Couldn't process alert information.", "Message shown in collapsed alert area when alert information is invalid or inconsistent (prevents setting alarm)"), status]];
319 } else {
320 NSAttributedString *string = [[alarm alerts] prettyList];
321 if (string == nil) {
322 [alertView setStringValue: NSLocalizedString(@"Do nothing. Click the button labeled 'Edit' to add an alert.", "Message shown in collapsed alert edit area when no alerts have been specified")];
323 } else {
324 [alertView setAttributedStringValue: string];
325 [self updateDateDisplay: sender];
326 }
327 }
328 if (sender != nil) { // nil == we're initializing, don't mess with focus
329 NSResponder *oldResponder = [window firstResponder];
330 // make sure focus doesn't get stuck in the edit tab: it is confusing and leaves behind artifacts
331 if (oldResponder == editAlert || [oldResponder isKindOfClass: [NSView class]] && [(NSView *)oldResponder isDescendantOf: alertTabs])
332 [window makeFirstResponder: messageField]; // would use editAlert, but can't get it to display anomaly-free.
333 [self silence: sender];
334 }
335 // allow height to expand, though not arbitrarily (should still fit on an 800x600 screen)
336 textHeight = [[alertView cell] cellSizeForBounds: NSMakeRect(0, 0, textFrame.size.width, 400)].height;
337 textFrame.origin.y += textFrame.size.height - textHeight;
338 textFrame.size.height = textHeight;
339 [alertView setFrame: textFrame];
340 viewWinSize.height += textHeight;
341 [alertTabs selectTabViewItemWithIdentifier: @"view"];
342 frame.origin.y += frame.size.height - viewWinSize.height;
343 frame.size = viewWinSize;
344 [window setFrame: frame display: (sender != nil) animate: (sender != nil)];
345 [editAlert setNextKeyView: cancelButton];
346 }
347 if (sender != nil) {
348 [[NSUserDefaults standardUserDefaults] setBool: editAlertSelected forKey: PSAlertsEditing];
349 }
350}
351
352- (IBAction)playSoundChanged:(id)sender;
353{
354 BOOL playSoundSelected = [playSound intValue];
355 BOOL canRepeat = playSoundSelected ? [sound canRepeat] : NO;
356 [sound setEnabled: playSoundSelected];
357 [soundRepetitions setEnabled: canRepeat];
358 [soundVolumeButton setEnabled: canRepeat && [sound hasAudio]];
359 [soundRepetitionStepper setEnabled: canRepeat];
360 [soundRepetitionsLabel setTextColor: canRepeat ? [NSColor controlTextColor] : [NSColor disabledControlTextColor]];
361 if (playSoundSelected && sender == playSound) {
362 [[self window] makeFirstResponder: sound];
363 }
364}
365
366- (IBAction)setSoundRepetitionCount:(id)sender;
367{
368 NSTextView *fieldEditor = (NSTextView *)[soundRepetitions currentEditor];
369 BOOL isEditing = (fieldEditor != nil);
370 int newReps = [sender intValue], oldReps;
371 if (isEditing) {
372 // XXX work around bug where if you ask soundRepetitions for its intValue too often while it's editing, the field begins to flash
373 oldReps = [[[fieldEditor textStorage] string] intValue];
374 } else oldReps = [soundRepetitions intValue];
375 if (newReps != oldReps) {
376 [soundRepetitions setIntValue: newReps];
377 // NSLog(@"updating: new value %d, old value %d%@", newReps, oldReps, isEditing ? @", is editing" : @"");
378 // XXX work around 10.1 bug, otherwise field only displays every second value
379 if (isEditing) [soundRepetitions selectText: self];
380 }
381}
382
383// XXX should check the 'Do script:' button when someone drops a script on the button
384
385- (IBAction)doScriptChanged:(id)sender;
386{
387 BOOL doScriptSelected = [doScript intValue];
388 [script setEnabled: doScriptSelected];
389 [scriptSelectButton setEnabled: doScriptSelected];
390 if (doScriptSelected && sender != nil) {
391 [[self window] makeFirstResponder: scriptSelectButton];
392 if ([script alias] == nil) [scriptSelectButton performClick: sender];
393 } else {
394 [[self window] makeFirstResponder: sender];
395 }
396}
397
398- (IBAction)doSpeakChanged:(id)sender;
399{
400 BOOL doSpeakSelected = [doSpeak state] == NSOnState;
401 [voice setEnabled: doSpeakSelected];
402 if (doSpeakSelected && sender != nil)
403 [[self window] makeFirstResponder: voice];
404 else
405 [[self window] makeFirstResponder: sender];
406}
407
408- (void)_readAlerts:(PSAlerts *)alerts;
409{
410 NSEnumerator *e = [alerts alertEnumerator];
411 PSAlert *alert;
412
413 [alarm setAlerts: alerts];
414
415 // turn off all alerts
416 [bounceDockIcon setState: NSOffState];
417 [doScript setIntValue: NO];
418 [displayMessage setIntValue: NO];
419 [playSound setIntValue: NO];
420 [doSpeak setIntValue: NO];
421
422 while ( (alert = [e nextObject]) != nil) {
423 if ([alert isKindOfClass: [PSDockBounceAlert class]]) {
424 [bounceDockIcon setIntValue: YES]; // temporary for 1.1b8
425 } else if ([alert isKindOfClass: [PSScriptAlert class]]) {
426 [doScript setIntValue: YES];
427 [script setAlias: [(PSScriptAlert *)alert scriptFileAlias]];
428 } else if ([alert isKindOfClass: [PSNotifierAlert class]]) {
429 [displayMessage setIntValue: YES];
430 } else if ([alert isKindOfClass: [PSMediaAlert class]]) {
431 unsigned int repetitions = [(PSMediaAlert *)alert repetitions];
432 [playSound setIntValue: YES];
433 [soundRepetitions setIntValue: repetitions];
434 [soundRepetitionStepper setIntValue: repetitions];
435 [self _setVolume: [(PSMediaAlert *)alert outputVolume] withPreview: NO];
436 if ([alert isKindOfClass: [PSBeepAlert class]]) {
437 [sound setAlias: nil];
438 } else if ([alert isKindOfClass: [PSMovieAlert class]]) {
439 [sound setAlias: [(PSMovieAlert *)alert movieFileAlias]];
440 }
441 } else if ([alert isKindOfClass: [PSSpeechAlert class]]) {
442 [doSpeak setIntValue: YES];
443 [voice setVoice: [(PSSpeechAlert *)alert voice]];
444 } else if ([alert isKindOfClass: [PSWakeAlert class]]) {
445 [wakeUp setIntValue: YES];
446 }
447}
448}
449
450- (BOOL)_setAlerts;
451{
452 PSAlerts *alerts = [alarm alerts];
453
454 [alerts removeAlerts];
455 @try {
456 // dock bounce alert
457 if ([bounceDockIcon intValue]) // temporary for 1.1b8
458 [alerts addAlert: [PSDockBounceAlert alert]];
459 // script alert
460 if ([doScript intValue]) {
461 BDAlias *scriptFileAlias = [script alias];
462 if (scriptFileAlias == nil) {
463 [self setStatus: @"Unable to set script alert (no script specified?)"];
464 return NO;
465 }
466 [alerts addAlert: [PSScriptAlert alertWithScriptFileAlias: scriptFileAlias]];
467 }
468 // notifier alert
469 if ([displayMessage intValue])
470 [alerts addAlert: [PSNotifierAlert alert]];
471 // sound alerts
472 if ([playSound intValue]) {
473 BDAlias *soundAlias = [sound selectedAlias];
474 unsigned short numReps = [soundRepetitions intValue];
475 PSMediaAlert *alert;
476 if (soundAlias == nil) // beep alert
477 alert = [PSBeepAlert alertWithRepetitions: numReps];
478 else // movie alert
479 alert = [PSMovieAlert alertWithMovieFileAlias: soundAlias repetitions: numReps];
480 [alerts addAlert: alert];
481 [alert setOutputVolume: [sound outputVolume]];
482 }
483 // speech alert
484 if ([doSpeak intValue])
485 [alerts addAlert: [PSSpeechAlert alertWithVoice: [[voice selectedItem] representedObject]]];
486 // wake alert
487 if ([wakeUp intValue])
488 [alerts addAlert: [PSWakeAlert alert]];
489 [[NSUserDefaults standardUserDefaults] setObject: [alerts propertyListRepresentation] forKey: PSAlertsSelected];
490 } @catch (NSException *exception) {
491 [self setStatus: [exception reason]];
492 return NO;
493 }
494 return YES;
495}
496
497#pragma mark actions
498
499// to ensure proper updating of interval, this should be the only method by which the window is shown (e.g. from the Alarm menu)
500- (IBAction)showWindow:(id)sender;
501{
502 NSWindow *window = [self window];
503
504 if (![window isVisible]) {
505 NSDate *today = [NSCalendarDate dateForDay: [NSDate date]];
506 if ([(NSDate *)[timeDate objectValue] compare: today] == NSOrderedAscending) {
507 [timeDate setObjectValue: today];
508 }
509 [self update: self];
510 // XXX bug workaround - otherwise, first responder appears to alternate every time the window is shown. And if you set the initial first responder, you can't tab in the window. :(
511 [window makeFirstResponder: [window initialFirstResponder]];
512 }
513
514 [super showWindow: sender];
515}
516
517- (IBAction)setAlarm:(NSButton *)sender;
518{
519 // set alerts before setting alarm...
520 if (![self _setAlerts]) return;
521
522 // set alarm
523 [self setAlarmDateAndInterval: sender];
524 [alarm setRepeating: [timeIntervalRepeats state] == NSOnState];
525 [alarm setMessage: [messageField stringValue]];
526 if (![alarm setTimer]) {
527 [self setStatus: [@"Unable to set alarm. " stringByAppendingString: [alarm invalidMessage]]];
528 return;
529 }
530
531 [self setStatus: [[alarm date] descriptionWithCalendarFormat: @"Alarm set for %x at %X" timeZone: nil locale: nil]];
532 [[self window] close];
533 [alarm release];
534 alarm = [[PSAlarm alloc] init];
535}
536
537- (IBAction)silence:(id)sender;
538{
539 [sound stopSoundPreview: self];
540 [voice stopVoicePreview: self];
541}
542
543- (BOOL)validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)anItem;
544{
545 if ([anItem action] == @selector(toggleAlertEditor:)) {
546 if ([NSApp keyWindow] != [self window])
547 return NO;
548 [(NSMenuItem *)anItem setState: [editAlert intValue] ? NSOnState : NSOffState];
549 }
550 return YES;
551}
552
553@end
554
555@implementation PSAlarmSetController (NSControlSubclassDelegate)
556
557- (BOOL)control:(NSControl *)control didFailToFormatString:(NSString *)string errorDescription:(NSString *)error;
558{
559 if (control == timeInterval)
560 [timeInterval handleDidFailToFormatString: string errorDescription: error label: @"alarm interval"];
561 else if (control == soundRepetitions)
562 [soundRepetitions handleDidFailToFormatString: string errorDescription: error label: @"alert repetitions"];
563 return NO;
564}
565
566- (void)control:(NSControl *)control didFailToValidatePartialString:(NSString *)string errorDescription:(NSString *)error;
567{
568 // NSLog(@"UPDATING FROM validation");
569 if (control == timeInterval) [self update: timeInterval]; // make sure we still examine the field editor, otherwise if the existing numeric string is invalid, it'll be cleared
570}
571
572@end
573
574@implementation PSAlarmSetController (NSWindowNotifications)
575
576- (void)windowWillClose:(NSNotification *)notification;
577{
578 // NSLog(@"stopping update timer");
579 [self silence: nil];
580 [self _stopUpdateTimer];
581 [self _setAlerts];
582}
583
584@end
585
586@implementation PSAlarmSetController (NSControlSubclassNotifications)
587
588// called because we're the delegate
589
590- (void)controlTextDidChange:(NSNotification *)notification;
591{
592 // NSLog(@"UPDATING FROM controlTextDidChange: %@", [notification object]);
593 [self update: [notification object]];
594}
595
596@end
597
598@implementation PSAlarmSetController (NJRVoicePopUpButtonDelegate)
599
600- (NSString *)voicePopUpButton:(NJRVoicePopUpButton *)sender previewStringForVoice:(NSString *)voice;
601{
602 NSString *message = [messageField stringValue];
603 if (message == nil || [message length] == 0)
604 message = [alarm message];
605 return message;
606}
607
608@end
609
610@implementation PSAlarmSetController (NSApplicationNotifications)
611
612- (void)applicationWillTerminate:(NSNotification *)notification;
613{
614 [self _setAlerts];
615}
616
617- (void)applicationWillHide:(NSNotification *)notification;
618{
619 if ([[self window] isVisible]) {
620 [self silence: nil];
621 [self _stopUpdateTimer];
622 }
623}
624
625- (void)applicationDidUnhide:(NSNotification *)notification;
626{
627 if ([[self window] isVisible]) {
628 [self update: self];
629 }
630}
631
632@end
Note: See TracBrowser for help on using the repository browser.