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

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

Display "today" or "tomorrow" when setting an alarm.

File size: 26.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.5f;
83 [NJRSoundManager getDefaultOutputVolume: &volume];
84 [self _setVolume: volume withPreview: NO];
85 }
86 [editAlert setState: [defaults boolForKey: PSAlertsEditing]];
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 [setButton setEnabled: NO];
169 [self setStatus: [alarm invalidMessage]];
170 [self _stopUpdateTimer];
171 return;
172 }
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 }
199}
200
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.
202// Note: finding out whether a given control is editing is easier. See: <http://cocoa.mamasam.com/COCOADEV/2002/03/2/28501.php>.
203
204- (IBAction)update:(id)sender;
205{
206 // NSLog(@"update: %@", sender);
207 [self setAlarmDateAndInterval: sender];
208 [self updateDateDisplay: sender];
209}
210
211- (IBAction)inAtChanged:(id)sender;
212{
213 NSButtonCell *new = [inAtMatrix selectedCell], *old;
214 isInterval = ([inAtMatrix selectedTag] == 0);
215 old = [inAtMatrix cellWithTag: isInterval];
216 NSAssert(new != old, @"in and at buttons should be distinct!");
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
233 [old setKeyEquivalent: [new keyEquivalent]];
234 [old setKeyEquivalentModifierMask: [new keyEquivalentModifierMask]];
235 [new setKeyEquivalent: @""];
236 [new setKeyEquivalentModifierMask: 0];
237 [timeInterval setEnabled: isInterval];
238 [timeIntervalUnits setEnabled: isInterval];
239 [timeIntervalRepeats setEnabled: isInterval];
240 [timeOfDay setEnabled: !isInterval];
241 [timeDate setEnabled: !isInterval];
242 [timeDateCompletions setEnabled: !isInterval && [NJRDateFormatter naturalLanguageParsingAvailable]];
243 [timeCalendarButton setEnabled: !isInterval];
244 if (sender != nil)
245 [[self window] makeFirstResponder: isInterval ? (NSTextField *)timeInterval : timeOfDay];
246 if (!isInterval) // need to do this every time the controls are enabled
247 [timeOfDay setNextKeyView: timeDate];
248 // NSLog(@"UPDATING FROM inAtChanged");
249 [self update: nil];
250}
251
252- (IBAction)dateCompleted:(NSPopUpButton *)sender;
253{
254 [timeDate setStringValue: [sender titleOfSelectedItem]];
255 [self update: sender];
256}
257
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
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
307#pragma mark alert editing
308
309- (IBAction)toggleAlertEditor:(id)sender;
310{
311 [editAlert performClick: self];
312}
313
314- (IBAction)editAlertChanged:(id)sender;
315{
316 BOOL editAlertSelected = [editAlert state] == NSOnState;
317 NSWindow *window = [self window];
318 NSRect frame = [window frame];
319 if (editAlertSelected) {
320 NSSize editWinSize = [window maxSize];
321 [editAlert setNextKeyView: [displayMessage controlView]];
322 frame.origin.y += frame.size.height - editWinSize.height;
323 frame.size = editWinSize;
324 [window setFrame: frame display: (sender != nil) animate: (sender != nil)];
325 [self updateDateDisplay: sender];
326 [alertTabs selectTabViewItemWithIdentifier: @"edit"];
327 } else {
328 NSSize viewWinSize = [window minSize];
329 NSRect textFrame = [alertView frame];
330 float textHeight;
331 if (![self _setAlerts]) {
332 [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]];
333 } else {
334 NSAttributedString *string = [[alarm alerts] prettyList];
335 if (string == nil) {
336 [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")];
337 } else {
338 [alertView setAttributedStringValue: string];
339 [self updateDateDisplay: sender];
340 }
341 }
342 if (sender != nil) { // nil == we're initializing, don't mess with focus
343 NSResponder *oldResponder = [window firstResponder];
344 // make sure focus doesn't get stuck in the edit tab: it is confusing and leaves behind artifacts
345 if (oldResponder == editAlert ||
346 ([oldResponder isKindOfClass: [NSView class]] && [(NSView *)oldResponder isDescendantOf: alertTabs]))
347 [window makeFirstResponder: messageField]; // would use editAlert, but can't get it to display anomaly-free.
348 [self silence: sender];
349 }
350 // allow height to expand, though not arbitrarily (should still fit on an 800x600 screen)
351 textHeight = [[alertView cell] cellSizeForBounds: NSMakeRect(0, 0, textFrame.size.width, 400)].height;
352 textFrame.origin.y += textFrame.size.height - textHeight;
353 textFrame.size.height = textHeight;
354 [alertView setFrame: textFrame];
355 viewWinSize.height += textHeight;
356 [alertTabs selectTabViewItemWithIdentifier: @"view"];
357 frame.origin.y += frame.size.height - viewWinSize.height;
358 frame.size = viewWinSize;
359 [window setFrame: frame display: (sender != nil) animate: (sender != nil)];
360 [editAlert setNextKeyView: cancelButton];
361 }
362 if (sender != nil) {
363 [[NSUserDefaults standardUserDefaults] setBool: editAlertSelected forKey: PSAlertsEditing];
364 }
365}
366
367- (IBAction)playSoundChanged:(id)sender;
368{
369 BOOL playSoundSelected = [playSound intValue];
370 BOOL canRepeat = playSoundSelected ? [sound canRepeat] : NO;
371 [sound setEnabled: playSoundSelected];
372 [soundRepetitions setEnabled: canRepeat];
373 [soundVolumeButton setEnabled: canRepeat && [sound hasAudio]];
374 [soundRepetitionStepper setEnabled: canRepeat];
375 [soundRepetitionsLabel setTextColor: canRepeat ? [NSColor controlTextColor] : [NSColor disabledControlTextColor]];
376 if (playSoundSelected && sender == playSound) {
377 [[self window] makeFirstResponder: sound];
378 }
379}
380
381- (IBAction)setSoundRepetitionCount:(id)sender;
382{
383 NSTextView *fieldEditor = (NSTextView *)[soundRepetitions currentEditor];
384 BOOL isEditing = (fieldEditor != nil);
385 int newReps = [sender intValue], oldReps;
386 if (isEditing) {
387 // XXX work around bug where if you ask soundRepetitions for its intValue too often while it's editing, the field begins to flash
388 oldReps = [[[fieldEditor textStorage] string] intValue];
389 } else oldReps = [soundRepetitions intValue];
390 if (newReps != oldReps) {
391 [soundRepetitions setIntValue: newReps];
392 // NSLog(@"updating: new value %d, old value %d%@", newReps, oldReps, isEditing ? @", is editing" : @"");
393 // XXX work around 10.1 bug, otherwise field only displays every second value
394 if (isEditing) [soundRepetitions selectText: self];
395 }
396}
397
398// XXX should check the 'Do script:' button when someone drops a script on the button
399
400- (IBAction)doScriptChanged:(id)sender;
401{
402 BOOL doScriptSelected = [doScript intValue];
403 [script setEnabled: doScriptSelected];
404 [scriptSelectButton setEnabled: doScriptSelected];
405 if (doScriptSelected && sender != nil) {
406 [[self window] makeFirstResponder: scriptSelectButton];
407 if ([script alias] == nil) [scriptSelectButton performClick: sender];
408 } else {
409 [[self window] makeFirstResponder: sender];
410 }
411}
412
413- (IBAction)doSpeakChanged:(id)sender;
414{
415 BOOL doSpeakSelected = [doSpeak state] == NSOnState;
416 [voice setEnabled: doSpeakSelected];
417 if (doSpeakSelected && sender != nil)
418 [[self window] makeFirstResponder: voice];
419 else
420 [[self window] makeFirstResponder: sender];
421}
422
423- (void)_readAlerts:(PSAlerts *)alerts;
424{
425 NSEnumerator *e = [alerts alertEnumerator];
426 PSAlert *alert;
427
428 [alarm setAlerts: alerts];
429
430 // turn off all alerts
431 [bounceDockIcon setState: NSOffState];
432 [doScript setIntValue: NO];
433 [displayMessage setIntValue: NO];
434 [playSound setIntValue: NO];
435 [doSpeak setIntValue: NO];
436
437 while ( (alert = [e nextObject]) != nil) {
438 if ([alert isKindOfClass: [PSDockBounceAlert class]]) {
439 [bounceDockIcon setIntValue: YES]; // temporary for 1.1b8
440 } else if ([alert isKindOfClass: [PSScriptAlert class]]) {
441 [doScript setIntValue: YES];
442 [script setAlias: [(PSScriptAlert *)alert scriptFileAlias]];
443 } else if ([alert isKindOfClass: [PSNotifierAlert class]]) {
444 [displayMessage setIntValue: YES];
445 } else if ([alert isKindOfClass: [PSMediaAlert class]]) {
446 unsigned int repetitions = [(PSMediaAlert *)alert repetitions];
447 [playSound setIntValue: YES];
448 [soundRepetitions setIntValue: repetitions];
449 [soundRepetitionStepper setIntValue: repetitions];
450 [self _setVolume: [(PSMediaAlert *)alert outputVolume] withPreview: NO];
451 if ([alert isKindOfClass: [PSBeepAlert class]]) {
452 [sound setAlias: nil];
453 } else if ([alert isKindOfClass: [PSMovieAlert class]]) {
454 [sound setAlias: [(PSMovieAlert *)alert movieFileAlias]];
455 }
456 } else if ([alert isKindOfClass: [PSSpeechAlert class]]) {
457 [doSpeak setIntValue: YES];
458 [voice setVoice: [(PSSpeechAlert *)alert voice]];
459 } else if ([alert isKindOfClass: [PSWakeAlert class]]) {
460 [wakeUp setIntValue: YES];
461 }
462}
463}
464
465- (BOOL)_setAlerts;
466{
467 PSAlerts *alerts = [alarm alerts];
468
469 [alerts removeAlerts];
470 @try {
471 // dock bounce alert
472 if ([bounceDockIcon intValue]) // temporary for 1.1b8
473 [alerts addAlert: [PSDockBounceAlert alert]];
474 // script alert
475 if ([doScript intValue]) {
476 BDAlias *scriptFileAlias = [script alias];
477 if (scriptFileAlias == nil) {
478 [self setStatus: @"Unable to set script alert (no script specified?)"];
479 return NO;
480 }
481 [alerts addAlert: [PSScriptAlert alertWithScriptFileAlias: scriptFileAlias]];
482 }
483 // notifier alert
484 if ([displayMessage intValue])
485 [alerts addAlert: [PSNotifierAlert alert]];
486 // sound alerts
487 if ([playSound intValue]) {
488 BDAlias *soundAlias = [sound selectedAlias];
489 unsigned short numReps = [soundRepetitions intValue];
490 PSMediaAlert *alert;
491 if (soundAlias == nil) // beep alert
492 alert = [PSBeepAlert alertWithRepetitions: numReps];
493 else // movie alert
494 alert = [PSMovieAlert alertWithMovieFileAlias: soundAlias repetitions: numReps];
495 [alerts addAlert: alert];
496 [alert setOutputVolume: [sound outputVolume]];
497 }
498 // speech alert
499 if ([doSpeak intValue])
500 [alerts addAlert: [PSSpeechAlert alertWithVoice: [[voice selectedItem] representedObject]]];
501 // wake alert
502 if ([wakeUp intValue])
503 [alerts addAlert: [PSWakeAlert alert]];
504 [[NSUserDefaults standardUserDefaults] setObject: [alerts propertyListRepresentation] forKey: PSAlertsSelected];
505 } @catch (NSException *exception) {
506 [self setStatus: [exception reason]];
507 return NO;
508 }
509 return YES;
510}
511
512#pragma mark actions
513
514// to ensure proper updating of interval, this should be the only method by which the window is shown (e.g. from the Alarm menu)
515- (IBAction)showWindow:(id)sender;
516{
517 NSWindow *window = [self window];
518
519 if (![window isVisible]) {
520 NSDate *today = [NSCalendarDate dateForDay: [NSDate date]];
521 if ([(NSDate *)[timeDate objectValue] compare: today] == NSOrderedAscending) {
522 [timeDate setObjectValue: today];
523 }
524 [self update: self];
525 // 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. :(
526 [window makeFirstResponder: [window initialFirstResponder]];
527 }
528
529 [super showWindow: sender];
530}
531
532- (IBAction)setAlarm:(NSButton *)sender;
533{
534 // set alerts before setting alarm...
535 if (![self _setAlerts]) return;
536
537 // set alarm
538 [self setAlarmDateAndInterval: sender];
539 [alarm setRepeating: [timeIntervalRepeats state] == NSOnState];
540 [alarm setMessage: [messageField stringValue]];
541 if (![alarm setTimer]) {
542 [self setStatus: [@"Unable to set alarm. " stringByAppendingString: [alarm invalidMessage]]];
543 return;
544 }
545
546 [self setStatus: [[alarm date] descriptionWithCalendarFormat: @"Alarm set for %x at %X" timeZone: nil locale: nil]];
547 [[self window] close];
548 [alarm release];
549 alarm = [[PSAlarm alloc] init];
550}
551
552- (IBAction)silence:(id)sender;
553{
554 [sound stopSoundPreview: self];
555 [voice stopVoicePreview: self];
556}
557
558- (BOOL)validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)anItem;
559{
560 if ([anItem action] == @selector(toggleAlertEditor:)) {
561 if ([NSApp keyWindow] != [self window])
562 return NO;
563 [(NSMenuItem *)anItem setState: [editAlert intValue] ? NSOnState : NSOffState];
564 }
565 return YES;
566}
567
568@end
569
570@implementation PSAlarmSetController (NSControlSubclassDelegate)
571
572- (BOOL)control:(NSControl *)control didFailToFormatString:(NSString *)string errorDescription:(NSString *)error;
573{
574 if (control == timeInterval)
575 [timeInterval handleDidFailToFormatString: string errorDescription: error label: @"alarm interval"];
576 else if (control == soundRepetitions)
577 [soundRepetitions handleDidFailToFormatString: string errorDescription: error label: @"alert repetitions"];
578 return NO;
579}
580
581- (void)control:(NSControl *)control didFailToValidatePartialString:(NSString *)string errorDescription:(NSString *)error;
582{
583 // NSLog(@"UPDATING FROM validation");
584 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
585}
586
587@end
588
589@implementation PSAlarmSetController (NSWindowNotifications)
590
591- (void)windowWillClose:(NSNotification *)notification;
592{
593 // NSLog(@"stopping update timer");
594 [self silence: nil];
595 [self _stopUpdateTimer];
596 [self _setAlerts];
597}
598
599@end
600
601@implementation PSAlarmSetController (NSControlSubclassNotifications)
602
603// called because we're the delegate
604
605- (void)controlTextDidEndEditing:(NSNotification *)notification;
606{
607 if ([notification object] != timeOfDay)
608 return;
609
610 // if date is today and we've picked a time before now, set the date for tomorrow
611 NSDate *dateTime = [NSCalendarDate dateWithDate: [timeDate objectValue] atTime: [timeOfDay objectValue]];
612 if (dateTime == nil)
613 return;
614
615 NSDate *now = [NSDate date];
616 NSCalendarDate *today = [NSCalendarDate dateForDay: now];
617 NSCalendarDate *date = [NSCalendarDate dateForDay: [timeDate objectValue]];
618 if (![date isEqualToDate: today] || [dateTime compare: now] != NSOrderedAscending)
619 return;
620
621 [timeDate setObjectValue: [today dateByAddingYears: 0 months: 0 days: 1 hours: 0 minutes: 0 seconds: 0]];
622 [self update: timeOfDay];
623}
624
625- (void)controlTextDidChange:(NSNotification *)notification;
626{
627 // NSLog(@"UPDATING FROM controlTextDidChange: %@", [notification object]);
628 [self update: [notification object]];
629}
630
631@end
632
633@implementation PSAlarmSetController (NJRVoicePopUpButtonDelegate)
634
635- (NSString *)voicePopUpButton:(NJRVoicePopUpButton *)sender previewStringForVoice:(NSString *)voice;
636{
637 NSString *message = [messageField stringValue];
638 if (message == nil || [message length] == 0)
639 message = [alarm message];
640 return message;
641}
642
643@end
644
645@implementation PSAlarmSetController (NSApplicationNotifications)
646
647- (void)applicationWillTerminate:(NSNotification *)notification;
648{
649 [self _setAlerts];
650}
651
652- (void)applicationWillHide:(NSNotification *)notification;
653{
654 if ([[self window] isVisible]) {
655 [self silence: nil];
656 [self _stopUpdateTimer];
657 }
658}
659
660- (void)applicationDidUnhide:(NSNotification *)notification;
661{
662 if ([[self window] isVisible]) {
663 [self update: self];
664 }
665}
666
667@end
Note: See TracBrowser for help on using the repository browser.