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

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

Replace use of private/deprecated NSDisclosureButtonCell; a public alternative has been available since 10.3. (Oops.)

Also remove incorrect NSMovieView superclass in nib because 10.6 IB refuses to open the nib with it present.

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