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

Last change on this file since 133 was 133, checked in by Nicholas Riley, 21 years ago

VERSION: Updated for 1.1b4.

PSMovieAlertController.[hm]: Set output volume from alert; save and
restore output volume (bug 27).

PSBeepAlert.[hm]: Save and set volume, disabled pending a
synchronous equivalent to NSBeep().

NJRQTMediaPopUpButton.[hm]: Save movieHasAudio (does not include
beeps, pending the above fix, since they don't permit volume
adjustment). savedVolume indicates whether the volume has been saved
but not restored yet; outputVolume stores the set volume (eventually
incorporated into a PSMediaAlert).

PSMediaAlert.[hm]: Stores repetitions and volume information for audio
alerts. New superclass of PSBeepAlert and PSMovieAlert.

PSPreferencesController.m: Fixed bug where hot keys still appeared
even after they couldn't be set - last of bug 29. Add Command-comma
to the list of disallowed equivalents, as it's reserved for
Preferences now (still a bug - it'll show the entire set key
equivalent at the left side of the window when you press
command-comma; ah well.)

Volume [0123].png: Volume-indicating small icons from QuickTime 6.

NJRSoundManager.[hm]: Interface to volume saving, restoring, setting -
necessary because the QuickTime call to SetDefaultOutputVolume sets
the right channel volume only (bug 27).

PSVolumeController.h: Controller for volume popup window (bug 27).
Not your average NSWindowController, but it works. Keyboard control
of volume is still necessary; filed as bug 31.

PSAlarmSetController.[hm]: Added references to sound volume button and
showVolume: action. Added volume setting support (bug 27); mostly
similar interface to calendar, though we need direct calls to
NJRSoundManager to restore sound volume at times. Only enable sound
volume button if selected media file has audio component (and isn't the
system alert sound, which I discussed above). Take advantage of
PSMediaAlert to factor some code in _readAlerts:. Save and restore
volume as part of alerts.

Read Me.rtfd: Updated release notes; fixed some bizarre text
formatting problems; search/replace "* " bullet-space with "*\t"
bullet-tab to improve alignment in release notes.

PSMovieAlert.[hm]: Factored code into PSMediaAlert. Describe output
volume as percentage of maximum.

NJRHotKey.m: Fixed some odd spacing left over from Ecky's code.

PSApplication.m: Restore saved output volume on quit.

English.lproj/MainMenu.nib: Added volume button.

English.lproj/Volume.nib: Volume nib (bug 27).

PSCalendarController.m: Removed casts from a copy/paste error. Fixed
variable names in some code inherited from my TextExtras incremental
search modifications - it's not always a text field now.

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