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

Last change on this file since 613 was 613, checked in by Nicholas Riley, 14 years ago

Remove some more unnecessary nextKeyView connections. The key view loop no longer tries to be so intelligent and thus confuses Cocoa less; backwards tabbing should work reliably now. Note that the view/edit toggle is no longer in the key view loop at all: it is keyboard accessible from the Edit menu.

File size: 26.6 KB
RevLine 
[21]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"
[34]10#import "PSAlarmAlertController.h"
[102]11#import "PSCalendarController.h"
[53]12#import "PSPowerManager.h"
[102]13#import "PSTimeDateEditor.h"
[133]14#import "PSVolumeController.h"
[21]15#import "NJRDateFormatter.h"
[34]16#import "NJRFSObjectSelector.h"
[53]17#import "NJRIntervalField.h"
[39]18#import "NJRQTMediaPopUpButton.h"
[133]19#import "NJRSoundManager.h"
[364]20#import "NJRValidatingField.h"
[34]21#import "NJRVoicePopUpButton.h"
[53]22#import "NSString-NJRExtensions.h"
23#import "NSAttributedString-NJRExtensions.h"
24#import "NSCalendarDate-NJRExtensions.h"
[21]25
[53]26#import "PSAlerts.h"
[34]27#import "PSDockBounceAlert.h"
28#import "PSScriptAlert.h"
29#import "PSNotifierAlert.h"
30#import "PSBeepAlert.h"
31#import "PSMovieAlert.h"
32#import "PSSpeechAlert.h"
[61]33#import "PSWakeAlert.h"
[34]34
[28]35/* Bugs to file:
[21]36
[28]37¥ any trailing spaces: -> exception for +[NSCalendarDate dateWithNaturalLanguageString]:
38 > NSCalendarDate dateWithNaturalLanguageString: '12 '
39 format error: internal error
[21]40
[28]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]43¥ descriptionWithCalendarFormat:, dateWithNaturalLanguageString: does not default to current locale, instead it defaults to US unless you tell it otherwise
[28]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.
[43]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.
[28]50¥ descriptions for %X and %x are reversed (time zone is in %X, not %x)
[53]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.
[28]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
[53]58static NSString * const PSAlertsSelected = @"Pester alerts selected"; // NSUserDefaults key
59static NSString * const PSAlertsEditing = @"Pester alerts editing"; // NSUserDefaults key
60
[26]61@interface PSAlarmSetController (Private)
[21]62
[53]63- (void)_readAlerts:(PSAlerts *)alerts;
64- (BOOL)_setAlerts;
[133]65- (void)_setVolume:(float)volume withPreview:(BOOL)preview;
[26]66- (void)_stopUpdateTimer;
67
68@end
69
[21]70@implementation PSAlarmSetController
71
72- (void)awakeFromNib;
73{
[53]74 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[60]75 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
[26]76 alarm = [[PSAlarm alloc] init];
[21]77 [[self window] center];
[361]78 if ([[removeMessageButton image] size].width != 0)
79 [removeMessageButton setTitle: @""];
[102]80 [PSTimeDateEditor setUpTimeField: timeOfDay dateField: timeDate completions: timeDateCompletions];
[133]81 { // volume defaults, usually overridden by restored alert info
[598]82 float volume = 0.5f;
[133]83 [NJRSoundManager getDefaultOutputVolume: &volume];
84 [self _setVolume: volume withPreview: NO];
85 }
[599]86 [editAlert setState: [defaults boolForKey: PSAlertsEditing]];
[53]87 {
88 NSDictionary *plAlerts = [defaults dictionaryForKey: PSAlertsSelected];
[364]89 PSAlerts *alerts = nil;
[53]90 if (plAlerts == nil) {
91 alerts = [[PSAlerts alloc] initWithPesterVersion1Alerts];
92 } else {
[364]93 @try {
[53]94 alerts = [[PSAlerts alloc] initWithPropertyList: plAlerts];
[364]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]);
[53]97 alerts = [[PSAlerts alloc] initWithPesterVersion1Alerts];
[364]98 }
[53]99 }
100 [self _readAlerts: alerts];
101 }
102 [self inAtChanged: nil]; // by convention, if sender is nil, we're initializing
[34]103 [self playSoundChanged: nil];
104 [self doScriptChanged: nil];
105 [self doSpeakChanged: nil];
[53]106 [self editAlertChanged: nil];
[34]107 [script setFileTypes: [NSArray arrayWithObjects: @"applescript", @"script", NSFileTypeForHFSTypeCode(kOSAFileType), NSFileTypeForHFSTypeCode('TEXT'), nil]];
[60]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];
[61]112 [notificationCenter addObserver: self selector: @selector(applicationWillTerminate:) name: NSApplicationWillTerminateNotification object: NSApp];
[53]113 [voice setDelegate: self]; // XXX why don't we do this in IB? It should use the accessor...
114 [wakeUp setEnabled: [PSPowerManager autoWakeSupported]];
[522]115
[53]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.
[522]117 NSWindow *window = [self window];
118 [window setInitialFirstResponder: nil];
119 [window makeKeyAndOrderFront: nil];
[21]120}
121
122- (void)setStatus:(NSString *)aString;
123{
[26]124 // NSLog(@"%@", alarm);
[21]125 if (aString != status) {
126 [status release]; status = nil;
127 status = [aString retain];
128 [timeSummary setStringValue: status];
129 }
130}
131
[53]132// XXX with -[NSControl currentEditor] don't need to compare? Also check -[NSControl validateEditing]
[21]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
[53]147#pragma mark date/interval setting
148
[21]149- (void)setAlarmDateAndInterval:(id)sender;
150{
[26]151 if (isInterval) {
[53]152 [alarm setInterval: [timeInterval interval]];
[21]153 } else {
[24]154 [alarm setForDate: [self objectValueForTextField: timeDate whileEditing: sender]
155 atTime: [self objectValueForTextField: timeOfDay whileEditing: sender]];
[21]156 }
157}
158
[26]159- (void)_stopUpdateTimer;
160{
[28]161 [updateTimer invalidate]; [updateTimer release]; updateTimer = nil;
[26]162}
[21]163
[24]164- (IBAction)updateDateDisplay:(id)sender;
[21]165{
[26]166 // NSLog(@"updateDateDisplay: %@", sender);
[608]167 if (![alarm isValid]) {
168 [setButton setEnabled: NO];
169 [self setStatus: [alarm invalidMessage]];
170 [self _stopUpdateTimer];
171 return;
[21]172 }
[608]173
174 const int day = 60 * 60 * 24;
175 int daysUntilAlarm = [alarm daysFromToday];
176 NSString *onString;
177 switch (daysUntilAlarm) {
178 case 0: onString = @"today,"; break;
179 case 1: onString = @"tomorrow,"; break;
180 default: onString = @"on";
181 }
182
183 [self setStatus: [NSString stringWithFormat: @"Alarm will be set for %@\n%@ %@.", [alarm timeString], onString, [alarm dateString]]];
184 [setButton setEnabled: YES];
185 if (updateTimer == nil || ![updateTimer isValid]) {
186 // 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.
187 // NSLog(@"setting timer");
188 if (isInterval) {
189 updateTimer = [NSTimer scheduledTimerWithTimeInterval: 1 target: self selector: @selector(updateDateDisplay:) userInfo: nil repeats: YES];
190 } else {
191 // XXX time/time zone change
192 NSTimeInterval interval = [alarm interval];
193 if (daysUntilAlarm < 2 && interval > day)
194 interval = [[alarm midnightOnDate] timeIntervalSinceNow];
195 updateTimer = [NSTimer scheduledTimerWithTimeInterval: interval target: self selector: @selector(updateDateDisplay:) userInfo: nil repeats: NO];
196 }
197 [updateTimer retain];
198 }
[21]199}
200
[26]201// 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.
[43]202// Note: finding out whether a given control is editing is easier. See: <http://cocoa.mamasam.com/COCOADEV/2002/03/2/28501.php>.
[26]203
[24]204- (IBAction)update:(id)sender;
205{
206 // NSLog(@"update: %@", sender);
207 [self setAlarmDateAndInterval: sender];
208 [self updateDateDisplay: sender];
209}
210
[21]211- (IBAction)inAtChanged:(id)sender;
212{
[43]213 NSButtonCell *new = [inAtMatrix selectedCell], *old;
[26]214 isInterval = ([inAtMatrix selectedTag] == 0);
[43]215 old = [inAtMatrix cellWithTag: isInterval];
216 NSAssert(new != old, @"in and at buttons should be distinct!");
[364]217
218 if (sender != nil) {
219 // XXX validation doesn't work properly for date/time, so we just universally cancel editing now
220 if (![[self window] makeFirstResponder: nil] && !isInterval) {
221 // 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.
222 NSInvocation *i = [NSInvocation invocationWithMethodSignature:
223 [inAtMatrix methodSignatureForSelector: @selector(selectCellWithTag:)]];
224 int tag = [old tag];
225 [i setSelector: @selector(selectCellWithTag:)];
226 [i setTarget: inAtMatrix];
227 [i setArgument: &tag atIndex: 2];
228 [NSTimer scheduledTimerWithTimeInterval: 0 invocation: i repeats: NO];
229 return;
230 }
231 }
232
[43]233 [old setKeyEquivalent: [new keyEquivalent]];
234 [old setKeyEquivalentModifierMask: [new keyEquivalentModifierMask]];
235 [new setKeyEquivalent: @""];
236 [new setKeyEquivalentModifierMask: 0];
[26]237 [timeInterval setEnabled: isInterval];
238 [timeIntervalUnits setEnabled: isInterval];
[34]239 [timeIntervalRepeats setEnabled: isInterval];
[26]240 [timeOfDay setEnabled: !isInterval];
241 [timeDate setEnabled: !isInterval];
[361]242 [timeDateCompletions setEnabled: !isInterval && [NJRDateFormatter naturalLanguageParsingAvailable]];
[102]243 [timeCalendarButton setEnabled: !isInterval];
[21]244 if (sender != nil)
[364]245 [[self window] makeFirstResponder: isInterval ? (NSTextField *)timeInterval : timeOfDay];
246 if (!isInterval) // need to do this every time the controls are enabled
[102]247 [timeOfDay setNextKeyView: timeDate];
[21]248 // NSLog(@"UPDATING FROM inAtChanged");
249 [self update: nil];
250}
251
[53]252- (IBAction)dateCompleted:(NSPopUpButton *)sender;
253{
254 [timeDate setStringValue: [sender titleOfSelectedItem]];
255 [self update: sender];
256}
257
[102]258#pragma mark calendar
259
260- (IBAction)showCalendar:(NSButton *)sender;
261{
262 [PSCalendarController controllerWithDate: [NSCalendarDate dateForDay: [timeDate objectValue]] delegate: self];
263}
264
265- (void)calendarController:(PSCalendarController *)calendar didSetDate:(NSCalendarDate *)date;
266{
267 [timeDate setObjectValue: date];
268 [self update: self];
269}
270
271- (NSView *)calendarControllerLaunchingView:(PSCalendarController *)controller;
272{
273 return timeCalendarButton;
274}
275
[133]276#pragma mark volume
277
278- (IBAction)showVolume:(NSButton *)sender;
279{
280 [PSVolumeController controllerWithVolume: [sound outputVolume] delegate: self];
281}
282
283#define VOLUME_IMAGE_INDEX(vol) (vol * 4) - 0.01
284
285- (void)_setVolume:(float)volume withPreview:(BOOL)preview;
286{
287 float outputVolume = [sound outputVolume];
288 short volumeImageIndex = VOLUME_IMAGE_INDEX(volume);
289
290 if (outputVolume > 0 && volumeImageIndex == VOLUME_IMAGE_INDEX(outputVolume)) return;
291 NSString *volumeImageName = [NSString stringWithFormat: @"Volume %ld", volumeImageIndex];
292 [soundVolumeButton setImage: [NSImage imageNamed: volumeImageName]];
293
294 [sound setOutputVolume: volume withPreview: preview];
295}
296
297- (void)volumeController:(PSVolumeController *)controller didSetVolume:(float)volume;
298{
299 [self _setVolume: volume withPreview: YES];
300}
301
302- (NSView *)volumeControllerLaunchingView:(PSVolumeController *)controller;
303{
304 return soundVolumeButton;
305}
306
[53]307#pragma mark alert editing
308
[102]309- (IBAction)toggleAlertEditor:(id)sender;
310{
311 [editAlert performClick: self];
312}
313
[53]314- (IBAction)editAlertChanged:(id)sender;
315{
[579]316 BOOL editAlertSelected = [editAlert state] == NSOnState;
[53]317 NSWindow *window = [self window];
318 NSRect frame = [window frame];
319 if (editAlertSelected) {
320 NSSize editWinSize = [window maxSize];
321 frame.origin.y += frame.size.height - editWinSize.height;
322 frame.size = editWinSize;
323 [window setFrame: frame display: (sender != nil) animate: (sender != nil)];
324 [self updateDateDisplay: sender];
325 [alertTabs selectTabViewItemWithIdentifier: @"edit"];
326 } else {
327 NSSize viewWinSize = [window minSize];
328 NSRect textFrame = [alertView frame];
329 float textHeight;
330 if (![self _setAlerts]) {
[103]331 [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]];
[53]332 } else {
333 NSAttributedString *string = [[alarm alerts] prettyList];
334 if (string == nil) {
[103]335 [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")];
[53]336 } else {
337 [alertView setAttributedStringValue: string];
338 [self updateDateDisplay: sender];
339 }
340 }
341 if (sender != nil) { // nil == we're initializing, don't mess with focus
342 NSResponder *oldResponder = [window firstResponder];
343 // make sure focus doesn't get stuck in the edit tab: it is confusing and leaves behind artifacts
[606]344 if (oldResponder == editAlert ||
345 ([oldResponder isKindOfClass: [NSView class]] && [(NSView *)oldResponder isDescendantOf: alertTabs]))
[579]346 [window makeFirstResponder: messageField]; // would use editAlert, but can't get it to display anomaly-free.
[53]347 [self silence: sender];
348 }
349 // allow height to expand, though not arbitrarily (should still fit on an 800x600 screen)
350 textHeight = [[alertView cell] cellSizeForBounds: NSMakeRect(0, 0, textFrame.size.width, 400)].height;
351 textFrame.origin.y += textFrame.size.height - textHeight;
352 textFrame.size.height = textHeight;
353 [alertView setFrame: textFrame];
354 viewWinSize.height += textHeight;
355 [alertTabs selectTabViewItemWithIdentifier: @"view"];
356 frame.origin.y += frame.size.height - viewWinSize.height;
357 frame.size = viewWinSize;
358 [window setFrame: frame display: (sender != nil) animate: (sender != nil)];
359 }
360 if (sender != nil) {
361 [[NSUserDefaults standardUserDefaults] setBool: editAlertSelected forKey: PSAlertsEditing];
362 }
363}
364
[34]365- (IBAction)playSoundChanged:(id)sender;
366{
367 BOOL playSoundSelected = [playSound intValue];
[542]368 BOOL canRepeat = playSoundSelected ? [sound canRepeat] : NO;
[364]369 [sound setEnabled: playSoundSelected];
[41]370 [soundRepetitions setEnabled: canRepeat];
[133]371 [soundVolumeButton setEnabled: canRepeat && [sound hasAudio]];
[41]372 [soundRepetitionStepper setEnabled: canRepeat];
373 [soundRepetitionsLabel setTextColor: canRepeat ? [NSColor controlTextColor] : [NSColor disabledControlTextColor]];
[53]374 if (playSoundSelected && sender == playSound) {
[542]375 [[self window] makeFirstResponder: sound];
[53]376 }
[34]377}
378
[41]379- (IBAction)setSoundRepetitionCount:(id)sender;
380{
[43]381 NSTextView *fieldEditor = (NSTextView *)[soundRepetitions currentEditor];
382 BOOL isEditing = (fieldEditor != nil);
383 int newReps = [sender intValue], oldReps;
384 if (isEditing) {
385 // XXX work around bug where if you ask soundRepetitions for its intValue too often while it's editing, the field begins to flash
386 oldReps = [[[fieldEditor textStorage] string] intValue];
387 } else oldReps = [soundRepetitions intValue];
388 if (newReps != oldReps) {
[41]389 [soundRepetitions setIntValue: newReps];
[43]390 // NSLog(@"updating: new value %d, old value %d%@", newReps, oldReps, isEditing ? @", is editing" : @"");
391 // XXX work around 10.1 bug, otherwise field only displays every second value
392 if (isEditing) [soundRepetitions selectText: self];
393 }
[41]394}
395
[34]396// XXX should check the 'Do script:' button when someone drops a script on the button
397
398- (IBAction)doScriptChanged:(id)sender;
399{
400 BOOL doScriptSelected = [doScript intValue];
401 [script setEnabled: doScriptSelected];
402 [scriptSelectButton setEnabled: doScriptSelected];
[53]403 if (doScriptSelected && sender != nil) {
[34]404 [[self window] makeFirstResponder: scriptSelectButton];
[53]405 if ([script alias] == nil) [scriptSelectButton performClick: sender];
[355]406 } else {
407 [[self window] makeFirstResponder: sender];
[53]408 }
[34]409}
410
411- (IBAction)doSpeakChanged:(id)sender;
412{
[53]413 BOOL doSpeakSelected = [doSpeak state] == NSOnState;
[34]414 [voice setEnabled: doSpeakSelected];
415 if (doSpeakSelected && sender != nil)
416 [[self window] makeFirstResponder: voice];
[355]417 else
418 [[self window] makeFirstResponder: sender];
[34]419}
420
[53]421- (void)_readAlerts:(PSAlerts *)alerts;
[21]422{
[53]423 NSEnumerator *e = [alerts alertEnumerator];
424 PSAlert *alert;
425
426 [alarm setAlerts: alerts];
427
428 // turn off all alerts
429 [bounceDockIcon setState: NSOffState];
430 [doScript setIntValue: NO];
431 [displayMessage setIntValue: NO];
432 [playSound setIntValue: NO];
433 [doSpeak setIntValue: NO];
434
435 while ( (alert = [e nextObject]) != nil) {
436 if ([alert isKindOfClass: [PSDockBounceAlert class]]) {
[522]437 [bounceDockIcon setIntValue: YES]; // temporary for 1.1b8
[53]438 } else if ([alert isKindOfClass: [PSScriptAlert class]]) {
439 [doScript setIntValue: YES];
440 [script setAlias: [(PSScriptAlert *)alert scriptFileAlias]];
441 } else if ([alert isKindOfClass: [PSNotifierAlert class]]) {
442 [displayMessage setIntValue: YES];
[133]443 } else if ([alert isKindOfClass: [PSMediaAlert class]]) {
444 unsigned int repetitions = [(PSMediaAlert *)alert repetitions];
[53]445 [playSound setIntValue: YES];
446 [soundRepetitions setIntValue: repetitions];
447 [soundRepetitionStepper setIntValue: repetitions];
[133]448 [self _setVolume: [(PSMediaAlert *)alert outputVolume] withPreview: NO];
449 if ([alert isKindOfClass: [PSBeepAlert class]]) {
450 [sound setAlias: nil];
451 } else if ([alert isKindOfClass: [PSMovieAlert class]]) {
452 [sound setAlias: [(PSMovieAlert *)alert movieFileAlias]];
453 }
[53]454 } else if ([alert isKindOfClass: [PSSpeechAlert class]]) {
455 [doSpeak setIntValue: YES];
456 [voice setVoice: [(PSSpeechAlert *)alert voice]];
[61]457 } else if ([alert isKindOfClass: [PSWakeAlert class]]) {
458 [wakeUp setIntValue: YES];
[53]459 }
[21]460}
[61]461}
[21]462
[53]463- (BOOL)_setAlerts;
464{
465 PSAlerts *alerts = [alarm alerts];
466
467 [alerts removeAlerts];
[364]468 @try {
[53]469 // dock bounce alert
[522]470 if ([bounceDockIcon intValue]) // temporary for 1.1b8
[53]471 [alerts addAlert: [PSDockBounceAlert alert]];
472 // script alert
473 if ([doScript intValue]) {
474 BDAlias *scriptFileAlias = [script alias];
475 if (scriptFileAlias == nil) {
476 [self setStatus: @"Unable to set script alert (no script specified?)"];
477 return NO;
478 }
479 [alerts addAlert: [PSScriptAlert alertWithScriptFileAlias: scriptFileAlias]];
480 }
481 // notifier alert
482 if ([displayMessage intValue])
483 [alerts addAlert: [PSNotifierAlert alert]];
484 // sound alerts
485 if ([playSound intValue]) {
486 BDAlias *soundAlias = [sound selectedAlias];
487 unsigned short numReps = [soundRepetitions intValue];
[133]488 PSMediaAlert *alert;
[53]489 if (soundAlias == nil) // beep alert
[133]490 alert = [PSBeepAlert alertWithRepetitions: numReps];
[53]491 else // movie alert
[133]492 alert = [PSMovieAlert alertWithMovieFileAlias: soundAlias repetitions: numReps];
493 [alerts addAlert: alert];
494 [alert setOutputVolume: [sound outputVolume]];
[53]495 }
496 // speech alert
497 if ([doSpeak intValue])
[364]498 [alerts addAlert: [PSSpeechAlert alertWithVoice: [[voice selectedItem] representedObject]]];
[61]499 // wake alert
500 if ([wakeUp intValue])
501 [alerts addAlert: [PSWakeAlert alert]];
[53]502 [[NSUserDefaults standardUserDefaults] setObject: [alerts propertyListRepresentation] forKey: PSAlertsSelected];
[364]503 } @catch (NSException *exception) {
504 [self setStatus: [exception reason]];
505 return NO;
506 }
[53]507 return YES;
508}
509
510#pragma mark actions
511
[21]512// to ensure proper updating of interval, this should be the only method by which the window is shown (e.g. from the Alarm menu)
513- (IBAction)showWindow:(id)sender;
514{
[522]515 NSWindow *window = [self window];
516
517 if (![window isVisible]) {
[53]518 NSDate *today = [NSCalendarDate dateForDay: [NSDate date]];
519 if ([(NSDate *)[timeDate objectValue] compare: today] == NSOrderedAscending) {
520 [timeDate setObjectValue: today];
521 }
[21]522 [self update: self];
[53]523 // 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. :(
[522]524 [window makeFirstResponder: [window initialFirstResponder]];
[21]525 }
[522]526
[21]527 [super showWindow: sender];
528}
529
530- (IBAction)setAlarm:(NSButton *)sender;
531{
[45]532 // set alerts before setting alarm...
[53]533 if (![self _setAlerts]) return;
[45]534
535 // set alarm
536 [self setAlarmDateAndInterval: sender];
[53]537 [alarm setRepeating: [timeIntervalRepeats state] == NSOnState];
[45]538 [alarm setMessage: [messageField stringValue]];
539 if (![alarm setTimer]) {
[102]540 [self setStatus: [@"Unable to set alarm. " stringByAppendingString: [alarm invalidMessage]]];
[45]541 return;
542 }
[34]543
[24]544 [self setStatus: [[alarm date] descriptionWithCalendarFormat: @"Alarm set for %x at %X" timeZone: nil locale: nil]];
[21]545 [[self window] close];
[26]546 [alarm release];
547 alarm = [[PSAlarm alloc] init];
[21]548}
549
[34]550- (IBAction)silence:(id)sender;
551{
552 [sound stopSoundPreview: self];
553 [voice stopVoicePreview: self];
554}
555
[102]556- (BOOL)validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)anItem;
557{
558 if ([anItem action] == @selector(toggleAlertEditor:)) {
559 if ([NSApp keyWindow] != [self window])
560 return NO;
561 [(NSMenuItem *)anItem setState: [editAlert intValue] ? NSOnState : NSOffState];
562 }
563 return YES;
564}
565
[26]566@end
567
568@implementation PSAlarmSetController (NSControlSubclassDelegate)
569
[53]570- (BOOL)control:(NSControl *)control didFailToFormatString:(NSString *)string errorDescription:(NSString *)error;
571{
572 if (control == timeInterval)
573 [timeInterval handleDidFailToFormatString: string errorDescription: error label: @"alarm interval"];
[364]574 else if (control == soundRepetitions)
575 [soundRepetitions handleDidFailToFormatString: string errorDescription: error label: @"alert repetitions"];
[53]576 return NO;
577}
578
[26]579- (void)control:(NSControl *)control didFailToValidatePartialString:(NSString *)string errorDescription:(NSString *)error;
580{
581 // NSLog(@"UPDATING FROM validation");
[53]582 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
[26]583}
584
585@end
586
587@implementation PSAlarmSetController (NSWindowNotifications)
588
589- (void)windowWillClose:(NSNotification *)notification;
590{
591 // NSLog(@"stopping update timer");
[34]592 [self silence: nil];
[26]593 [self _stopUpdateTimer];
[53]594 [self _setAlerts];
[26]595}
596
597@end
598
599@implementation PSAlarmSetController (NSControlSubclassNotifications)
600
[21]601// called because we're the delegate
602
[588]603- (void)controlTextDidEndEditing:(NSNotification *)notification;
604{
605 if ([notification object] != timeOfDay)
606 return;
607
608 // if date is today and we've picked a time before now, set the date for tomorrow
609 NSDate *dateTime = [NSCalendarDate dateWithDate: [timeDate objectValue] atTime: [timeOfDay objectValue]];
610 if (dateTime == nil)
611 return;
612
613 NSDate *now = [NSDate date];
614 NSCalendarDate *today = [NSCalendarDate dateForDay: now];
615 NSCalendarDate *date = [NSCalendarDate dateForDay: [timeDate objectValue]];
616 if (![date isEqualToDate: today] || [dateTime compare: now] != NSOrderedAscending)
617 return;
618
619 [timeDate setObjectValue: [today dateByAddingYears: 0 months: 0 days: 1 hours: 0 minutes: 0 seconds: 0]];
620 [self update: timeOfDay];
621}
622
[21]623- (void)controlTextDidChange:(NSNotification *)notification;
624{
[43]625 // NSLog(@"UPDATING FROM controlTextDidChange: %@", [notification object]);
[21]626 [self update: [notification object]];
627}
628
[34]629@end
630
631@implementation PSAlarmSetController (NJRVoicePopUpButtonDelegate)
632
633- (NSString *)voicePopUpButton:(NJRVoicePopUpButton *)sender previewStringForVoice:(NSString *)voice;
634{
[53]635 NSString *message = [messageField stringValue];
636 if (message == nil || [message length] == 0)
637 message = [alarm message];
638 return message;
[34]639}
640
[60]641@end
642
643@implementation PSAlarmSetController (NSApplicationNotifications)
644
[61]645- (void)applicationWillTerminate:(NSNotification *)notification;
646{
647 [self _setAlerts];
648}
649
[60]650- (void)applicationWillHide:(NSNotification *)notification;
651{
652 if ([[self window] isVisible]) {
653 [self silence: nil];
654 [self _stopUpdateTimer];
655 }
656}
657
658- (void)applicationDidUnhide:(NSNotification *)notification;
659{
660 if ([[self window] isVisible]) {
661 [self update: self];
662 }
663}
664
[522]665@end
Note: See TracBrowser for help on using the repository browser.